/* 1MoreRep — marketing homepage. Static, self-contained, no build step.
   Palette mirrors the app: warm paper, espresso ink, lightning-orange brand.
   Theme follows the OS via prefers-color-scheme (light default, dark variant below). */

:root {
  --paper: #f4f1ea;
  --paper-2: #efe9dd;
  --surface: #fbfaf6;
  --ink: #211f19;
  --ink-2: #4a463b;
  --muted: #6c685c;
  --faint: #9c978b;
  --line: #e4dfd2;
  --line-2: #d8d2c2;

  --brand: #e2553a;
  --brand-600: #cf4528;
  --brand-700: #b23a20;
  --brand-ink: #fff7f2;
  --brand-soft: #f6d9cf;

  /* semantic, theme-aware tokens (overridden in the dark block) */
  --card-strong: #ffffff;          /* elevated inner cards (phone, generator) */
  --brand-on-tint: var(--brand-700); /* brand text/icons sitting on a peach tint */
  --brand-tint: #fdeee6;           /* peach chip/badge fill */
  --brand-tint-2: #fdf2ee;         /* active-set fill */
  --brand-tint-3: #f7ddd2;         /* feature-icon gradient end */
  --brand-tint-border: #f3cdbe;
  --brand-tint-border-2: #f1cbbc;
  --eyebrow-border: #eec6ba;
  --green-tint: #e8f2ea;
  --hover-overlay: rgba(255, 255, 255, .6);
  --ghost-bg: rgba(255, 255, 255, .4);
  --chip-bg: var(--espresso);      /* step numbers, privacy icons */
  --chip-ink: var(--brand-ink);

  --espresso: #1c1a15;
  --espresso-2: #272319;

  --gold: #e0a23c;
  --green: #4f9d69;

  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(33, 31, 25, .06), 0 1px 3px rgba(33, 31, 25, .05);
  --shadow: 0 12px 30px -12px rgba(33, 31, 25, .18), 0 4px 10px -6px rgba(33, 31, 25, .12);
  --shadow-lg: 0 40px 80px -28px rgba(33, 31, 25, .42), 0 12px 30px -12px rgba(33, 31, 25, .22);
  --maxw: 1140px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", sans-serif;
}

/* ============ Dark theme (system preference) ============ */
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #17140f;
    --paper-2: #1d1a13;
    --surface: #221e17;
    --ink: #f3eee3;
    --ink-2: #d6cfc0;
    --muted: #a39c8b;
    --faint: #807a6a;
    --line: #332e23;
    --line-2: #443d2d;

    --brand-soft: rgba(226, 85, 58, .16);

    --card-strong: #2a251d;
    --brand-on-tint: #f3a18d;
    --brand-tint: rgba(226, 85, 58, .15);
    --brand-tint-2: rgba(226, 85, 58, .14);
    --brand-tint-3: rgba(226, 85, 58, .06);
    --brand-tint-border: rgba(226, 85, 58, .32);
    --brand-tint-border-2: rgba(226, 85, 58, .26);
    --eyebrow-border: rgba(226, 85, 58, .30);
    --green-tint: rgba(79, 157, 105, .18);
    --hover-overlay: rgba(255, 255, 255, .07);
    --ghost-bg: rgba(255, 255, 255, .04);
    --chip-bg: var(--brand);
    --chip-ink: #1b1206;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4), 0 1px 3px rgba(0, 0, 0, .3);
    --shadow: 0 14px 34px -14px rgba(0, 0, 0, .6), 0 6px 14px -8px rgba(0, 0, 0, .5);
    --shadow-lg: 0 44px 90px -30px rgba(0, 0, 0, .78), 0 14px 34px -14px rgba(0, 0, 0, .55);
  }

  /* keep the gamification band distinct from the (now dark) page */
  .dark { background: #100d09; border-block: 1px solid var(--line); }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.08; letter-spacing: -.022em; margin: 0; font-weight: 800; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--brand-on-tint);
  background: var(--brand-soft);
  border: 1px solid var(--eyebrow-border);
  padding: 6px 12px; border-radius: 999px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(226,85,58,.18); }

.section { padding: 92px 0; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 44px); }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 18px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--brand); --fg: var(--brand-ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-weight: 700; font-size: 15px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  background: var(--bg); color: var(--fg); cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
  box-shadow: 0 6px 16px -8px rgba(226,85,58,.6);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(226,85,58,.7); background: var(--brand-600); }
.btn:active { transform: translateY(0); }
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

.btn-ghost {
  --bg: transparent; --fg: var(--ink);
  border-color: var(--line-2); box-shadow: none; background: var(--ghost-bg);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--faint); box-shadow: var(--shadow-sm); }

.btn-light {
  --bg: var(--surface); --fg: var(--ink); box-shadow: var(--shadow);
}
.btn-light:hover { background: var(--card-strong); }

.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.header.scrolled { border-color: var(--line); background: color-mix(in srgb, var(--paper) 90%, transparent); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.02em; font-size: 19px; }
.brand .mark { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 4px 10px -3px rgba(226,85,58,.5); }
.brand b { font-weight: 800; }
.brand span { color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: 999px; color: var(--ink-2); font-weight: 600; font-size: 15px;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav-links a:hover { background: var(--hover-overlay); color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .signin { font-weight: 600; padding: 9px 8px; color: var(--ink-2); }
.nav-cta .signin:hover { color: var(--brand-on-tint); }

.menu-btn { display: none; }
.mobile-menu { display: none; }   /* hidden on desktop; the 680px query shows it when toggled */

/* ---------- Hero ---------- */
.hero { position: relative; padding: 64px 0 60px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 720px; z-index: -1;
  background:
    radial-gradient(46% 60% at 78% 18%, rgba(226,85,58,.20), transparent 70%),
    radial-gradient(40% 50% at 12% 8%, rgba(224,162,60,.16), transparent 68%);
  filter: blur(6px);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 6vw, 64px); margin: 22px 0 0; }
.hero h1 .hl { color: var(--brand); position: relative; white-space: nowrap; }
.hero-sub { margin-top: 22px; font-size: clamp(17px, 2.2vw, 20px); color: var(--ink-2); max-width: 520px; }
.hero-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 20px; color: var(--muted); font-size: 14.5px; font-weight: 600; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { color: var(--green); flex: none; }

/* ---------- Phone mockup ---------- */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: 300px; aspect-ratio: 300 / 614;
  background: linear-gradient(160deg, #2a261d, #15130e);
  border-radius: 44px; padding: 12px;
  box-shadow: var(--shadow-lg); border: 1px solid #3a3528;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .phone { animation: none; } }
.phone::after { /* notch */
  content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 24px; background: #15130e; border-radius: 0 0 16px 16px; z-index: 3;
}
.screen {
  position: relative; height: 100%; border-radius: 33px; overflow: hidden;
  background: var(--surface); display: flex; flex-direction: column;
}
.screen-top {
  padding: 16px 16px 12px; background: linear-gradient(180deg, var(--card-strong), var(--surface));
  border-bottom: 1px solid var(--line);
}
.s-row { display: flex; align-items: center; justify-content: space-between; }
.s-title { font-weight: 800; font-size: 16px; letter-spacing: -.01em; }
.s-sub { color: var(--faint); font-size: 11.5px; font-weight: 600; margin-top: 1px; }
.flame { display: inline-flex; align-items: center; gap: 5px; background: var(--brand-tint); color: var(--brand-on-tint); font-weight: 800; font-size: 13px; padding: 5px 10px; border-radius: 999px; border: 1px solid var(--brand-tint-border); }
.screen-body { padding: 14px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.ex-card { background: var(--card-strong); border: 1px solid var(--line); border-radius: 16px; padding: 13px; box-shadow: var(--shadow-sm); }
.ex-card .ex-name { font-size: 14.5px; font-weight: 800; margin: 0 0 9px; display: flex; align-items: center; justify-content: space-between; }
.ex-card .ex-name .pr { font-size: 10px; font-weight: 800; color: var(--brand-ink); background: var(--brand); padding: 3px 7px; border-radius: 999px; letter-spacing: .03em; }
.set { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 9px; padding: 7px 2px; font-size: 13px; border-top: 1px dashed var(--line); }
.set:first-of-type { border-top: 0; }
.set .n { width: 22px; height: 22px; border-radius: 7px; background: var(--paper-2); color: var(--muted); font-weight: 800; font-size: 11px; display: grid; place-items: center; }
.set .v { color: var(--ink-2); font-weight: 600; }
.set .v b { color: var(--ink); font-weight: 800; }
.set.done .tick { color: var(--green); }
.set.active { background: var(--brand-tint-2); margin: 0 -6px; padding: 7px 8px; border-radius: 10px; border-top-color: transparent; }
.set.active .n { background: var(--brand); color: #fff; }
.tick { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; color: var(--faint); }
.rest { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--brand-on-tint); background: var(--brand-tint); border: 1px solid var(--brand-tint-border); border-radius: 12px; padding: 9px; }
.rest .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }
.xp { margin-top: auto; background: var(--espresso); border-radius: 14px; padding: 12px 13px; color: #efe9dd; }
.xp-row { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 700; }
.xp .lvl { color: var(--gold); }
.xp-bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,.12); margin-top: 8px; overflow: hidden; }
.xp-bar i { display: block; height: 100%; width: 72%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--gold)); transition: width 1.3s var(--ease); }
.js .xp-bar i { width: 0; }
.js .xp-bar.fill i { width: 72%; }

/* floating accent cards */
.float { position: absolute; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 11px 13px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; }
.float .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.float .ic.ic-green { background: var(--green-tint); color: var(--green); }
.float .ic.ic-brand { background: var(--brand-tint); color: var(--brand-on-tint); }
.float small { display: block; font-size: 11px; font-weight: 600; color: var(--faint); }
.float-a { top: 40px; left: -28px; animation: floaty 6s ease-in-out infinite .4s; }
.float-b { bottom: 64px; right: -26px; animation: floaty 8s ease-in-out infinite .9s; }
@media (prefers-reduced-motion: reduce) { .float { animation: none !important; } }

/* ---------- Stat band ---------- */
.band { border-block: 1px solid var(--line); background: var(--paper-2); }
.band .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 30px; }
.stat { text-align: center; }
.stat b { display: block; font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; letter-spacing: -.02em; }
.stat span { color: var(--muted); font-size: 13.5px; font-weight: 600; }
.stat b .u { color: var(--brand); }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card .ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(145deg, var(--brand-tint), var(--brand-tint-3)); color: var(--brand-on-tint);
  border: 1px solid var(--brand-tint-border-2);
}
.card h3 { font-size: 18px; font-weight: 800; }
.card p { margin-top: 8px; color: var(--muted); font-size: 15px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.step .num {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--chip-bg); color: var(--chip-ink); font-weight: 800; font-size: 17px; margin-bottom: 16px;
}
.step h3 { font-size: 18px; }
.step p { margin-top: 8px; color: var(--muted); font-size: 15px; }

/* ---------- Split highlight ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-media { order: -1; }
.split h2 { font-size: clamp(26px, 3.8vw, 38px); }
.split .eyebrow { margin-bottom: 18px; }
.split p.lead { margin-top: 18px; color: var(--ink-2); font-size: 17px; }
.checks { margin-top: 22px; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); }
.checks .cb { flex: none; width: 24px; height: 24px; border-radius: 8px; background: var(--green-tint); color: var(--green); display: grid; place-items: center; margin-top: 1px; }

.media-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); }

/* generator mock */
.gen .g-prompt { display: flex; gap: 10px; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font-size: 14px; color: var(--ink-2); }
.gen .g-prompt .k { margin-left: auto; font-size: 11px; color: var(--faint); font-weight: 700; border: 1px solid var(--line-2); padding: 2px 7px; border-radius: 6px; }
.g-out { margin-top: 14px; display: grid; gap: 10px; }
.g-day { background: var(--card-strong); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 12px; }
.js .g-day { opacity: 0; transform: translateY(8px); }
.g-day .tag { font-size: 11px; font-weight: 800; color: var(--brand-on-tint); background: var(--brand-tint); border: 1px solid var(--brand-tint-border); padding: 4px 9px; border-radius: 999px; flex: none; }
.g-day b { font-size: 14px; }
.g-day span { color: var(--muted); font-size: 12.5px; }
.js .in-view .g-day { animation: rise .5s var(--ease) forwards; }
.in-view .g-day:nth-child(1) { animation-delay: .05s; }
.in-view .g-day:nth-child(2) { animation-delay: .18s; }
.in-view .g-day:nth-child(3) { animation-delay: .31s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Dark gamification section (always dark, both themes) ---------- */
.dark { background: var(--espresso); color: #ece6da; position: relative; overflow: hidden; }
.dark::before { content: ""; position: absolute; inset: auto -10% -40% 30%; height: 480px; background: radial-gradient(50% 60% at 50% 50%, rgba(226,85,58,.22), transparent 70%); }
.dark .eyebrow { background: rgba(226,85,58,.16); color: #f3b6a5; border-color: rgba(226,85,58,.3); }
.dark h2 { color: #fff; }
.dark p.lead { color: #c8c1b3; }
.dark .checks li { color: #d7d1c4; }
.dark .checks .cb { background: rgba(79,157,105,.18); }
.league {
  background: linear-gradient(170deg, var(--espresso-2), #1a1712);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-lg);
}
.league .lg-title { margin: 0 0 4px; font-size: 15px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 8px; }
.league .sub { color: #9a9485; font-size: 12.5px; font-weight: 600; margin-bottom: 16px; }
.rank { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px; }
.rank + .rank { margin-top: 6px; }
.rank .pos { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-weight: 800; font-size: 12px; background: rgba(255,255,255,.07); color: #cfc8ba; }
.rank .who { font-weight: 700; font-size: 14px; color: #ece6da; }
.rank .who small { display: block; color: #8c8678; font-weight: 600; font-size: 11.5px; }
.rank .pts { font-weight: 800; font-size: 14px; color: #fff; }
.rank.me { background: rgba(226,85,58,.14); border: 1px solid rgba(226,85,58,.32); }
.rank.me .pos { background: var(--brand); color: #fff; }
.rank.gold .pos { background: linear-gradient(145deg, #f2c25a, #d99a2e); color: #2a2008; }

/* ---------- Self-host / privacy ---------- */
.privacy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 8px; }
.pill-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: left; }
.pill-card .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--chip-bg); color: var(--chip-ink); margin-bottom: 14px; }
.pill-card h3 { font-size: 16.5px; }
.pill-card p { margin-top: 7px; color: var(--muted); font-size: 14px; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.q { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.q[open] { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.q summary { cursor: pointer; list-style: none; padding: 18px 20px; font-weight: 700; font-size: 16.5px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.q summary::-webkit-details-marker { display: none; }
.q summary .pm { flex: none; width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--brand-on-tint); transition: transform .2s var(--ease), background .2s var(--ease); }
.q[open] summary .pm { transform: rotate(45deg); background: var(--brand); color: #fff; border-color: var(--brand); }
.q .a { padding: 0 20px 18px; color: var(--muted); font-size: 15.5px; }
.q .a a { color: var(--brand-on-tint); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Final CTA ---------- */
.cta-band { padding: 30px 0 96px; }
.cta-card {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(150deg, var(--brand), var(--brand-700));
  color: var(--brand-ink); border-radius: var(--radius-lg); padding: 64px 28px;
  box-shadow: 0 30px 60px -24px rgba(178,58,32,.6);
}
.cta-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(40% 80% at 80% 0%, rgba(255,255,255,.18), transparent 60%); }
.cta-card h2 { position: relative; font-size: clamp(28px, 4.4vw, 44px); color: #fff; }
.cta-card p { position: relative; margin: 14px auto 0; max-width: 520px; color: #ffe6dc; font-size: 18px; }
.cta-card .hero-cta { position: relative; justify-content: center; margin-top: 30px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--paper-2); padding: 56px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.footer .brand { margin-bottom: 14px; }
.footer .tagline { color: var(--muted); font-size: 14.5px; max-width: 280px; }
.footer h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--faint); margin: 0 0 14px; font-weight: 800; }
.footer li { margin-bottom: 10px; }
.footer li a { color: var(--ink-2); font-size: 14.5px; font-weight: 600; }
.footer li a:hover { color: var(--brand-on-tint); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--faint); font-size: 13.5px; }
.footer-bottom .heart { color: var(--brand); }

/* ---------- Reveal animation ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in-view { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero h1 { font-size: clamp(34px, 9vw, 52px); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.rev .split-media { order: 0; }
  .features-grid, .steps, .privacy-grid { grid-template-columns: repeat(2, 1fr); }
  .band .wrap { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 70px 0; }
  .nav-links { display: none; }
  .nav-cta .signin { display: none; }
  .menu-btn {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px;
    border: 1px solid var(--line-2); background: var(--surface); cursor: pointer; color: var(--ink);
  }
  .mobile-menu { display: none; }
  .mobile-menu.open { display: block; padding: 8px 24px 20px; border-top: 1px solid var(--line); background: var(--paper); }
  .mobile-menu a { display: block; padding: 12px 6px; font-weight: 700; border-bottom: 1px solid var(--line); }
  .features-grid, .steps, .privacy-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .float { display: none; }            /* accent cards overlap the phone on narrow screens */
  .hero-cta .btn { flex: 1; }
}
@media (max-width: 420px) {
  .band .wrap { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
