/* ============================================================
   Halo — landing site
   Warm editorial theme (cream / nude / lavender).
   Auto light/dark following the device theme. Zero JS, no build step.
   ============================================================ */

:root {
  color-scheme: light dark;
  --bg:          #FDF9F3;
  --bg-nude:     #F6EDE2;
  --bg-lav:      #F1ECFA;
  --surface:     #FFFFFF;
  --ink:         #2E2740;
  --muted:       #6F6887;
  --accent:      #F4734B;
  --accent-dark: #E05A31;
  --violet:      #B69CFF;
  --gold:        #FFB648;
  --grad:        linear-gradient(115deg, #FFB648 0%, #FF7E6B 52%, #B69CFF 100%);
  --border:      rgba(46, 39, 64, 0.09);
  --border-strong: rgba(46, 39, 64, 0.16);
  --radius:      26px;
  --radius-lg:   34px;
  --shadow-sm:   0 6px 24px -10px rgba(46, 39, 64, 0.14);
  --shadow:      0 24px 70px -24px rgba(46, 39, 64, 0.22);
  --maxw:        1120px;
  --header-bg:   rgba(253, 249, 243, 0.85);
  --navcta-bg:   #2E2740;
  --navcta-text: #FFFFFF;
  --cta-bg:      #2E2740;
  --cta-text:    #FFFFFF;
  --mockup-frame: #2E2740;
  --screen-bg:   linear-gradient(180deg, #FDF9F3 0%, #FBF2E7 100%);
  --screen-card: #FFFFFF;
  --visual-nude: #F1E5D6;
  --visual-lav:  #EBE4FA;
}

/* Dark theme: follows the device appearance automatically. */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:          #171420;
    --bg-nude:     #1D1928;
    --bg-lav:      #211B2F;
    --surface:     #2A2440;
    --ink:         #F2EDE6;
    --muted:       #A79FBD;
    --accent-dark: #FF9C7A;
    --border:      rgba(255, 255, 255, 0.10);
    --border-strong: rgba(255, 255, 255, 0.24);
    --shadow-sm:   0 6px 24px -10px rgba(0, 0, 0, 0.55);
    --shadow:      0 24px 70px -24px rgba(0, 0, 0, 0.65);
    --header-bg:   rgba(23, 20, 32, 0.85);
    --navcta-bg:   #F2EDE6;
    --navcta-text: #1A1626;
    --cta-bg:      #262038;
    --cta-text:    #F4EFE8;
    --mockup-frame: #4A4165;
    --screen-bg:   linear-gradient(180deg, #221D31 0%, #1D1828 100%);
    --screen-card: #2C2640;
    --visual-nude: #221C2D;
    --visual-lav:  #241E31;
  }
  .hero__glow {
    background: radial-gradient(circle, rgba(255, 182, 72, 0.22) 0%, rgba(182, 156, 255, 0.18) 45%, transparent 70%);
  }
  .marquee { opacity: 0.08; }
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .serif {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.14;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(244, 115, 75, 0.45);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
}
.brand__mark { width: 30px; height: 30px; flex: none; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--navcta-bg);
  color: var(--navcta-text) !important;
  font-weight: 600;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nav__cta:hover { background: var(--accent); transform: translateY(-1px); }

/* ---------- Hero (centered) ---------- */
.hero {
  position: relative;
  padding: 84px 0 40px;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(255, 182, 72, 0.16);
  border: 1px solid rgba(244, 115, 75, 0.25);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 22px;
}
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 34px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted);
}
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 64px;
  padding: 24px 0 8px;
  width: 100%;
  max-width: 760px;
}
.hero__glow {
  position: absolute;
  width: 620px;
  height: 620px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 182, 72, 0.30) 0%, rgba(182, 156, 255, 0.14) 45%, transparent 70%);
  pointer-events: none;
}
.halo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, 92%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 0deg, #FFB648, #FF7E6B, #B69CFF, #FFB648);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 34px), #000 calc(100% - 33px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 34px), #000 calc(100% - 33px));
  filter: blur(16px);
  opacity: 0.55;
  animation: spin 30s linear infinite;
  pointer-events: none;
}
.spark {
  position: absolute;
  width: 26px;
  height: 26px;
  color: var(--gold);
  opacity: 0.9;
}
.spark--1 { top: 6%; left: 10%; }
.spark--2 { top: 27%; right: 8%; color: var(--violet); width: 20px; height: 20px; }
.spark--3 { bottom: 15%; right: 19%; width: 16px; height: 16px; }
.doodle-arrow {
  position: absolute;
  left: 4%;
  bottom: 25%;
  width: 104px;
  color: var(--ink);
  opacity: 0.45;
  transform: rotate(2deg);
}

/* ---------- Phone mockup ---------- */
.phone {
  position: relative;
  width: 292px;
  background: var(--mockup-frame);
  border-radius: 46px;
  padding: 10px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: float 7s ease-in-out infinite;
}
.phone__screen {
  background: var(--screen-bg);
  border-radius: 37px;
  padding: 22px 18px 16px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.phone__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.phone__brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.phone__mark { width: 18px; height: 18px; }
.chip {
  background: rgba(244, 115, 75, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11px;
}
.phone__card {
  background: var(--screen-card);
  border-radius: 20px;
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
}
.phone__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  text-align: left;
}
.phone__card--affirm p:not(.phone__label) {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
  text-align: left;
}
.phone__card--affirm .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.phone__lines { display: flex; flex-direction: column; gap: 9px; }
.phone__line {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--ink);
  text-align: left;
}
.phone__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(244, 115, 75, 0.5);
  flex: none;
  position: relative;
}
.phone__dot--done { background: var(--accent); border-color: var(--accent); }
.phone__dot--done::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--screen-card);
  border-radius: 50%;
}
.phone__bar {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-top: 8px;
}
.phone__bar span {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: var(--border);
}
.phone__bar span:first-child { background: var(--accent); }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 96px 0; }
.section--nude {
  background: var(--bg-nude);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.section--lav {
  background: var(--bg-lav);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--nude .container, .section--lav .container { position: relative; z-index: 1; }
.section__head {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}
.section__head .eyebrow { margin-bottom: 18px; }
.section__head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 16px;
}
.section__head p { color: var(--muted); font-size: 17px; }

/* ---------- Walkthrough (01 / 02 / 03) ---------- */
.walk { display: flex; flex-direction: column; gap: 72px; }
.walk__row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.walk__visual {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  min-height: 384px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
}
.walk__visual--dark { background: #2E2740; }
.walk__visual--nude { background: var(--visual-nude); }
.walk__visual--lav  { background: var(--visual-lav); }
.walk__visual .spark--in { top: 10%; right: 12%; color: var(--gold); opacity: 0.75; }
.walk__visual .spark--in2 { bottom: 12%; left: 10%; color: var(--violet); width: 18px; height: 18px; opacity: 0.8; }
.walk__text { max-width: 440px; }
.walk__eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.walk__eyebrow b {
  color: var(--accent);
  font-weight: 700;
  margin-right: 8px;
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: 0;
}
.walk__text h3 {
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  margin-bottom: 12px;
}
.walk__text p { color: var(--muted); font-size: 16px; }

/* Mini phone (walkthrough 01) */
.walk__visual--dark .phone--mini { background: #3A3152; box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.5); }
.phone--mini { width: 236px; border-radius: 38px; padding: 8px; animation: none; }
.phone--mini .phone__screen {
  border-radius: 30px;
  padding: 16px 14px 12px;
  min-height: 400px;
  gap: 10px;
}
.phone--mini .phone__card { padding: 16px 14px; border-radius: 16px; }
.phone--mini .phone__card--affirm p:not(.phone__label) { font-size: 17px; }
.phone--mini .phone__line { font-size: 11.5px; }

/* Journal card (walkthrough 02) */
.chips-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.mini-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
}
.jcard {
  background: var(--surface);
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  width: min(340px, 100%);
}
.jcard .phone__line { font-size: 14px; }

/* Quote cards (walkthrough 03) */
.qstack { display: flex; align-items: center; justify-content: center; }
.qcard {
  background: var(--surface);
  border-radius: 20px;
  padding: 22px 22px;
  box-shadow: var(--shadow-sm);
  max-width: 300px;
}
.qcard p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  line-height: 1.38;
  color: var(--ink);
}
.qcard--a { transform: rotate(-3deg); margin-right: -26px; }
.qcard--b { transform: rotate(2deg) translateY(28px); margin-left: -26px; }

/* ---------- Benefits ---------- */
.marquee {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  overflow: hidden;
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}
.marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 46s linear infinite;
}
.marquee__track span {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(44px, 7vw, 92px);
  color: var(--ink);
  padding-right: 48px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 72px;
}
.benefit { max-width: 400px; }
.benefit:nth-child(even) { margin-top: 84px; }
.benefit__icon {
  width: 46px;
  height: 46px;
  color: var(--ink);
  margin-bottom: 18px;
}
.benefit__icon svg { width: 100%; height: 100%; }
.benefit h3 { font-size: 22px; margin-bottom: 10px; }
.benefit p { color: var(--muted); font-size: 15.5px; }

/* ---------- Quote band ---------- */
.quote-band {
  padding: 92px 0;
  background:
    radial-gradient(720px 320px at 15% 20%, rgba(255, 182, 72, 0.20), transparent 65%),
    radial-gradient(720px 320px at 85% 80%, rgba(182, 156, 255, 0.22), transparent 65%),
    var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band blockquote {
  max-width: 780px;
  margin: 0 auto;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.34;
  color: var(--ink);
  font-style: italic;
  position: relative;
  z-index: 1;
}
.quote-band .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.quote-band footer {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-style: normal;
  border: none;
  padding: 0;
  display: block;
  position: relative;
  z-index: 1;
}
.quote-band .spark--q1 { top: 22%; left: 10%; }
.quote-band .spark--q2 { bottom: 20%; right: 10%; color: var(--violet); width: 20px; height: 20px; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0 24px;
  margin-bottom: 14px;
  transition: box-shadow 0.18s ease;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  color: var(--accent);
  flex: none;
  transition: transform 0.18s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  color: var(--muted);
  font-size: 15.5px;
  padding: 0 0 22px;
  max-width: 640px;
}

/* ---------- Download ---------- */
.download-card {
  position: relative;
  overflow: hidden;
  background: var(--cta-bg);
  color: var(--cta-text);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
}
.download-card::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 182, 72, 0.35) 0%, rgba(182, 156, 255, 0.18) 45%, transparent 70%);
  pointer-events: none;
}
.download-card h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin-bottom: 14px;
  position: relative;
}
.download-card p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 34px;
  position: relative;
}
.download-card .btn-primary { position: relative; }
.download-card .hint {
  position: relative;
  margin-top: 18px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}

/* ---------- Apps (More from DHA Studio) ---------- */
.apps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
}
.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.app-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.app-card__tile {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  color: #fff;
}
.app-card__tile--fb  { background: linear-gradient(135deg, #6C63FF, #FF6584); }
.app-card__tile--dha { background: linear-gradient(135deg, #4F7CFF, #7C5CFF); font-size: 14px; }
.app-card h3 { font-size: 19px; }
.app-card p { color: var(--muted); font-size: 14.5px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 44px 0 36px;
  background: var(--bg-nude);
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 17px;
}
.footer-brand .brand__mark { width: 24px; height: 24px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  color: var(--muted);
  font-size: 14.5px;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--ink); }
.footer-copy {
  width: 100%;
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 10px;
}

/* ---------- Legal pages ---------- */
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 500;
  font-size: 14.5px;
  margin-bottom: 36px;
}
.legal__back:hover { color: var(--accent); }
.legal h1 {
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  margin-bottom: 6px;
}
.legal .updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal h2 { font-size: 20px; margin: 34px 0 10px; }
.legal p, .legal li {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 10px;
}
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--ink); }
.legal a { color: var(--accent-dark); }
.legal a:hover { text-decoration: underline; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 34px -12px rgba(244, 115, 75, 0.55);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ---------- Motion ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up--1 { animation-delay: 0.08s; }
.fade-up--2 { animation-delay: 0.16s; }
.fade-up--3 { animation-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .marquee__track { transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero { padding: 64px 0 24px; }
  .hero__visual { margin-top: 48px; }
  .section { padding: 72px 0; }
  .walk__row { grid-template-columns: 1fr; gap: 32px; }
  .walk { gap: 56px; }
  .benefits { grid-template-columns: 1fr; gap: 44px; }
  .benefit:nth-child(even) { margin-top: 0; }
  .apps { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .phone { width: 262px; }
  .phone__screen { min-height: 480px; }
  .phone--mini { width: 218px; }
  .phone--mini .phone__screen { min-height: 366px; }
  .walk__visual { padding: 34px 20px; min-height: 320px; }
  .qcard--a, .qcard--b { transform: none; margin: 0; }
  .qstack { flex-direction: column; gap: 12px; }
  .download-card { padding: 56px 22px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .doodle-arrow { display: none; }
}
