/* ============================================================
   Soussistant — marketing site
   Palette & type pulled straight from the app's design tokens:
   warm cream background, fresh-green primary, SF-Rounded → Nunito,
   with Fraunces as a warm editorial display face.
   ============================================================ */

:root {
  /* ---- App design tokens (light) ---- */
  --bg: #FFF4E6;
  --surface: #FFFFFF;
  --surface-2: #FFF0C2;
  --text: #2E2E2E;
  --text-2: #6E6E6E;
  --border: #E2D6C8;
  --green: #2FB573;
  --green-shadow: #1F8F5F;
  --pink: #F26CA7;
  --orange: #E07A2D;
  --amber: #F4B400;
  --danger: #D93025;

  /* ---- Derived ---- */
  --ink: #221d16;
  --radius-s: 12px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 34px;
  --shadow-sm: 0 2px 8px rgba(54, 40, 20, .06);
  --shadow-md: 0 18px 40px -18px rgba(54, 40, 20, .28);
  --shadow-lg: 0 40px 90px -30px rgba(40, 70, 40, .45);
  --maxw: 1180px;

  --display: "Fraunces", Georgia, serif;
  --sans: "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Subtle paper grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

/* ---- Atmosphere blobs ---- */
.atmosphere { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; }
.blob--green  { width: 540px; height: 540px; top: -160px; right: -120px; background: radial-gradient(circle, rgba(47,181,115,.55), transparent 70%); }
.blob--orange { width: 460px; height: 460px; top: 38%; left: -180px; background: radial-gradient(circle, rgba(224,122,45,.40), transparent 70%); }
.blob--pink   { width: 420px; height: 420px; bottom: -140px; right: 10%; background: radial-gradient(circle, rgba(242,108,167,.38), transparent 70%); }

/* ============ TYPOGRAPHY HELPERS ============ */
.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* Plain-text eyebrow label (no pill, no dot) */
.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-shadow);
}
.eyebrow__dot { display: none; }

/* ---- Icon system: inline SVG sprite (built from the vendored
   Simple Icons brand logos + Lucide UI glyphs in assets/icons/).
   Inlined via <use> so they always render; colour = currentColor. */
.ico { display: inline-block; width: 1em; height: 1em; flex-shrink: 0; color: inherit; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 800;
  border: none; cursor: pointer; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn--primary {
  background: var(--green); color: #fff;
  box-shadow: 0 6px 0 var(--green-shadow), var(--shadow-sm);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--green-shadow), var(--shadow-md); }
.btn--primary:active { transform: translateY(3px); box-shadow: 0 3px 0 var(--green-shadow); }
.btn--sm { padding: 11px 20px; font-size: .95rem; }

/* App-store style buttons */
.downloads { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.downloads--center { justify-content: center; }

.store-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff;
  padding: 12px 22px 12px 18px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-md);
  transition: transform .18s ease, box-shadow .18s ease;
}
.store-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.store-btn__logo { width: 26px; height: 26px; }
.store-btn__txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn__txt small { font-size: .68rem; opacity: .82; font-weight: 600; }
.store-btn__txt strong { font-size: 1.18rem; font-weight: 800; letter-spacing: -.01em; }
.store-btn__badge {
  position: absolute; top: -10px; right: -8px;
  font-size: .62rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase;
  background: var(--amber); color: var(--ink);
  padding: 3px 9px; border-radius: 999px;
  box-shadow: var(--shadow-sm); transform: rotate(3deg);
}
.store-btn--dark { background: #fff; color: var(--ink); border-color: var(--border); }
.store-btn--web {
  background: var(--green); color: #fff;
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 6px 0 var(--green-shadow), var(--shadow-sm);
}
.store-btn--web:hover { transform: translateY(-3px); box-shadow: 0 8px 0 var(--green-shadow), var(--shadow-md); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 24px;
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px 28px;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.nav.scrolled {
  background: rgba(255,244,230,.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
  border-radius: 0 0 18px 18px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 1.35rem; color: var(--ink); letter-spacing: -.01em; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }

.nav__links { display: flex; gap: 26px; margin-left: auto; font-weight: 700; font-size: .98rem; }
.nav__links a { color: var(--text-2); position: relative; padding: 4px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--green); border-radius: 2px; transition: width .2s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 4px; }
.nav__menu { display: none; }

/* ============ HERO ============ */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) 28px 70px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.2rem, 6.2vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 18px 0 20px;
  overflow-wrap: break-word;
}
.hero__title em { font-style: italic; font-weight: 500; color: var(--green-shadow); }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--text-2); max-width: 30em; font-weight: 500; }
.hero__note { margin-top: 18px; font-size: .9rem; color: var(--text-2); font-weight: 700; }

/* device area */
.hero__device { position: relative; display: grid; place-items: center; }
.hero__float {
  position: absolute; z-index: 5;
  background: var(--surface); color: var(--text);
  font-weight: 800; font-size: .9rem;
  padding: 10px 16px; border-radius: 14px;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.hero__float--a { top: 12%; left: -4%; color: var(--green-shadow); animation: float 5s ease-in-out infinite; }
.hero__float--b { bottom: 14%; right: -2%; color: var(--orange); animation: float 5s ease-in-out infinite .8s; }
@keyframes float { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-12px) } }

/* ============ PHONE MOCKUP ============ */
.phone { perspective: 1600px; }
.phone__frame {
  position: relative;
  width: 300px; aspect-ratio: 300 / 620;
  background: #15110c;
  border-radius: 46px;
  padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.06);
}
.phone--hero .phone__frame { width: 326px; transform: rotate(-2.5deg); }
.phone__island {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; background: #15110c; border-radius: 999px; z-index: 6;
}
.phone__screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 36px; overflow: hidden;
  background: var(--bg);
}

/* ---- In-phone app UI (faithful to the SwiftUI app) ---- */
.app { display: flex; flex-direction: column; font-size: 13px; }
.app__statusbar { display: block; width: 100%; height: auto; padding: 10px 4px 2px; }
.app__navbar { display: flex; align-items: center; justify-content: space-between; padding: 6px 18px 12px; }
.app__back { width: 18px; height: 18px; color: var(--green-shadow); }
.app__navtitle { font-family: var(--sans); font-weight: 800; font-size: 15px; color: var(--ink); }
.app__gear { width: 17px; height: 17px; color: var(--text-2); }
.app__scroll { flex: 1; overflow: hidden; padding: 4px 16px 16px; display: flex; flex-direction: column; gap: 10px; }
.app__scroll--center { justify-content: center; gap: 12px; }
.app__section { font-weight: 800; font-size: 11px; letter-spacing: .1em; color: var(--text-2); text-transform: uppercase; margin-top: 2px; }
.app__lead { font-family: var(--display); font-weight: 600; font-size: 19px; color: var(--ink); text-align: center; margin-bottom: 4px; }

/* steps */
.step { display: flex; gap: 10px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 11px 12px; }
.step--active { border-color: var(--green); box-shadow: 0 0 0 3px rgba(47,181,115,.14); }
.step--done p { color: var(--text-2); text-decoration: line-through; text-decoration-color: rgba(110,110,110,.4); }
.step__check { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-size: 12px; color: var(--text-2); border: 2px solid var(--border); margin-top: 1px; }
.step__check--on { background: var(--green); border-color: var(--green); color: #fff; }
.step__n { font-size: 10px; font-weight: 800; color: var(--text-2); text-transform: uppercase; letter-spacing: .05em; }
.step p { font-size: 12.5px; line-height: 1.35; color: var(--text); }

/* timer chips */
.timer-chip { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 10px 12px; }
.timer-chip__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(47,181,115,.18); flex-shrink: 0; }
.timer-chip__dot--orange { background: var(--orange); box-shadow: 0 0 0 4px rgba(224,122,45,.18); }
.timer-chip__dot--off { background: var(--text-2); box-shadow: none; }
.timer-chip__body { display: flex; flex-direction: column; line-height: 1.2; }
.timer-chip__body strong { font-size: 13px; font-weight: 800; color: var(--ink); }
.timer-chip__body span { font-size: 11px; color: var(--text-2); }
.timer-chip__time { margin-left: auto; font-family: ui-monospace, "SF Mono", monospace; font-weight: 700; font-size: 14px; color: var(--green-shadow); }
.timer-chip--done { opacity: .7; }
.timer-chip--done .timer-chip__time { color: var(--text-2); font-family: var(--sans); }

/* ingredients */
.ing { display: flex; align-items: center; gap: 11px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 11px 13px; font-size: 13px; font-weight: 600; }
.ing__box { width: 19px; height: 19px; border-radius: 6px; border: 2px solid var(--border); display: grid; place-items: center; font-size: 11px; color: transparent; }
.ing__box--on { background: var(--green); border-color: var(--green); color: #fff; }
.ing--done span:last-child { color: var(--text-2); text-decoration: line-through; text-decoration-color: rgba(110,110,110,.4); }

/* in-app fields & buttons */
.field { display: flex; align-items: center; gap: 9px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 13px 14px; }
.field__icon { width: 15px; height: 15px; color: var(--text-2); }
.field__ph { color: var(--text-2); font-size: 13px; font-weight: 600; }
.or { text-align: center; color: var(--text-2); font-size: 12px; font-weight: 700; position: relative; }
.app-btn { width: 100%; border: none; border-radius: 14px; padding: 13px; font-family: var(--sans); font-weight: 800; font-size: 13.5px; cursor: default; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.app-btn .ico { width: 15px; height: 15px; }
.app-btn--ghost { background: var(--surface); border: 1px solid var(--border); color: var(--ink); }
.app-btn--primary { background: var(--green); color: #fff; box-shadow: 0 4px 0 var(--green-shadow); }
.app-btn--sm { padding: 10px; font-size: 12.5px; }

/* voice overlay inside phone */
.voice {
  margin: auto 14px 16px; background: rgba(33,29,22,.92);
  backdrop-filter: blur(8px);
  border-radius: 22px; padding: 16px 16px 18px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  box-shadow: 0 -10px 30px -12px rgba(0,0,0,.4);
}
.voice--tall { margin-top: 24px; }
.voice__caption { color: #fff; font-size: 12.5px; font-weight: 700; text-align: center; line-height: 1.35; }
.voice__wave { display: flex; align-items: center; gap: 4px; height: 26px; }
.voice__wave i { width: 4px; border-radius: 4px; background: var(--green); animation: wave 1.1s ease-in-out infinite; }
.voice__wave i:nth-child(1){ height: 30%; animation-delay: 0s }
.voice__wave i:nth-child(2){ height: 70%; animation-delay: .12s }
.voice__wave i:nth-child(3){ height: 100%; animation-delay: .24s }
.voice__wave i:nth-child(4){ height: 55%; animation-delay: .36s }
.voice__wave i:nth-child(5){ height: 90%; animation-delay: .18s }
.voice__wave i:nth-child(6){ height: 45%; animation-delay: .30s }
.voice__wave i:nth-child(7){ height: 75%; animation-delay: .06s }
@keyframes wave { 0%,100%{ transform: scaleY(.4) } 50%{ transform: scaleY(1) } }
.voice__mic { width: 52px; height: 52px; border-radius: 50%; background: var(--green); display: grid; place-items: center; box-shadow: 0 0 0 0 rgba(47,181,115,.55); animation: pulse 2s infinite; }
.voice__mic .ico { width: 24px; height: 24px; color: #fff; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(47,181,115,.5) } 70%{ box-shadow: 0 0 0 18px rgba(47,181,115,0) } 100%{ box-shadow: 0 0 0 0 rgba(47,181,115,0) } }

/* ============ STRIP ============ */
.strip {
  max-width: 960px; margin: 0 auto; padding: 4px 28px 30px;
  display: flex; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 64px);
  flex-wrap: wrap;
}
.strip__item { text-align: center; }
.strip__item strong { display: block; font-family: var(--display); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--green-shadow); line-height: 1; }
.strip__item span { font-size: .9rem; color: var(--text-2); font-weight: 700; }
.strip__divider { width: 1px; height: 38px; background: var(--border); }

/* ============ FEATURES ============ */
.features { max-width: var(--maxw); margin: 0 auto; padding: 60px 28px; }
.features__head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 56px; }
.features__head .section-title { max-width: 16em; }

.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px);
  align-items: center; margin-bottom: clamp(70px, 9vw, 120px);
}
.feature--reverse .feature__text { order: 2; }
.feature__media { display: grid; place-items: center; }
.feature__kicker { display: inline-block; font-weight: 900; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; margin-bottom: 16px; }
.feature__kicker--green { color: var(--green-shadow); background: rgba(47,181,115,.12); }
.feature__kicker--orange { color: var(--orange); background: rgba(224,122,45,.13); }
.feature__kicker--pink { color: var(--pink); background: rgba(242,108,167,.14); }
.feature__text h3 { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.05; letter-spacing: -.01em; color: var(--ink); margin-bottom: 16px; }
.feature__text p { color: var(--text-2); font-size: 1.08rem; font-weight: 500; max-width: 30em; }
.feature__list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.feature__list li { position: relative; padding-left: 32px; font-weight: 700; color: var(--text); }
.feature__list li::before {
  content: "✓"; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; font-size: 12px; font-weight: 900;
}

/* feature phones: gentle tilt + soft platform shadow */
.feature__media .phone__frame { transform: rotate(2deg); }
.feature--reverse .feature__media .phone__frame { transform: rotate(-2deg); }
.feature__media .phone__frame::after {
  content: ""; position: absolute; left: 50%; bottom: -34px; transform: translateX(-50%);
  width: 70%; height: 30px; background: radial-gradient(ellipse, rgba(54,40,20,.22), transparent 70%); filter: blur(6px);
}

/* ============ HOW IT WORKS ============ */
.how { max-width: var(--maxw); margin: 0 auto; padding: 40px 28px 80px; }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.how__card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-l);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.how__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.how__num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  background: var(--surface-2); color: var(--green-shadow);
  font-family: var(--display); font-weight: 700; font-size: 1.4rem; margin-bottom: 18px;
}
.how__card h4 { font-size: 1.25rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.how__card p { color: var(--text-2); font-weight: 500; }

/* ============ CTA ============ */
.cta { max-width: var(--maxw); margin: 0 auto; padding: 0 28px 90px; }
.cta__inner {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #2c8a5b, var(--green-shadow) 60%, #176043);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 7vw, 84px) 28px;
  text-align: center; color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta__inner::before, .cta__inner::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(50px); opacity: .4;
}
.cta__inner::before { width: 320px; height: 320px; background: var(--amber); top: -120px; left: -80px; }
.cta__inner::after { width: 300px; height: 300px; background: var(--pink); bottom: -120px; right: -60px; }
.cta__mark { display: block; position: relative; width: 72px; height: 72px; border-radius: 20px; background: #fff; padding: 7px; margin: 0 auto 22px; box-shadow: 0 10px 30px -10px rgba(0,0,0,.4); }
.cta__mark img { width: 100%; height: 100%; border-radius: 13px; object-fit: cover; }
.cta__title { position: relative; font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.02; letter-spacing: -.01em; }
.cta__sub { position: relative; margin: 16px auto 0; max-width: 34em; font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,.9); }
.cta .downloads { position: relative; justify-content: center; }

/* ============ FAQ ============ */
.faq { max-width: 820px; margin: 0 auto; padding: 30px 28px 90px; }
.faq__list { margin-top: 44px; display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-m); padding: 6px 22px; box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { width: 20px; height: 20px; color: var(--green); transition: transform .25s ease; }
.faq__item[open] .faq__plus { transform: rotate(180deg); }
.faq__item p { color: var(--text-2); font-weight: 500; padding: 0 0 20px; max-width: 56ch; }
.faq__item p a { color: var(--green-shadow); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.faq__item p a:hover { color: var(--green); }

/* ============ FOOTER ============ */
.footer { max-width: var(--maxw); margin: 0 auto; padding: 40px 28px 50px; }
.footer__top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 22px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.brand--footer { font-size: 1.2rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 24px; font-weight: 700; color: var(--text-2); }
.footer__links a:hover { color: var(--ink); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: .9rem; color: var(--text-2); font-weight: 600; }
.footer__soon { color: var(--green-shadow); font-weight: 800; }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .15s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .voice__wave i, .voice__mic, .hero__float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 30px; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 560px; margin: 0 auto; }
  .hero__copy > * { max-width: 100%; }
  .hero .downloads { justify-content: center; }
  .hero__device { margin-top: 30px; }
  .feature { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .feature--reverse .feature__text { order: 0; }
  .feature__text { display: flex; flex-direction: column; align-items: center; }
  .feature__list { align-items: flex-start; text-align: left; }
  .how__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav__links, .nav__cta { display: none; }
  .nav { padding: 14px 20px; }
  .hero { padding-left: 22px; padding-right: 22px; }
  .hero__title { font-size: clamp(1.85rem, 7.8vw, 2.8rem); }
  /* keep the "Coming soon" badge inside the viewport on full-width buttons */
  .store-btn__badge { right: 8px; top: -9px; }
  .nav__menu { display: flex; flex-direction: column; gap: 5px; margin-left: auto; background: none; border: none; cursor: pointer; padding: 8px; }
  .nav__menu span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; }
  .nav.open { background: rgba(255,244,230,.95); backdrop-filter: blur(14px); }
  .nav.open .nav__links { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 8px; padding: 16px 24px 22px; margin: 0; background: rgba(255,244,230,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
  .strip__divider { display: none; }
  .store-btn { flex: 1 1 100%; }
}
