@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap");

:root {
  --ink: #17171c;
  --muted: #4d4a58;
  --paper: #ffffff;
  --wash: #f3f3f3;
  --panel: rgba(39, 39, 43, 0.72);
  --line: rgba(255, 255, 255, 0.18);
  --purple: #4c275f;
  --violet: #5b66b4;
  --teal: #1e7e8b;
  --coral: #f06f5f;
  --shadow: 0 20px 50px rgba(18, 19, 28, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Raleway, Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.48;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 122px;
  background: rgba(27, 29, 40, 0.78);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  width: min(960px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 129px;
  text-decoration: none;
}

.brand img {
  width: 129px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 0;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: #d9dff8;
}

.hero {
  position: relative;
  min-height: 766px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(20, 24, 35, 0.08), rgba(20, 24, 35, 0.1)),
    url("generated-hero-lake.png");
  background-position: center center;
  background-size: cover;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 525px) minmax(232px, 262px);
  grid-template-rows: auto auto;
  grid-template-areas:
    "copy phone"
    "actions phone";
  column-gap: 68px;
  row-gap: 26px;
  align-items: start;
  width: min(896px, calc(100% - 40px));
  margin: 0 auto;
  padding: 167px 0 64px;
}

.hero-copy-panel {
  grid-area: copy;
  min-width: 0;
  height: 337px;
  padding: 28px 62px;
  border: 2px solid rgba(20, 24, 35, 0.18);
  border-radius: 26px;
  color: #ffffff;
  background: var(--panel);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.hero-copy-panel h1 {
  margin: 0 0 4px;
  font-size: 2.28rem;
  font-weight: 400;
  line-height: 1.2;
}

.hero-copy-panel p {
  margin: 0 0 34px;
  font-size: 1.14rem;
  font-weight: 400;
}

.hero-copy-panel p:last-child {
  margin-bottom: 0;
}

.phone-stage {
  grid-area: phone;
  min-width: 0;
  justify-self: center;
}

.phone-stage img {
  width: 262px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.26));
}

.hero-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  min-width: 0;
  width: 390px;
  margin-left: 84px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}

.store-badge img {
  height: 56px;
  width: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.web-hero {
  width: 262px;
  color: #ffffff;
  background: #050507;
  border-color: #7b3fd4;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  font-size: 1.38rem;
}

.button.dark {
  color: #ffffff;
  background: #050507;
  border-color: #050507;
}

.section {
  padding: 104px 0 94px;
  background: var(--wash);
}

.section-inner {
  width: min(930px, calc(100% - 40px));
  margin: 0 auto;
}

.feature-layout {
  width: min(740px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  grid-template-areas:
    "map copy"
    "post copy";
  gap: 68px;
  align-items: start;
}

.feature-illustration {
  grid-area: map;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.feature-illustration img {
  width: 172px;
}

.feature-illustration-secondary {
  grid-area: post;
  padding-top: 86px;
}

.feature-illustration-secondary img {
  width: 286px;
}

.feature-copy {
  grid-area: copy;
  min-width: 0;
}

.feature-copy h2,
.download-copy h2 {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 3.1rem;
  font-weight: 300;
  line-height: 1.1;
}

.feature-copy .version {
  margin: 0 0 52px;
  color: var(--purple);
  font-size: 1.65rem;
}

.feature-copy ul {
  margin: 0;
  padding-left: 32px;
  font-size: 1rem;
}

.feature-copy li {
  margin-bottom: 10px;
}

.download-band {
  padding: 108px 0 64px;
  color: #ffffff;
  background: var(--violet);
  text-align: center;
}

.download-copy p {
  max-width: 560px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.download-band .download-copy h2 {
  color: #ffffff;
  font-size: 2.55rem;
  font-weight: 400;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 12px;
}

.badge-row a {
  display: inline-flex;
}

.badge-row img {
  height: 56px;
  width: auto;
}

.site-footer {
  color: #ffffff;
  background: var(--violet);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  width: min(930px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 72px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.nav-links a,
.hero-copy-panel h1,
.hero-copy-panel p,
.feature-copy li,
.button,
.footer-links a {
  overflow-wrap: anywhere;
}

.feedback-page,
.not-found {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  background-image:
    linear-gradient(rgba(20, 24, 35, 0.36), rgba(20, 24, 35, 0.42)),
    url("generated-hero-lake.png");
  background-position: center center;
  background-size: cover;
  text-align: center;
}

.feedback-card,
.not-found {
  color: #ffffff;
}

.feedback-card {
  width: min(680px, 100%);
  padding: 38px;
  border: 2px solid rgba(20, 24, 35, 0.18);
  border-radius: 26px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.brand-link {
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
}

.feedback-card img,
.not-found img {
  width: 164px;
}

.feedback-card h1,
.not-found h1 {
  margin: 0 0 14px;
  font-size: 3.9rem;
  font-weight: 400;
  line-height: 1;
}

.feedback-card p,
.not-found p {
  max-width: 540px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.center {
  justify-content: center;
}

.button.primary {
  color: #ffffff;
  background: #050507;
  border-color: #050507;
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 920px) {
  .site-header {
    height: auto;
  }

  .nav {
    min-height: 94px;
    padding: 12px 0;
  }

  .nav-links {
    gap: 18px;
    font-size: 1rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "phone"
      "actions";
    justify-items: center;
    padding: 132px 0 56px;
  }

  .hero-copy-panel {
    width: min(525px, 100%);
    padding: 28px 34px;
  }

  .phone-stage img {
    width: 232px;
  }

  .hero-actions {
    width: min(390px, 100%);
    margin-left: 0;
  }

  .feature-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "map"
      "copy"
      "post";
    gap: 34px;
  }

  .feature-illustration {
    justify-content: flex-start;
  }

  .feature-illustration-secondary {
    padding-top: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .nav,
  .hero-inner,
  .section-inner,
  .feature-layout,
  .footer-inner {
    width: calc(100vw - 40px);
    max-width: 350px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .brand,
  .brand img {
    width: 108px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 214px;
  }

  .hero-copy-panel {
    width: 100%;
    max-width: 100%;
    min-height: 337px;
    height: auto;
    padding: 24px;
    border-radius: 18px;
  }

  .hero-copy-panel h1 {
    font-size: 2rem;
  }

  .hero-copy-panel p {
    margin-bottom: 22px;
    font-size: 1.05rem;
  }

  .hero-actions,
  .feature-copy,
  .download-copy,
  .badge-row,
  .footer-inner {
    width: 100%;
    max-width: 100%;
  }

  .footer-inner {
    align-items: center;
  }

  .store-badge,
  .store-badge img,
  .badge-row img {
    height: 48px;
  }

  .button.web-hero,
  .button.dark,
  .button.primary,
  .button.secondary {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .feature-copy h2,
  .download-copy h2 {
    font-size: 2.4rem;
  }

  .feature-copy .version {
    margin-bottom: 34px;
    font-size: 1.35rem;
  }

  .feature-copy ul {
    padding-left: 24px;
    font-size: 1rem;
  }

  .feedback-card {
    padding: 26px;
    border-radius: 18px;
  }

  .feedback-card h1,
  .not-found h1 {
    font-size: 2.7rem;
  }
}
