:root {
  --ink: #10201b;
  --muted: #5d6d66;
  --green: #07956b;
  --green-dark: #04724f;
  --mint: #eff7f3;
  --cream: #fffaf2;
  --blue: #dcecff;
  --coral: #f6c9b8;
  --line: rgba(16, 32, 27, 0.14);
  --shadow: 0 24px 80px rgba(16, 32, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mint);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 24px clamp(20px, 5vw, 72px) 56px;
  background:
    linear-gradient(115deg, rgba(239, 247, 243, 0.94), rgba(255, 250, 242, 0.72)),
    radial-gradient(circle at 82% 18%, rgba(246, 201, 184, 0.76), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(220, 236, 255, 0.82), transparent 32%),
    var(--mint);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(239, 247, 243, 0.92));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media img {
  position: absolute;
  right: clamp(-80px, -2vw, -16px);
  top: 50%;
  width: min(46vw, 540px);
  min-width: 280px;
  transform: translateY(-47%) rotate(-7deg);
  filter: drop-shadow(0 34px 70px rgba(4, 114, 79, 0.2));
  opacity: 0.94;
}

.nav {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(4, 114, 79, 0.16);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions a,
.language-switch button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
}

.language-switch button {
  min-width: 44px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: #fff;
  background: var(--green);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding-top: 82px;
}

.eyebrow,
.section-kicker,
.platform {
  margin: 0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 12px 0 0;
  font-size: clamp(64px, 13vw, 156px);
  line-height: 0.88;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 3vw, 28px);
  line-height: 1.26;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.store-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 0 22px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(16, 32, 27, 0.18);
}

.store-button.google-link {
  background: var(--green);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.scroll-cue span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
  transform: translateY(-2px) rotate(45deg);
}

.intro,
.download {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--mint);
}

.intro h2,
.download h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.feature-row article,
.qr-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(16, 32, 27, 0.08);
}

.feature-row article {
  padding: 22px;
}

.feature-row span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.feature-row h3,
.qr-card h3 {
  margin: 12px 0 0;
  font-size: 21px;
}

.feature-row p,
.download-heading p {
  color: var(--muted);
  line-height: 1.55;
}

.download {
  background: linear-gradient(180deg, var(--cream), #ffffff);
}

.download-heading {
  max-width: 760px;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.qr-card {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
}

.qr-code {
  width: 184px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(16, 32, 27, 0.1);
}

.qr-code img {
  width: 152px;
  height: 152px;
  display: block;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

footer a {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    min-height: 88svh;
  }

  .hero-media img {
    right: -96px;
    top: 63%;
    width: 420px;
    opacity: 0.36;
  }

  .intro,
  .feature-row,
  .qr-grid {
    grid-template-columns: 1fr;
  }

  .qr-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .qr-code {
    width: 150px;
  }

  .qr-code img {
    width: 124px;
    height: 124px;
  }
}

@media (max-width: 560px) {
  .nav {
    align-items: flex-start;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy {
    padding-top: 112px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }

  .qr-card {
    grid-template-columns: 1fr;
  }

  .qr-code {
    width: min(100%, 220px);
  }

  .qr-code img {
    width: 176px;
    height: 176px;
  }

  footer {
    flex-direction: column;
  }
}
