:root {
  --cream: #fbf5e7;
  --cream-deep: #f2e6cc;
  --paper: #fffdf7;
  --ink: #32271d;
  --muted: #6d665d;
  --green: #4f7d3d;
  --green-dark: #335a29;
  --green-soft: #dcebcf;
  --brown: #754826;
  --amber: #f4c35a;
  --line: rgba(76, 63, 49, 0.15);
  --shadow: 0 24px 70px rgba(71, 54, 37, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--cream);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(244, 195, 90, 0.16), transparent 25rem),
    var(--cream);
  font-family: Inter, ui-rounded, "SF Pro Rounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

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

a {
  color: inherit;
}

button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  z-index: 20;
  position: relative;
  width: min(1120px, calc(100% - 32px));
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--brown);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(73, 57, 38, 0.12);
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-picker {
  position: relative;
  flex: 0 0 auto;
}

.language-picker::after {
  content: "⌄";
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-56%);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 900;
}

.language-picker select {
  min-width: 70px;
  min-height: 44px;
  appearance: none;
  padding: 0 28px 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.8);
  color: var(--green-dark);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.language-picker select:focus-visible,
a:focus-visible,
.preview-track:focus-visible {
  outline: 3px solid rgba(79, 125, 61, 0.34);
  outline-offset: 3px;
}

.hero {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
  margin: 0 auto;
  padding: 44px 0 80px;
}

.hero::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 20px;
  right: -13%;
  width: min(58vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(199, 222, 180, 0.6);
  filter: blur(1px);
}

.hero-copy {
  z-index: 2;
  position: relative;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(79, 125, 61, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.7);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 6.3vw, 5.45rem);
  line-height: 0.95;
}

h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-text {
  max-width: 56ch;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.8vw, 1.18rem);
  line-height: 1.6;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 540px;
}

.store-button {
  min-height: 68px;
  display: grid;
  grid-template-columns: 38px 1fr 12px;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 2px solid var(--green-dark);
  border-radius: 18px;
  background: var(--green-dark);
  color: #fff;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(51, 90, 41, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-2px);
  background: #294c21;
  box-shadow: 0 18px 38px rgba(51, 90, 41, 0.26);
}

.store-button small,
.store-button strong {
  display: block;
}

.store-button small {
  margin-bottom: 1px;
  font-size: 0.68rem;
  line-height: 1.1;
  opacity: 0.78;
}

.store-button strong {
  font-size: 1rem;
  line-height: 1.15;
}

.store-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 1.1rem;
}

.apple-icon {
  color: #fff;
}

.apple-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.play-icon {
  padding-left: 2px;
  font-size: 1rem;
}

.button-arrow {
  font-size: 1.35rem;
  opacity: 0.75;
}

.reassurance {
  max-width: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.reassurance > span:first-child {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 900;
}

.quick-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.quick-benefits li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.7);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.quick-benefits li > span:first-child {
  color: var(--green);
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.sun-disc {
  position: absolute;
  top: 12%;
  right: 0;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.75), transparent 28%),
    linear-gradient(145deg, #f5d882, #eeb95b);
  box-shadow: inset 0 0 0 1px rgba(118, 85, 33, 0.06);
}

.phone-frame,
.preview-phone {
  overflow: hidden;
  border: 8px solid #2d261f;
  border-radius: 46px;
  background: #2d261f;
  box-shadow: var(--shadow);
}

.phone-frame {
  z-index: 2;
  position: relative;
  width: min(72%, 310px);
  aspect-ratio: 0.46;
  transform: rotate(3deg);
}

.phone-frame::after,
.preview-phone::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 32%;
  height: 17px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #12100d;
}

.phone-frame img,
.preview-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.floating-note {
  z-index: 4;
  position: absolute;
  display: grid;
  border: 1px solid rgba(70, 55, 37, 0.09);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 16px 40px rgba(68, 50, 30, 0.16);
  backdrop-filter: blur(12px);
}

.note-eggs {
  top: 22%;
  left: -3%;
  grid-template-columns: 40px 1fr;
  padding: 12px 15px;
  border-radius: 18px;
}

.note-eggs > span {
  grid-row: 1 / 3;
  align-self: center;
  font-size: 1.55rem;
}

.note-eggs strong,
.note-eggs small {
  display: block;
}

.note-eggs strong {
  font-size: 0.98rem;
}

.note-eggs small {
  color: var(--muted);
  font-size: 0.7rem;
}

.note-score {
  right: -3%;
  bottom: 18%;
  gap: 2px;
  min-width: 160px;
  padding: 13px 15px;
  border-radius: 18px;
}

.note-score strong {
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
}

.note-score strong small {
  font-size: 0.65rem;
}

.note-score span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.proof-strip {
  width: 100%;
  padding: 30px 20px;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--green-dark);
  color: #fff;
  text-align: center;
}

.proof-strip p {
  margin: 0 0 9px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 900;
}

.proof-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 13px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
}

.section-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding-block: clamp(76px, 9vw, 122px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(38px, 6vw, 66px);
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.section-heading .eyebrow {
  margin-inline: auto;
}

.section-heading.left .eyebrow {
  margin-inline: 0;
}

.section-heading h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  line-height: 1;
}

.section-heading > p:last-child,
.final-cta > p {
  max-width: 58ch;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.section-heading.left > p:last-child {
  margin-inline: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-grid article {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.76);
  box-shadow: 0 14px 40px rgba(69, 51, 31, 0.07);
}

.benefit-grid article:nth-child(2) {
  transform: translateY(22px);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 1.55rem;
  font-weight: 900;
}

.benefit-grid article:nth-child(2) .benefit-icon {
  background: #f8dfd8;
  color: #b45947;
}

.benefit-grid article:nth-child(3) .benefit-icon {
  background: #fbe9b7;
}

.benefit-grid h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.ai-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 5%, rgba(244, 195, 90, 0.2), transparent 28rem),
    radial-gradient(circle at 90% 85%, rgba(125, 168, 109, 0.18), transparent 32rem),
    #2f281f;
}

.ai-shell {
  width: min(1180px, calc(100% - 32px));
}

.section-heading.on-dark {
  color: #fff;
}

.section-heading.on-dark .eyebrow {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #f6d987;
}

.section-heading.on-dark > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ai-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(5, 5, 4, 0.2);
}

.ai-card:nth-child(2) {
  transform: translateY(24px);
}

.ai-card-copy {
  min-height: 220px;
  padding: 26px 26px 22px;
}

.feature-label {
  width: fit-content;
  display: block;
  margin-bottom: 20px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.ai-card:nth-child(2) .feature-label {
  background: #fbe8b3;
  color: var(--brown);
}

.ai-card:nth-child(3) .feature-label {
  background: #e8e0f4;
  color: #654a80;
}

.ai-card h3 {
  margin-bottom: 11px;
  font-size: clamp(1.35rem, 2.2vw, 1.72rem);
  line-height: 1.08;
}

.ai-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.ai-phone {
  position: relative;
  width: calc(100% - 30px);
  aspect-ratio: 0.4615;
  margin: 0 auto -76px;
  overflow: hidden;
  border: 6px solid #1f1a15;
  border-radius: 38px 38px 0 0;
  background: #1f1a15;
  box-shadow: 0 18px 42px rgba(34, 26, 18, 0.19);
}

.ai-phone::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 32%;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #12100d;
}

.ai-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.app-preview {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0, rgba(244, 195, 90, 0.32), transparent 30rem),
    #dcebcf;
}

.preview-shell {
  width: min(1180px, calc(100% - 32px));
}

.preview-shell .section-heading {
  max-width: 780px;
}

.preview-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.preview-track figure {
  margin: 0;
}

.preview-phone {
  position: relative;
  width: 100%;
  max-width: 230px;
  aspect-ratio: 0.46;
  margin: 0 auto;
  border-width: 6px;
  border-radius: 34px;
}

.preview-track figcaption {
  margin-top: 22px;
  color: var(--green-dark);
  text-align: center;
}

.preview-track figcaption strong,
.preview-track figcaption span {
  display: block;
}

.preview-track figcaption strong {
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.25;
}

.preview-track figcaption span {
  margin-top: 6px;
  color: rgba(51, 90, 41, 0.72);
  font-size: 0.72rem;
  line-height: 1.35;
}

.swipe-hint {
  display: none;
}

.steps {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(36px, 8vw, 110px);
}

.steps .section-heading {
  position: sticky;
  top: 28px;
  margin: 0;
  text-align: left;
}

.steps .section-heading .eyebrow {
  margin-inline: 0;
}

.steps ol {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.75);
}

.steps li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green-dark);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  width: min(1030px, calc(100% - 32px));
  padding: clamp(54px, 8vw, 92px) clamp(20px, 6vw, 74px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 10%, rgba(244, 195, 90, 0.22), transparent 20rem),
    var(--green-dark);
  color: #fff;
  text-align: center;
}

.final-cta > img {
  margin: 0 auto 22px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(19, 40, 14, 0.26);
}

.final-cta .eyebrow {
  margin-inline: auto;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.final-cta h2 {
  max-width: 760px;
  margin-inline: auto;
}

.final-cta > p {
  color: rgba(255, 255, 255, 0.74);
}

.final-cta .hero-actions {
  margin: 30px auto 0;
}

.final-cta .store-button {
  border-color: #fff;
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 14px 36px rgba(16, 35, 12, 0.22);
}

.final-cta .store-button:hover,
.final-cta .store-button:focus-visible {
  background: #f8f3e8;
}

.final-cta .store-icon {
  background: var(--green-soft);
}

.final-cta .apple-icon {
  color: var(--green-dark);
}

.reassurance.light {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.68);
}

.reassurance.light > span:first-child {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.sticky-download {
  z-index: 30;
  position: fixed;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  left: 12px;
  display: none;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  margin-inline: auto;
  padding: 9px 9px 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(42, 70, 34, 0.94);
  color: #fff;
  box-shadow: 0 18px 50px rgba(35, 49, 28, 0.28);
  backdrop-filter: blur(18px);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 240ms ease, opacity 240ms ease;
}

.sticky-download.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-download img {
  border-radius: 13px;
}

.sticky-download div {
  min-width: 0;
}

.sticky-download strong,
.sticky-download small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-download strong {
  font-size: 0.78rem;
}

.sticky-download small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
}

.sticky-link {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding-inline: 16px;
  border-radius: 13px;
  background: #fff;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
}

footer {
  width: min(1080px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 46px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-brand img {
  border-radius: 10px;
}

footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 26px 0 58px;
    text-align: center;
  }

  .hero::before {
    top: auto;
    right: -48%;
    bottom: -3%;
    width: 180%;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.25rem);
  }

  .hero-text {
    max-width: 38ch;
  }

  .hero-actions {
    width: 100%;
    max-width: 520px;
  }

  .quick-benefits {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 510px);
    min-height: 530px;
    margin-inline: auto;
  }

  .phone-frame {
    width: min(62%, 280px);
  }

  .note-eggs {
    left: 1%;
  }

  .note-score {
    right: 0;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: auto;
  }

  .benefit-grid article:nth-child(2) {
    transform: none;
  }

  .benefit-icon {
    margin-bottom: 22px;
  }

  .ai-grid {
    width: calc(100% + 32px);
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 76vw);
    grid-template-columns: none;
    gap: 16px;
    margin-left: -16px;
    padding: 8px 16px 36px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .ai-grid::-webkit-scrollbar {
    display: none;
  }

  .ai-card {
    scroll-snap-align: center;
  }

  .ai-card:nth-child(2) {
    transform: none;
  }

  .preview-track {
    width: calc(100% + 32px);
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 31vw);
    grid-template-columns: none;
    gap: 18px;
    margin-left: -16px;
    padding: 8px 16px 28px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .preview-track::-webkit-scrollbar {
    display: none;
  }

  .preview-track figure {
    scroll-snap-align: center;
  }

  .swipe-hint {
    display: block;
    margin: 0;
    color: var(--green-dark);
    font-size: 0.76rem;
    font-weight: 800;
    text-align: center;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps .section-heading {
    position: static;
    text-align: center;
  }

  .steps .section-heading .eyebrow {
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 88px;
  }

  .site-header {
    width: min(100% - 24px, 1120px);
    min-height: 66px;
  }

  .brand {
    font-size: 0.88rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .language-picker select {
    min-height: 42px;
  }

  .hero {
    width: min(100% - 28px, 1120px);
    padding-top: 22px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 0.69rem;
  }

  h1 {
    margin-bottom: 18px;
    letter-spacing: -0.05em;
  }

  .hero-text {
    margin-bottom: 23px;
    font-size: 1rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .store-button {
    min-height: 66px;
    border-radius: 17px;
  }

  .hero-actions[data-platform="ios"] .app-store-link,
  .hero-actions[data-platform="android"] .google-play-link {
    order: -1;
  }

  .hero-actions[data-platform="ios"] .google-play-link,
  .hero-actions[data-platform="android"] .app-store-link {
    min-height: 52px;
    border-width: 1px;
    background: transparent;
    color: var(--green-dark);
    box-shadow: none;
  }

  .hero-actions[data-platform="ios"] .google-play-link .store-icon,
  .hero-actions[data-platform="android"] .app-store-link .store-icon {
    background: rgba(79, 125, 61, 0.1);
  }

  .hero-actions[data-platform="android"] .app-store-link .apple-icon {
    color: var(--green-dark);
  }

  .final-cta .hero-actions[data-platform="ios"] .google-play-link,
  .final-cta .hero-actions[data-platform="android"] .app-store-link {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .final-cta .hero-actions[data-platform="android"] .app-store-link .apple-icon {
    color: #fff;
  }

  .reassurance {
    max-width: 34ch;
  }

  .quick-benefits {
    width: calc(100% + 6px);
    gap: 7px;
  }

  .quick-benefits li {
    padding: 7px 9px;
    font-size: 0.7rem;
  }

  .hero-visual {
    min-height: 450px;
  }

  .sun-disc {
    top: 10%;
    right: 2%;
    width: 96%;
  }

  .phone-frame {
    width: min(61%, 238px);
    border-width: 6px;
    border-radius: 36px;
  }

  .phone-frame::after,
  .preview-phone::after {
    height: 13px;
  }

  .note-eggs {
    top: 20%;
    left: 0;
    padding: 10px 12px;
  }

  .note-score {
    right: -1%;
    bottom: 15%;
    min-width: 142px;
    padding: 11px 12px;
  }

  .section-shell {
    width: min(100% - 28px, 1080px);
    padding-block: 74px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(2.08rem, 10vw, 3rem);
  }

  .benefit-grid article {
    padding: 24px;
    border-radius: 23px;
  }

  .ai-shell {
    width: 100%;
    padding-inline: 14px;
  }

  .ai-card-copy {
    min-height: 210px;
    padding: 24px 22px 20px;
  }

  .ai-phone {
    width: calc(100% - 24px);
  }

  .preview-shell {
    width: 100%;
    padding-inline: 14px;
  }

  .preview-shell .section-heading {
    padding-inline: 0;
    text-align: center;
  }

  .preview-shell .section-heading .eyebrow {
    margin-inline: auto;
  }

  .preview-shell .section-heading > p:last-child {
    margin-inline: auto;
  }

  .preview-track {
    width: calc(100% + 28px);
    grid-auto-flow: column;
    grid-auto-columns: 74vw;
    grid-template-columns: none;
    gap: 16px;
    margin-left: -14px;
    padding: 8px 14px 26px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 14px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .preview-track::-webkit-scrollbar {
    display: none;
  }

  .preview-track figure {
    scroll-snap-align: center;
  }

  .preview-track figure:nth-child(2) {
    transform: none;
  }

  .preview-phone {
    max-width: 254px;
  }

  .swipe-hint {
    display: block;
    margin: 0;
    color: var(--green-dark);
    font-size: 0.76rem;
    font-weight: 800;
    text-align: center;
  }

  .steps li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .steps li > span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .final-cta {
    width: min(100% - 20px, 1030px);
    border-radius: 30px;
  }

  .sticky-download {
    display: grid;
  }

  footer {
    width: min(100% - 28px, 1080px);
    flex-direction: column;
    padding: 38px 0 26px;
  }

  footer p {
    text-align: center;
  }
}

@media (max-width: 370px) {
  .brand span {
    max-width: 170px;
  }

  .language-picker select {
    min-width: 62px;
  }

  .quick-benefits li {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 420px;
  }

  .note-eggs {
    left: -2%;
  }

  .note-score {
    right: -2%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
