/* ============================================================
   ReplayRobot — product site
   Local-first automation for Mac. Record once, runs forever,
   nothing leaves your machine. Clean, confident, friendly —
   "the iMovie of automation." Record-red signature over cool
   neutrals; Geist throughout. Light-committed, dark-aware.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300..800&family=Geist+Mono:wght@400;500&display=swap');

:root {
  --bg:        #f6f6f8;
  --surface:   #ffffff;
  --surface-2: #eeeef1;
  --ink:       #16171c;
  --muted:     #585c66;
  --faint:     #9498a2;
  --line:      rgba(22, 23, 28, 0.11);
  --line-soft: rgba(22, 23, 28, 0.055);

  --rec:       #e0352c;
  --rec-deep:  #bd2a22;
  --rec-soft:  rgba(224, 53, 44, 0.08);
  --ink-fill:  #16171c;   /* dark "your Mac" surfaces */
  --ok:        #2c9d6c;

  --radius:    16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow:    0 28px 64px -34px rgba(22, 23, 28, 0.5);
  --shadow-sm: 0 12px 30px -20px rgba(22, 23, 28, 0.4);

  --measure:   72rem;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --sans:      'Geist', system-ui, -apple-system, sans-serif;
  --mono:      'Geist Mono', ui-monospace, monospace;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0c0d10; --surface: #16181d; --surface-2: #1e212a;
    --ink: #eef0f5; --muted: #9aa1ad; --faint: #626b78;
    --line: rgba(255,255,255,0.1); --line-soft: rgba(255,255,255,0.05);
    --rec: #f2564f; --rec-deep: #f2564f; --rec-soft: rgba(242,86,79,0.13);
    --ink-fill: #05060a;
    --shadow: 0 28px 64px -34px rgba(0,0,0,0.75);
    --shadow-sm: 0 12px 30px -20px rgba(0,0,0,0.6);
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; min-height: 100vh; background: var(--bg); color: var(--muted);
  font-family: var(--sans); font-size: 1.0625rem; line-height: 1.6; letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--rec); color: #fff; }

h1, h2, h3 { color: var(--ink); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; text-wrap: balance; margin: 0; }
strong { color: var(--ink); font-weight: 600; }
.rec-word { color: var(--rec); }

.wrap { width: 100%; max-width: var(--measure); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--rec-deep); margin: 0 0 1.1rem;
}
.eyebrow .d { width: 8px; height: 8px; border-radius: 50%; background: var(--rec); }
.sec-head { max-width: 42rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 4.6vw, 3rem); margin-bottom: 1rem; }
.sec-head p { font-size: 1.15rem; margin: 0; }

/* ── Buttons ─────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.72rem 1.35rem; border: 0; border-radius: 999px; font-weight: 600; font-size: 0.96rem; letter-spacing: -0.01em; white-space: nowrap; cursor: pointer; transition: background 0.16s var(--ease), color 0.16s var(--ease), box-shadow 0.16s var(--ease), transform 0.12s var(--ease); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--rec); color: #fff; box-shadow: 0 4px 16px -6px var(--rec-deep); }
.btn-primary:hover { background: var(--rec-deep); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { background: color-mix(in oklab, var(--ink) 5%, transparent); box-shadow: inset 0 0 0 1.5px color-mix(in oklab, var(--ink) 30%, transparent); }
.btn-lg { padding: 0.92rem 1.75rem; font-size: 1.02rem; }
.btn .apple { width: 17px; height: 17px; }

/* ── Nav ─────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 50; transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease); border-bottom: 1px solid transparent; }
.nav.scrolled { background: color-mix(in oklab, var(--bg) 82%, transparent); backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3); border-bottom-color: var(--line-soft); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 700; font-size: 1.12rem; color: var(--ink); letter-spacing: -0.02em; }
.brand .mark { width: 28px; height: 28px; flex: none; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-size: 0.94rem; font-weight: 500; color: var(--muted); transition: color 0.18s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s ease; }
.nav-toggle span + span { margin-top: 5px; }

/* ── Hero ────────────────────────────────── */
.hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5.5rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.tag { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); background: var(--surface); border: 1px solid var(--line); padding: 0.35rem 0.75rem; border-radius: 999px; margin-bottom: 1.6rem; box-shadow: var(--shadow-sm); }
.tag .d { width: 7px; height: 7px; border-radius: 50%; background: var(--rec); }
.hero h1 { font-size: clamp(2.9rem, 7vw, 5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 0.98; margin-bottom: 1.4rem; }
.hero .lead { font-size: clamp(1.12rem, 2.1vw, 1.35rem); line-height: 1.5; color: var(--muted); max-width: 33rem; margin-bottom: 2.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-trust { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.3rem; font-size: 0.85rem; color: var(--muted); }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-trust svg { width: 15px; height: 15px; color: var(--ok); flex: none; }

/* app-window demo (auto-replaying) */
.demo { border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }
.demo-bar { display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 0.95rem; background: var(--surface-2); border-bottom: 1px solid var(--line-soft); }
.demo-bar .lights { display: flex; gap: 0.4rem; }
.demo-bar .lights i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.demo-bar .lights i:nth-child(1){ background:#ec6a5e; } .demo-bar .lights i:nth-child(2){ background:#f4bf50; } .demo-bar .lights i:nth-child(3){ background:#61c554; }
.demo-bar .loc { margin-left: auto; font-family: var(--mono); font-size: 0.68rem; color: var(--faint); display: inline-flex; align-items: center; gap: 0.35rem; }
.demo-bar .loc svg { width: 12px; height: 12px; }
.demo-body { padding: 1.4rem 1.5rem 1.6rem; }
.demo-title { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.2rem; }
.demo-title .rd { width: 11px; height: 11px; border-radius: 50%; background: var(--rec); box-shadow: 0 0 0 0 var(--rec); animation: rrpulse 2.6s ease-out infinite; }
.demo-title b { color: var(--ink); font-size: 0.95rem; font-weight: 600; }
.demo-title .tag2 { margin-left: auto; font-family: var(--mono); font-size: 0.66rem; color: var(--ok); background: color-mix(in oklab, var(--ok) 14%, transparent); padding: 0.2rem 0.5rem; border-radius: 6px; }
.demo-steps { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.demo-steps .s { display: flex; align-items: center; gap: 0.75rem; padding: 0.72rem 0.9rem; border-bottom: 1px solid var(--line-soft); font-size: 0.9rem; color: var(--muted); }
.demo-steps .s:last-child { border-bottom: 0; }
.demo-steps .s .n { font-family: var(--mono); font-size: 0.72rem; color: var(--faint); width: 1rem; flex: none; }
.demo-steps .s .app { margin-left: auto; font-family: var(--mono); font-size: 0.66rem; color: var(--faint); background: var(--surface-2); padding: 0.18rem 0.45rem; border-radius: 6px; }
.demo-steps .s .tick { margin-left: auto; color: var(--ok); opacity: 0; transition: opacity 0.2s ease; }
.demo-steps .s.done { color: var(--ink); background: color-mix(in oklab, var(--ok) 8%, transparent); }
.demo-steps .s.done .app { display: none; }
.demo-steps .s.done .tick { opacity: 1; }
.demo-steps .s.active { color: var(--ink); background: var(--rec-soft); }
.demo-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.1rem; font-size: 0.82rem; }
.demo-foot .done-lbl { color: var(--ok); font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; }
.demo-foot .done-lbl svg { width: 15px; height: 15px; }
.demo-foot .never { font-family: var(--mono); font-size: 0.7rem; color: var(--faint); }

/* ── Cloud contrast ──────────────────────── */
.versus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.vcard { border-radius: var(--radius); padding: 1.7rem 1.7rem 1.8rem; border: 1px solid var(--line); background: var(--surface); }
.vcard.them { background: var(--surface-2); }
.vcard.us { border-color: var(--rec); background: var(--rec-soft); }
.vcard .vh { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.1rem; }
.vcard.us .vh { color: var(--rec-deep); }
.vcard ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.vcard li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.96rem; }
.vcard li svg { flex: none; width: 17px; height: 17px; margin-top: 0.15rem; }
.vcard.them li svg { color: var(--faint); }
.vcard.us li { color: var(--ink); }
.vcard.us li svg { color: var(--rec); }

/* ── How it works ────────────────────────── */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2.4rem); counter-reset: st; }
.st3 { position: relative; padding-top: 2.6rem; }
.st3::before { counter-increment: st; content: counter(st, decimal-leading-zero); position: absolute; top: 0; left: 0; font-family: var(--mono); font-size: 0.82rem; font-weight: 500; color: var(--rec-deep); }
.st3 .verb { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); display: block; margin-bottom: 0.8rem; }
.st3 h3 { font-size: clamp(1.4rem, 2.4vw, 1.7rem); margin-bottom: 0.55rem; }
.st3 p { margin: 0; font-size: 1rem; }

/* ── Local / moat centerpiece ────────────── */
.vault { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink-fill); color: #f2f3f7; padding: clamp(2.5rem, 6vw, 4.5rem); box-shadow: var(--shadow); }
.vault .eyebrow { color: #ff8b84; }
.vault h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); max-width: 20ch; }
.vault h2 .rec-word { color: #ff8b84; }
.vault p { color: color-mix(in oklab, #f2f3f7 78%, transparent); max-width: 46ch; margin: 1.1rem 0 0; font-size: 1.08rem; }
.vault .cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 2.6rem; }
.vault .col h4 { font-size: 0.98rem; font-weight: 600; color: #fff; margin: 0 0 0.4rem; display: flex; align-items: center; gap: 0.5rem; }
.vault .col h4 svg { width: 17px; height: 17px; color: #ff8b84; }
.vault .col p { margin: 0; font-size: 0.92rem; }
.vault .badge { position: absolute; top: clamp(2.5rem,6vw,4.5rem); right: clamp(2rem,5vw,4rem); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: #ff8b84; display: inline-flex; align-items: center; gap: 0.4rem; }
.vault .badge svg { width: 13px; height: 13px; }

/* ── One button (simplicity) ─────────────── */
.simple-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.bigrec { display: grid; place-items: center; }
.bigrec .btnface { width: clamp(150px, 24vw, 190px); height: clamp(150px, 24vw, 190px); border-radius: 50%; background: var(--rec); box-shadow: 0 20px 44px -16px var(--rec-deep), inset 0 0 0 10px var(--surface), inset 0 0 0 11px var(--rec); display: grid; place-items: center; }
.bigrec .btnface .core { width: 56px; height: 56px; border-radius: 15px; background: #fff; }
.simple-copy h2 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); margin-bottom: 1rem; }
.simple-copy p { font-size: 1.1rem; margin: 0 0 1rem; max-width: 40ch; }
.simple-copy .nolist { list-style: none; margin: 1.4rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.simple-copy .nolist li { font-family: var(--mono); font-size: 0.78rem; color: var(--muted); background: var(--surface); border: 1px solid var(--line); padding: 0.4rem 0.8rem; border-radius: 999px; }
.simple-copy .nolist li s { color: var(--faint); }

/* ── By-the-numbers strip (dark, hero'd stats) ── */
.numbers { background: var(--ink-fill); border-radius: var(--radius-lg); padding: clamp(2.25rem, 5vw, 3.4rem) clamp(1.5rem, 4vw, 3rem); box-shadow: var(--shadow); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem 1rem; }
.stat { text-align: center; }
.stat .big { font-size: clamp(2.7rem, 6vw, 4.1rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--rec); }
.stat .lab { margin-top: 0.7rem; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: color-mix(in oklab, #f2f3f7 56%, transparent); line-height: 1.45; }
@media (max-width: 600px) { .numbers-grid { grid-template-columns: 1fr 1fr; gap: 1.9rem 1rem; } }

/* ── Use cases (bento) ───────────────────── */
.uses { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.use { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.5rem 1.6rem; transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease); display: flex; flex-direction: column; }
.use:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.use.wide { grid-column: span 2; }
.use.dark { background: var(--ink-fill); border-color: transparent; color: color-mix(in oklab, #f2f3f7 76%, transparent); }
.use.dark b { color: #fff; }
.use .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--rec-soft); color: var(--rec); display: grid; place-items: center; margin-bottom: 1rem; }
.use.dark .ic { background: rgba(224,53,44,0.18); color: #ff8b84; }
.use .ic svg { width: 21px; height: 21px; }
.use b { color: var(--ink); font-size: 1.08rem; display: block; margin-bottom: 0.3rem; }
.use span { font-size: 0.92rem; }
.use .kw { color: var(--rec); }
.use.dark .kw { color: #ff8b84; }

/* ── Vision teaser ───────────────────────── */
.vision { text-align: center; max-width: 40rem; margin-inline: auto; }
.vision .eyebrow { justify-content: center; }
.vision h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.vision p { margin: 1rem auto 0; font-size: 1.1rem; }

/* ── CTA ─────────────────────────────────── */
.cta { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: radial-gradient(120% 140% at 10% -30%, var(--rec-soft), var(--surface) 55%); border: 1px solid var(--line); padding: clamp(2.75rem, 6vw, 5rem); text-align: center; box-shadow: var(--shadow-sm); }
.cta .mark-lg { display: block; width: 60px; margin: 0 auto 1.4rem; }
.cta h2 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); margin-bottom: 1rem; }
.cta p { max-width: 34rem; margin: 0 auto 2rem; font-size: 1.15rem; }
.cta .hero-actions { justify-content: center; }
.cta .note { margin-top: 1.4rem; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--muted); }

/* platform picker / waitlist */
.platforms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; max-width: 46rem; margin: 1.9rem auto 0; }
.plat { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 1.15rem 0.9rem 1.2rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.plat.available { border-color: var(--rec); box-shadow: 0 0 0 1px var(--rec); }
.plat .picon { width: 26px; height: 26px; color: var(--ink); }
.plat .pname { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.plat .pstatus { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: 999px; }
.plat .pstatus.on { color: var(--ok); background: color-mix(in oklab, var(--ok) 15%, transparent); }
.plat .pstatus.soon { color: var(--muted); background: var(--surface-2); }
.plat .paction { margin-top: 0.15rem; border: 0; background: transparent; font-family: var(--sans); font-size: 0.82rem; font-weight: 600; color: var(--rec-deep); cursor: pointer; }
.plat .paction:hover { text-decoration: underline; }
@media (max-width: 620px) { .platforms { grid-template-columns: 1fr 1fr; } }

/* ── Waitlist modal ──────────────────────── */
.wl { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1.25rem; }
.wl[hidden] { display: none; }
.wl-back { position: absolute; inset: 0; background: color-mix(in oklab, var(--ink) 52%, transparent); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.wl-card { position: relative; z-index: 1; width: 100%; max-width: 24rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 2rem 1.9rem 1.9rem; text-align: center; }
.wl-x { position: absolute; top: 0.85rem; right: 0.85rem; width: 30px; height: 30px; border: 0; background: transparent; color: var(--faint); cursor: pointer; display: grid; place-items: center; border-radius: 8px; }
.wl-x:hover { background: var(--surface-2); color: var(--ink); }
.wl-x svg { width: 17px; height: 17px; }
.wl-mark { display: block; width: 40px; margin: 0 auto 1rem; color: var(--ink); }
.wl-card h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.wl-sub { font-size: 0.95rem; margin: 0 0 1.3rem; }
.wl-sub b { color: var(--ink); }
#wlForm { display: flex; flex-direction: column; gap: 0.6rem; }
#wlEmail { width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--line); border-radius: 11px; background: var(--bg); color: var(--ink); font-family: inherit; font-size: 1rem; }
#wlEmail::placeholder { color: var(--faint); }
#wlEmail:focus { outline: 2px solid var(--rec); outline-offset: 1px; border-color: transparent; }
#wlForm .btn { width: 100%; }
.wl-msg { margin: 1rem 0 0; font-size: 0.92rem; font-weight: 500; }
.wl-msg.ok { color: var(--ok); }
.wl-msg.err { color: var(--rec-deep); }
@media (prefers-reduced-motion: no-preference) {
  .wl-card { animation: wlin 0.24s var(--ease); }
  @keyframes wlin { from { opacity: 0; transform: translateY(10px) scale(0.98); } }
}

/* ── FAQ ─────────────────────────────────── */
.faq { max-width: 48rem; margin-inline: auto; }
.q { border-bottom: 1px solid var(--line); }
.q summary { cursor: pointer; list-style: none; padding: 1.3rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.q summary::-webkit-details-marker { display: none; }
.q summary .plus { flex: none; width: 20px; height: 20px; position: relative; transition: transform 0.3s var(--ease); }
.q summary .plus::before, .q summary .plus::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--rec); }
.q summary .plus::before { width: 13px; height: 2px; } .q summary .plus::after { width: 2px; height: 13px; }
.q[open] summary .plus { transform: rotate(135deg); }
.q .a { padding: 0 0 1.4rem; max-width: 42rem; font-size: 1rem; }

/* ── Footer ──────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding-block: clamp(2.75rem, 5vw, 3.5rem) 2.5rem; margin-top: clamp(3rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2.5rem; }
.footer .brand { margin-bottom: 1rem; }
.footer-blurb { max-width: 24rem; font-size: 0.94rem; margin: 0; }
.foot-col h4 { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin: 0 0 1rem; font-weight: 500; }
.foot-col a { display: block; font-size: 0.94rem; color: var(--muted); padding: 0.3rem 0; transition: color 0.18s ease; }
.foot-col a:hover { color: var(--rec-deep); }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); font-size: 0.85rem; color: var(--faint); }

/* ── Motion ──────────────────────────────── */
@keyframes rrpulse { 0% { box-shadow: 0 0 0 0 var(--rec-soft); } 60% { box-shadow: 0 0 0 9px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
.hero [data-load] { opacity: 0; transform: translateY(16px); animation: rise 0.9s var(--ease) forwards; }
.hero [data-load="1"]{animation-delay:.05s}.hero [data-load="2"]{animation-delay:.14s}.hero [data-load="3"]{animation-delay:.23s}.hero [data-load="4"]{animation-delay:.32s}.hero [data-load="5"]{animation-delay:.28s}
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero .demo { max-width: 32rem; }
  .versus-grid { grid-template-columns: 1fr; }
  .steps3 { grid-template-columns: 1fr; gap: 2rem; }
  .vault .cols { grid-template-columns: 1fr; gap: 1.3rem; }
  .simple-grid { grid-template-columns: 1fr; }
  .uses { grid-template-columns: repeat(2, 1fr); }
  .use.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 0; padding: 0.5rem 1.25rem 1.25rem; background: color-mix(in oklab, var(--bg) 96%, transparent); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
  .nav.open .nav-links a { padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft); width: 100%; }
  .nav.open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2){ opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
  .uses { grid-template-columns: 1fr; }
  .use.wide { grid-column: span 1; }
}
