/* =========================================================================
   Accomplish landing page
   Aesthetic: "Daybreak", warm, refined minimalism.
   Cream canvas · warm ink · the app's sunrise gradient as the signature accent,
   with the real, colorful app screenshots doing the heavy lifting.
   ========================================================================= */

:root {
  /* Surface & ink (warm, never cold) */
  --bg:        #FDF6F0;
  --bg-2:      #FBEEE4;
  --surface:   #FFFFFF;
  --ink:       #271812;
  --ink-soft:  #6E5A50;
  --ink-faint: #9A877D;
  --line:      rgba(39, 24, 18, 0.10);
  --line-2:    rgba(39, 24, 18, 0.06);

  /* Sunrise gradient, sampled from the app icon */
  --sun-1: #FFA23A;   /* amber   */
  --sun-2: #FF5C40;   /* coral   */
  --sun-3: #FF2E7C;   /* magenta */
  --sunrise: linear-gradient(125deg, var(--sun-1) 0%, var(--sun-2) 48%, var(--sun-3) 100%);

  --c-pink:  #FF3E86;
  --c-event: #3E9C8F;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius:    18px;
  --radius-lg: 28px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ───────────────────────── Reset ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Subtle film grain for warmth / depth */
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: 9999; pointer-events: none;
  opacity: 0.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' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.section { padding-block: clamp(72px, 11vw, 140px); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.04;
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 0;
}

/* ───────────────────────── Shared bits ───────────────────────── */
.kicker {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sun-2);
  margin-bottom: 18px;
}
.section__head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 68px); }
.section__head--left { max-width: 620px; }
.section__title { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.section__sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); margin-top: 18px; max-width: 580px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.97rem; letter-spacing: -0.01em;
  border: 0; cursor: pointer; border-radius: 100px; padding: 14px 24px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  color: #fff;
  background: var(--sunrise); background-size: 140% 140%; background-position: 0% 50%;
  box-shadow: 0 10px 24px -10px rgba(255, 70, 80, 0.65), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--primary:hover {
  transform: translateY(-2px); background-position: 100% 50%;
  box-shadow: 0 16px 34px -12px rgba(255, 70, 80, 0.7), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn--primary:active { transform: translateY(0); }
.btn--ghost { color: var(--ink); background: transparent; border: 1px solid var(--line); padding: 11px 20px; }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }

:focus-visible { outline: 2.5px solid var(--c-pink); outline-offset: 3px; border-radius: 6px; }

/* ───────────────────────── Nav ───────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease); }
.nav.is-stuck {
  background: rgba(253, 246, 240, 0.82);
  backdrop-filter: saturate(150%) blur(14px); -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { filter: drop-shadow(0 3px 7px rgba(255,70,80,0.45)); }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; letter-spacing: -0.02em; font-variation-settings: "opsz" 40, "SOFT" 30; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); position: relative; transition: color 0.2s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 2px; background: var(--sunrise); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

/* ───────────────────────── Hero ───────────────────────── */
.hero { position: relative; padding-top: clamp(36px, 6vw, 72px); padding-bottom: clamp(60px, 9vw, 120px); overflow: hidden; }
.hero__glow {
  position: absolute; top: -28%; right: -6%;
  width: 70vw; max-width: 900px; aspect-ratio: 1;
  background: radial-gradient(circle at 60% 40%, rgba(255,90,64,0.42), rgba(255,46,124,0.22) 40%, transparent 68%);
  filter: blur(20px); z-index: 0; pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.82rem; font-weight: 600; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line);
  padding: 7px 15px 7px 13px; border-radius: 100px;
  box-shadow: 0 4px 14px -8px rgba(39,24,18,0.2);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sunrise); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,90,64,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(255,90,64,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,64,0); }
}

.hero__title { font-size: clamp(2.7rem, 6.6vw, 4.6rem); margin-top: 26px; }
.hero__title em {
  font-style: italic;
  background: var(--sunrise); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
}
.hero__lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 520px; margin-top: 24px; }

/* Waitlist form */
.waitlist { margin-top: 32px; max-width: 520px; }
.waitlist__row {
  display: flex; gap: 9px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 100px;
  padding: 6px 6px 6px 8px;
  box-shadow: 0 14px 40px -22px rgba(39,24,18,0.35);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.waitlist__row:focus-within { border-color: var(--sun-2); box-shadow: 0 14px 40px -18px rgba(255,90,64,0.45); }
.waitlist__input { flex: 1; border: 0; background: transparent; font-family: var(--font-body); font-size: 1rem; color: var(--ink); padding: 0 12px; min-width: 0; }
.waitlist__input::placeholder { color: var(--ink-faint); }
.waitlist__input:focus { outline: none; }
.waitlist__note { font-size: 0.86rem; color: var(--ink-faint); margin-top: 12px; padding-left: 18px; transition: color 0.25s var(--ease); }
.waitlist.is-success .waitlist__note { color: var(--c-event); font-weight: 600; }
.waitlist.is-error .waitlist__note { color: var(--c-pink); font-weight: 600; }
.waitlist .btn[disabled] { opacity: 0.6; cursor: default; transform: none; }

/* Honeypot: visually hidden, off-screen, kept out of the tab order. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.hero__badges { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--ink-soft);
  background: var(--bg-2); border: 1px solid var(--line);
  padding: 8px 15px; border-radius: 100px;
}
.pill svg { color: var(--ink-faint); }
.pill--award { color: var(--ink); border-color: rgba(255,90,64,0.32); background: linear-gradient(120deg, rgba(255,162,58,0.14), rgba(255,46,124,0.10)); }
.pill--award svg { color: var(--sun-2); }

/* ───────────────────────── Device frame (real screenshots) ───────────────────────── */
.device {
  width: 100%; max-width: 330px;
  background: #1b1411; border-radius: 50px; padding: 11px;
  box-shadow: 0 2px 2px rgba(255,255,255,0.16) inset, 0 40px 80px -32px rgba(39,24,18,0.55), 0 14px 30px -20px rgba(255,70,80,0.4);
}
.device__screen { border-radius: 39px; overflow: hidden; aspect-ratio: 1206 / 2622; background: #fff; }
.device__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.hero__device { position: relative; display: flex; justify-content: center; }
.device--float { position: relative; z-index: 1; animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(-0.5deg); } }
.device-glow { position: absolute; inset: 6% 12%; background: var(--sunrise); filter: blur(70px); opacity: 0.30; z-index: 0; border-radius: 50%; }

/* ───────────────────────── Showcase gallery ───────────────────────── */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 48px); align-items: start; }
.gallery__item { display: flex; flex-direction: column; align-items: center; }
.gallery__item .device { transition: transform 0.4s var(--ease); }
.gallery__item:hover .device { transform: translateY(-8px); }
.gallery figcaption { margin-top: 22px; text-align: center; color: var(--ink-soft); font-size: 0.98rem; max-width: 280px; }

/* ───────────────────────── Features ───────────────────────── */
.features { background: var(--bg-2); border-block: 1px solid var(--line); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -36px rgba(39,24,18,0.45); border-color: rgba(255,90,64,0.3); }
.card__icon {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(255,162,58,0.16), rgba(255,46,124,0.14));
  color: var(--sun-2); margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.32rem; margin-bottom: 9px; font-variation-settings: "opsz" 40, "SOFT" 40; }
.card p { font-size: 0.98rem; color: var(--ink-soft); }

/* Wide feature card: Dynamic Island Live Activity */
.card--wide {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 56px); align-items: center;
  padding: clamp(26px, 3vw, 40px);
}
.card--wide:hover { transform: none; }
.card--wide__text { max-width: 420px; }
.card--wide__visual {
  background: var(--sunrise);
  border-radius: 22px; padding: clamp(28px, 4vw, 48px);
  display: grid; place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}
.la {
  width: 100%; max-width: 372px;
  background: #0a0a0b; border-radius: 28px; padding: 16px 18px 15px;
  color: #fff; font-family: var(--font-body);
  box-shadow: 0 26px 50px -18px rgba(0,0,0,0.55);
}
.la__top { display: flex; align-items: center; justify-content: space-between; }
.la__dots { display: inline-flex; }
.la__dots i { width: 15px; height: 15px; border-radius: 50%; display: block; }
.la__dots i:first-child { background: #BF5AF2; }
.la__dots i:last-child { background: #FF9F0A; margin-left: -6px; }
.la__more { font-size: 0.8rem; font-weight: 500; color: #8E8E93; }
.la__title { text-align: center; font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; margin: 8px 0 16px; }
.la__bar { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.la__track { position: relative; flex: 1; height: 8px; border-radius: 100px; background: #2C2C2E; }
.la__fill { position: absolute; inset: 0 auto 0 0; width: 64%; border-radius: 100px; background: #FFD60A; }
.la__time { font-size: 0.82rem; font-weight: 600; color: #C7C7CC; font-variant-numeric: tabular-nums; }
.la__actions { display: flex; gap: 8px; }
.la__btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 0.82rem; font-weight: 600; color: #fff;
  background: #1C1C1E; border-radius: 13px; padding: 11px 8px; white-space: nowrap;
}
.la__btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.la__btn--done { background: rgba(255,214,10,0.16); color: #FFD60A; }

/* ───────────────────────── Story ───────────────────────── */
.story__inner { max-width: 980px; }
.story__head { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 26px; }
.story__body { max-width: 680px; }
.story__body p { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); margin-bottom: 18px; line-height: 1.55; }
.story__body strong { color: var(--ink); font-weight: 600; }
.story__source a { color: var(--sun-2); font-weight: 600; font-size: 1rem; border-bottom: 1px solid transparent; transition: border-color 0.2s var(--ease); }
.story__source a:hover { border-bottom-color: var(--sun-2); }

.stats { display: flex; flex-wrap: wrap; gap: clamp(28px, 6vw, 64px); margin-top: clamp(36px, 5vw, 56px); }
.stat dt { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3rem); font-weight: 600; line-height: 1;
  background: var(--sunrise); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variation-settings: "opsz" 144, "SOFT" 40; }
.stat dd { color: var(--ink-soft); font-size: 0.95rem; margin-top: 8px; max-width: 180px; }

.press { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 20px); margin-top: clamp(48px, 7vw, 80px); }
.press__card {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.press__card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -34px rgba(39,24,18,0.45); border-color: rgba(255,90,64,0.3); }
.press__card--award { border-color: rgba(255,90,64,0.3); background: linear-gradient(150deg, rgba(255,162,58,0.10), rgba(255,46,124,0.07)); }
.press__badge { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sun-2); }
.press__quote { font-family: var(--font-display); font-size: 1.18rem; line-height: 1.28; color: var(--ink); font-variation-settings: "opsz" 40, "SOFT" 40; flex: 1; }
.press__quote em { font-style: italic; }
.press__src { font-size: 0.88rem; font-weight: 600; color: var(--ink-soft); }

/* ───────────────────────── How it works ───────────────────────── */
.how { background: var(--bg-2); border-block: 1px solid var(--line); }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
.step { position: relative; padding-top: 30px; border-top: 2px solid var(--line); }
.step__num { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--sun-2); letter-spacing: 0.05em; }
.step h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 14px 0 10px; }
.step p { color: var(--ink-soft); font-size: 1.02rem; max-width: 320px; }
.step:nth-child(1) { border-top-color: var(--sun-1); }
.step:nth-child(2) { border-top-color: var(--sun-2); }
.step:nth-child(3) { border-top-color: var(--sun-3); }

/* ───────────────────────── CTA ───────────────────────── */
.cta { position: relative; text-align: center; overflow: hidden; }
.cta__glow { position: absolute; left: 50%; top: 40%; transform: translate(-50%,-50%); width: 80vw; max-width: 760px; aspect-ratio: 1; background: radial-gradient(circle, rgba(255,90,64,0.28), rgba(255,46,124,0.16) 42%, transparent 70%); filter: blur(30px); z-index: 0; }
.cta__inner { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; }
.cta__title { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.cta__sub { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--ink-soft); margin: 22px auto 0; max-width: 520px; }
.waitlist--lg { margin: 36px auto 0; }
.waitlist--lg .waitlist__row { padding: 7px 7px 7px 10px; }
.waitlist--lg .waitlist__input { font-size: 1.05rem; padding: 6px 12px; }
.waitlist--lg .btn { padding: 15px 28px; }
.waitlist--lg .waitlist__note { text-align: center; padding-left: 0; }

/* ───────────────────────── FAQ ───────────────────────── */
.faq__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.faq .section__head { margin-bottom: 0; }
.faq__list { display: flex; flex-direction: column; }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px; font-size: clamp(1.05rem, 1.6vw, 1.2rem); font-weight: 600;
  font-family: var(--font-display); font-variation-settings: "opsz" 40, "SOFT" 30;
  transition: color 0.2s var(--ease);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--sun-2); }
.qa__plus { position: relative; flex: none; width: 18px; height: 18px; }
.qa__plus::before, .qa__plus::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--sun-2); border-radius: 2px; transition: transform 0.3s var(--ease); }
.qa__plus::before { width: 16px; height: 2px; }
.qa__plus::after { width: 2px; height: 16px; }
.qa[open] .qa__plus::after { transform: translate(-50%,-50%) scaleY(0); }
.qa p { color: var(--ink-soft); font-size: 1rem; padding: 0 4px 22px; max-width: 560px; }

/* ───────────────────────── Legal (privacy / terms) ───────────────────────── */
.legal__inner { max-width: 760px; }
.legal__header { margin-bottom: clamp(34px, 5vw, 54px); }
.legal__back { display: inline-flex; align-items: center; gap: 7px; font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); transition: color 0.2s var(--ease); }
.legal__back:hover { color: var(--ink); }
.legal__title { font-size: clamp(2.1rem, 5vw, 3.3rem); margin-top: 12px; }
.legal .updated { color: var(--ink-faint); font-size: 0.95rem; margin-top: 14px; }
.legal__body > h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem); letter-spacing: -0.02em; line-height: 1.1;
  font-variation-settings: "opsz" 40, "SOFT" 40, "WONK" 0;
  margin-top: clamp(36px, 5vw, 52px); margin-bottom: 12px;
}
.legal__body p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 16px; max-width: 680px; }
.legal__body ul { margin: 6px 0 16px; padding-left: 1.3rem; max-width: 680px; }
.legal__body li { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 10px; }
.legal__body strong { color: var(--ink); font-weight: 600; }
.legal__body a { color: var(--sun-2); font-weight: 600; border-bottom: 1px solid transparent; transition: border-color 0.2s var(--ease); }
.legal__body a:hover { border-bottom-color: var(--sun-2); }

/* ───────────────────────── Footer ───────────────────────── */
.footer { background: var(--ink); color: #F3E3DA; padding-block: clamp(48px, 6vw, 72px) 28px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: flex-start; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer .brand__name { color: #fff; }
.footer__tag { color: rgba(243,227,218,0.65); font-size: 0.95rem; margin-top: 12px; max-width: 240px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.footer__links a { color: rgba(243,227,218,0.7); font-size: 0.95rem; font-weight: 500; transition: color 0.2s var(--ease); }
.footer__links a:hover { color: #fff; }
.footer__base { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; padding-top: 22px; font-size: 0.85rem; color: rgba(243,227,218,0.5); }

/* ───────────────────────── Reveal animation ───────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.in[data-reveal-delay="1"] { transition-delay: 0.08s; }
.reveal.in[data-reveal-delay="2"] { transition-delay: 0.16s; }
.reveal.in[data-reveal-delay="3"] { transition-delay: 0.24s; }
.reveal.in[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* ───────────────────────── Responsive ───────────────────────── */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__device { order: -1; margin-bottom: 8px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .press { grid-template-columns: 1fr; }
  .faq__inner { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .gallery { grid-template-columns: 1fr; gap: 44px; }
  .gallery__item .device { max-width: 300px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .steps { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .card--wide { grid-template-columns: 1fr; }
  .waitlist__row { flex-direction: column; padding: 10px; border-radius: 22px; }
  .waitlist__input { padding: 10px 12px; }
  .waitlist .btn { width: 100%; }
  .waitlist__note { padding-left: 4px; }
  .footer__inner { flex-direction: column; }
}

/* ───────────────────────── Reduced motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
