@import url('https://fonts.googleapis.com/css2?family=Literata:ital,wght@0,500;0,600;0,700;1,500&family=Nunito:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; }

body,
h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

:root {
  --paper: #f8f4ed;
  --paper-deep: #efe5d5;
  --surface: #fffdf9;
  --surface-soft: #f4ecdf;
  --ink: #241c16;
  --ink-soft: #6f6257;
  --line: rgba(67, 48, 31, .14);
  --amber: #d78918;
  --amber-text: #c8740f;
  --amber-dark: #a35f0c;
  --amber-soft: #f3d39f;
  --forest: #355d4a;
  --forest-soft: #dce8df;
  --white: #fff;
  --shadow-sm: 0 12px 34px rgba(55, 37, 22, .09);
  --shadow-lg: 0 32px 90px rgba(55, 37, 22, .17);
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 44px;
  --content: 1180px;
  --nav-height: 76px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 148px);
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .58fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 84px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--amber-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.display,
.section-title,
.feature-title,
.quote-title {
  margin: 0;
  font-family: 'Literata', Georgia, serif;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.display {
  max-width: 760px;
  font-size: clamp(3.1rem, 6.2vw, 5.9rem);
  line-height: .99;
  font-weight: 600;
}

.display em {
  color: var(--amber-text);
  font-style: italic;
  font-weight: 500;
}

.type-accent {
  color: var(--amber-text);
}

.section-title {
  max-width: 760px;
  font-size: clamp(2.3rem, 4.5vw, 4.25rem);
  line-height: 1.06;
  font-weight: 600;
}

.section-copy,
.lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.72;
}

.lead { max-width: 650px; }

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(36, 28, 22, .18);
}

.button-primary:hover { background: #100c09; box-shadow: 0 18px 38px rgba(36, 28, 22, .24); }

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 253, 249, .72);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.button-secondary:hover { border-color: rgba(163, 95, 12, .34); background: var(--surface); }

.button-light {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .16);
}

.icon-arrow { font-size: 1.15em; line-height: 1; }

/* Navigation */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-height);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-nav.is-scrolled {
  border-color: var(--line);
  background: rgba(248, 244, 237, .88);
  box-shadow: 0 10px 32px rgba(55, 37, 22, .06);
  backdrop-filter: blur(18px);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(97, 63, 28, .12);
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink-soft); font-size: 14px; font-weight: 800; text-decoration: none; }
.nav-links a:not(.nav-cta):hover,
.nav-links a[aria-current='true'] { color: var(--amber-dark); }

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white) !important;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle-lines { position: relative; }
.nav-toggle-lines::before,
.nav-toggle-lines::after { content: ''; position: absolute; left: 0; }
.nav-toggle-lines::before { top: -6px; }
.nav-toggle-lines::after { top: 6px; }
.nav-toggle[aria-expanded='true'] .nav-toggle-lines { background: transparent; }
.nav-toggle[aria-expanded='true'] .nav-toggle-lines::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle-lines::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 900px;
  padding: calc(var(--nav-height) + 84px) 0 72px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(215, 137, 24, .18), transparent 27%),
    radial-gradient(circle at 4% 84%, rgba(53, 93, 74, .13), transparent 24%),
    var(--paper);
}

.hero::before {
  content: '';
  position: absolute;
  width: 620px;
  height: 620px;
  top: 140px;
  right: -250px;
  border: 1px solid rgba(163, 95, 12, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 255, 255, .22), 0 0 0 144px rgba(255, 255, 255, .12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.hero-copy { padding-bottom: 10px; }
.hero-copy .lead { margin-top: 28px; }
.hero-copy .button-row { margin-top: 32px; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.hero-proof li { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(215, 137, 24, .12);
}

.hero-visual {
  position: relative;
  min-height: 690px;
  perspective: 1300px;
}

.phone {
  position: relative;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 36px;
  background: #211e1b;
  box-shadow: var(--shadow-lg);
}

.phone-screen {
  position: relative;
  aspect-ratio: 576 / 1150;
  overflow: hidden;
  border-radius: 29px;
  background: #f8f5ef;
}

.phone-screen img {
  width: 100%;
  height: auto;
  max-width: none;
  transform: translateY(-4.22%);
}

.hero-phone-main {
  position: absolute;
  z-index: 3;
  width: 315px;
  left: 50%;
  top: 0;
  transform: translateX(-50%) rotate(.8deg);
}

.hero-phone-side {
  position: absolute;
  z-index: 1;
  width: 244px;
  top: 100px;
  filter: saturate(.92);
  opacity: .94;
}

.hero-phone-left { left: 0; transform: rotate(-7deg); }
.hero-phone-right { right: 0; transform: rotate(7deg); }

.hero-note {
  position: absolute;
  z-index: 5;
  right: -8px;
  bottom: 48px;
  width: 216px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 22px;
  background: rgba(255, 253, 249, .9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.hero-note strong { display: block; margin-bottom: 4px; font-size: 15px; }
.hero-note span { color: var(--ink-soft); font-size: 13px; line-height: 1.45; }

.trust-bar {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 249, .68);
}

.trust-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: left;
}

.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-index { color: var(--amber-dark); font-family: 'Literata', serif; font-size: 26px; font-weight: 600; }
.trust-item strong { display: block; font-size: 16px; }
.trust-item span:last-child { display: block; color: var(--ink-soft); font-size: 13px; }

/* Product journey */
.journey { background: var(--surface); }
.journey-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }

.journey-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.journey-card-large { grid-column: span 7; }
.journey-card-small { grid-column: span 5; }
.journey-card-copy { position: relative; z-index: 3; padding: clamp(28px, 4vw, 48px); }
.journey-number { color: var(--amber-dark); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.feature-title { margin-top: 12px; font-size: clamp(2rem, 3.5vw, 3.15rem); line-height: 1.08; font-weight: 600; }
.journey-card p { max-width: 480px; margin: 15px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }

.journey-card .phone {
  position: absolute;
  z-index: 2;
  width: 285px;
  right: clamp(24px, 5vw, 68px);
  bottom: -190px;
  transform: rotate(2.5deg);
}

.journey-card-small .phone { width: 268px; right: 50%; transform: translateX(50%) rotate(-1.5deg); }

.journey-card::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  right: -100px;
  bottom: -110px;
  border-radius: 50%;
  background: rgba(215, 137, 24, .13);
}

.journey-card-green { background: #eef4ef; }
.journey-card-green::after { background: rgba(53, 93, 74, .12); }
.journey-card-dark { background: var(--ink); color: var(--white); }
.journey-card-dark p { color: rgba(255, 255, 255, .7); }
.journey-card-dark .journey-number { color: var(--amber-soft); }
.journey-card-dark::after { background: rgba(215, 137, 24, .18); }

/* Feature matrix */
.feature-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-cell {
  min-height: 178px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, .52);
}

.feature-cell-index { color: var(--amber-dark); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.feature-cell h3 { margin: 28px 0 8px; font-size: 17px; line-height: 1.2; }
.feature-cell p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }

/* Habit */
.habit {
  overflow: hidden;
  background: var(--paper-deep);
}

.habit-grid {
  display: grid;
  grid-template-columns: minmax(320px, .84fr) minmax(420px, 1.16fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.habit-visual {
  position: relative;
  min-height: 720px;
}

.habit-visual::before {
  content: '';
  position: absolute;
  inset: 70px -90px 30px 20px;
  border-radius: 50%;
  background: rgba(215, 137, 24, .18);
}

.habit-visual .phone { width: 330px; margin-inline: auto; transform: rotate(-2deg); }

.streak-card {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: 230px;
  padding: 22px;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.streak-card span { color: var(--amber-dark); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.streak-card strong { display: block; margin-top: 8px; font-family: 'Literata', serif; font-size: 42px; line-height: 1; }
.streak-card p { margin: 8px 0 0; color: var(--ink-soft); font-size: 13px; }

.habit-list { display: grid; gap: 0; margin-top: 38px; }
.habit-item { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 24px 0; border-top: 1px solid rgba(67, 48, 31, .18); }
.habit-item:last-child { border-bottom: 1px solid rgba(67, 48, 31, .18); }
.habit-item-index { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--surface); color: var(--amber-dark); font-family: 'Literata', serif; font-weight: 700; }
.habit-item h3 { margin: 0 0 5px; font-size: 18px; }
.habit-item p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* Share section */
.share-section {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.share-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(215, 137, 24, .22), transparent 29%),
    linear-gradient(135deg, transparent 40%, rgba(255,255,255,.025));
}

.share-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.share-section .eyebrow { color: var(--amber-soft); }
.share-section .section-copy { color: rgba(255, 255, 255, .7); }
.share-section .section-title { color: var(--white); }

.share-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 0; padding: 0; list-style: none; }
.share-points li { padding: 9px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 800; }

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

.share-visual .phone { width: 326px; transform: rotate(2deg); }
.share-preview-card {
  position: absolute;
  left: 0;
  bottom: 58px;
  width: 220px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
}
.share-preview-card strong { display: block; font-size: 15px; }
.share-preview-card span { display: block; margin-top: 6px; color: rgba(255,255,255,.64); font-size: 13px; }

/* Community & privacy */
.community-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.community-board {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.community-card { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 18px; border-radius: 18px; background: var(--paper); }
.community-avatar { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--amber-soft); color: var(--amber-dark); font-family: 'Literata', serif; font-size: 18px; font-weight: 700; }
.community-card:nth-child(2) .community-avatar { background: var(--forest-soft); color: var(--forest); }
.community-card:nth-child(3) .community-avatar { background: #eadfef; color: #6b4772; }
.community-card strong { display: block; margin-top: 1px; }
.community-card p { margin: 5px 0 0; color: var(--ink-soft); font-size: 14px; }

.privacy-strip {
  margin-top: clamp(70px, 9vw, 110px);
  display: grid;
  grid-template-columns: 1.1fr repeat(3, .63fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.privacy-intro,
.privacy-item { padding: clamp(24px, 3vw, 38px); }
.privacy-item { border-left: 1px solid var(--line); }
.privacy-intro strong { display: block; font-family: 'Literata', serif; font-size: 24px; line-height: 1.2; }
.privacy-intro p,
.privacy-item p { margin: 9px 0 0; color: var(--ink-soft); font-size: 14px; }
.privacy-item span { color: var(--amber-dark); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.privacy-item strong { display: block; margin-top: 12px; font-size: 16px; }

/* Download */
.download-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px);
  border-radius: var(--radius-lg);
  background: var(--amber);
  color: #25170b;
}

.download-panel::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  right: -160px;
  top: -230px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(255,255,255,.09), 0 0 0 124px rgba(255,255,255,.06);
}

.download-content { position: relative; z-index: 1; max-width: 760px; }
.download-panel .eyebrow { color: #5c3505; }
.download-panel .section-title { font-size: clamp(2.5rem, 5vw, 4.6rem); }
.download-panel .section-copy { max-width: 650px; margin-top: 20px; color: rgba(37, 23, 11, .74); }
.download-panel .button-row { margin-top: 30px; }
.store-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.store-link { min-height: 48px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1px solid rgba(37,23,11,.2); border-radius: 14px; color: #25170b; font-size: 13px; font-weight: 900; text-decoration: none; }
.store-link:hover { background: rgba(255,255,255,.2); }

/* FAQ */
.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--amber-dark); transition: transform .2s ease; }
.faq-question[aria-expanded='true'] .faq-icon { transform: rotate(45deg); }
.faq-answer { overflow: hidden; }
.faq-answer[hidden] { display: none; }
.faq-answer p { max-width: 780px; margin: -2px 0 24px; color: var(--ink-soft); }

/* Footer */
.site-footer { padding: 48px 0 32px; border-top: 1px solid var(--line); background: var(--surface); }
.footer-main { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.footer-copy { max-width: 420px; margin: 14px 0 0; color: var(--ink-soft); font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 24px; max-width: 550px; }
.footer-links a { color: var(--ink-soft); font-size: 14px; font-weight: 800; text-decoration: none; }
.footer-links a:hover { color: var(--amber-dark); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 13px; }

@media (max-width: 1040px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-visual { width: min(620px, 100%); margin-inline: auto; }
  .section-header { grid-template-columns: 1fr; gap: 24px; }
  .section-copy { max-width: 720px; }
  .journey-card-large,
  .journey-card-small { grid-column: span 6; }
  .journey-card { min-height: 650px; }
  .feature-matrix { grid-template-columns: repeat(2, 1fr); }
  .habit-grid,
  .share-grid,
  .community-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .privacy-strip { grid-template-columns: repeat(3, 1fr); }
  .privacy-intro { grid-column: 1 / -1; border-bottom: 1px solid var(--line); }
  .privacy-item:first-of-type { border-left: 0; }
}

@media (max-width: 820px) {
  :root { --nav-height: 68px; }
  .container { width: min(calc(100% - 32px), var(--content)); }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--nav-height) + 4px);
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 253, 249, .98);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.is-open { display: grid; }
  .nav-links a { min-height: 46px; display: flex; align-items: center; padding: 9px 12px; border-radius: 12px; }
  .nav-cta { justify-content: center; }
  .hero { padding-top: calc(var(--nav-height) + 64px); }
  .hero-visual { min-height: 640px; }
  .hero-phone-main { width: 290px; }
  .hero-phone-side { width: 212px; top: 105px; }
  .hero-note { right: 12px; }
  .trust-grid { grid-template-columns: 1fr; padding-block: 8px; }
  .trust-item { justify-content: flex-start; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .journey-card-large,
  .journey-card-small { grid-column: 1 / -1; }
  .habit-grid,
  .share-grid,
  .community-grid { grid-template-columns: 1fr; }
  .habit-copy { order: -1; }
  .share-visual { min-height: 670px; }
  .privacy-strip { grid-template-columns: 1fr; }
  .privacy-intro { grid-column: auto; }
  .privacy-item { border-left: 0; border-top: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .section { padding-block: 76px; }
  .display { font-size: clamp(2.65rem, 14vw, 4.2rem); }
  .section-title { font-size: clamp(2.1rem, 10vw, 3rem); }
  .hero { padding-bottom: 46px; }
  .hero-copy .lead { margin-top: 22px; }
  .button-row { align-items: stretch; }
  .button { width: 100%; }
  .hero-proof { display: grid; }
  .hero-visual { min-height: 590px; margin-top: 16px; }
  .hero-phone-main { width: 272px; }
  .hero-phone-side { display: none; }
  .hero-note { width: 195px; right: 0; bottom: 14px; padding: 15px; }
  .journey-card { min-height: 610px; border-radius: 30px; }
  .journey-card .phone,
  .journey-card-small .phone { width: 250px; right: 50%; bottom: -176px; transform: translateX(50%) rotate(0); }
  .feature-matrix { grid-template-columns: 1fr; }
  .feature-cell { min-height: 150px; }
  .habit-visual { min-height: 650px; }
  .habit-visual .phone { width: 280px; }
  .streak-card { width: 190px; right: -4px; bottom: 48px; }
  .share-visual { min-height: 620px; }
  .share-visual .phone { width: 282px; }
  .share-preview-card { width: 184px; left: -4px; bottom: 22px; }
  .community-board { padding: 18px; border-radius: 30px; }
  .community-card { grid-template-columns: 44px 1fr; padding: 15px; }
  .community-avatar { width: 44px; height: 44px; }
  .download-panel { margin-inline: -4px; border-radius: 30px; }
  .store-links { display: grid; }
  .store-link { justify-content: center; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
