/* ============================================================
   Walking Closet — Marketing site styles
   Design system mirrors the mobile app's tokens:
   lime #DCF558 hero accent · sky-blue editorial surfaces ·
   Inter (thin display + Black ALL-CAPS punch) · pill-only buttons.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand & accent (light track) */
  --lime: #DCF558;
  --lime-pressed: #C2DA3D;
  --aloe: #c1fbd4;
  --pistachio: #d4f9e0;

  /* Sky family — editorial hero surfaces */
  --sky-10: #D9EAF1;
  --sky-20: #A8D0DC;
  --sky-30: #7CB5C6;

  /* Surfaces */
  --night: #000000;
  --night-elev: #0a0a0a;
  --surface-dark: #1e2c31;
  --white: #ffffff;
  --cream: #fbfbf5;
  --hairline: #e4e4e7;
  --hairline-dark: #1e2c31;

  /* Shade ladder */
  --shade-30: #d4d4d8;
  --shade-40: #a1a1aa;
  --shade-50: #71717a;
  --shade-60: #52525b;
  --shade-70: #3f3f46;

  /* Text */
  --ink: #0a0a0a;
  --on-dark: #ffffff;

  /* Layout */
  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --pill: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 10px 30px rgba(15,40,49,.10);
  --shadow-lg: 0 30px 70px rgba(15,40,49,.18);

  --ease: cubic-bezier(.22,.61,.36,1);

  font-synthesis: none;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }

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

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-30);
}
.eyebrow.on-dark { color: var(--lime); }
.eyebrow.muted { color: var(--shade-50); }

/* ALL-CAPS Inter Black — the brand punch, reserved for hero moments */
.punch {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0;
}
.h-hero { font-size: clamp(2.7rem, 7.5vw, 5.2rem); }
.h-section {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--shade-60); line-height: 1.6; }
.section-head { max-width: 640px; }
.section-head .lead { margin-top: 16px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.lime-ink { color: #000; }
.accent-underline { position: relative; white-space: nowrap; }
.accent-underline::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 0.08em; height: 0.34em;
  background: var(--lime); z-index: -1; border-radius: 2px;
}

/* ---------- Buttons (pill only) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--pill);
  font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lime { background: var(--lime); color: #000; box-shadow: 0 8px 24px rgba(220,245,88,.45); }
.btn-lime:hover { background: var(--lime-pressed); box-shadow: 0 10px 30px rgba(220,245,88,.55); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--shade-70); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-dark { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.btn-outline-dark:hover { background: #fff; color: #000; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-arrow svg { transition: transform .2s var(--ease); }
.btn-arrow:hover svg { transform: translateX(3px); }

.uppercase-btn { text-transform: uppercase; letter-spacing: 0.06em; font-weight: 800; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,251,245,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--hairline); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; font-size: 1.12rem; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--lime);
  display: grid; place-items: center; flex: none; box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.brand .mark svg { width: 18px; height: 18px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; color: var(--shade-60); font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 12px; }
.nav-toggle span { display:block; width:20px; height:2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -8%, #eaf4f8 0%, rgba(234,244,248,0) 60%),
    linear-gradient(180deg, var(--sky-10) 0%, #e8f1f4 52%, var(--cream) 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
  padding: 72px 0 88px;
}
.hero-copy { max-width: 600px; }
.hero h1 { margin: 18px 0 0; color: #06141a; }
.hero .lead { margin-top: 22px; max-width: 520px; }

/* Waitlist form */
.waitlist { margin-top: 30px; max-width: 480px; }
.waitlist-form { display: flex; gap: 10px; background: #fff; padding: 7px 7px 7px 18px; border-radius: var(--pill); box-shadow: var(--shadow-md); border: 1px solid var(--hairline); }
.waitlist-form input {
  flex: 1; min-width: 0; border: none; outline: none; background: transparent;
  font-size: 15px; color: var(--ink);
}
.waitlist-form input::placeholder { color: var(--shade-50); }
.waitlist-note { margin-top: 12px; font-size: 13.5px; color: var(--shade-50); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.store-soon { display: inline-flex; align-items: center; gap: 7px; }
.store-soon svg { width: 16px; height: 16px; opacity: .7; }
.waitlist-success {
  display: none; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--hairline);
  border-radius: var(--radius-md); padding: 16px 18px; box-shadow: var(--shadow-md); max-width: 480px; margin-top: 30px;
}
.waitlist-success.show { display: flex; }
.waitlist-success .tick { width: 34px; height: 34px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; flex: none; }

.hero-trust { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.avatars { display: flex; }
.avatars img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--cream); object-fit: cover; margin-left: -10px; }
.avatars img:first-child { margin-left: 0; }
.hero-trust p { font-size: 13.5px; color: var(--shade-60); }
.hero-trust b { color: var(--ink); }

/* Hero phones */
.hero-visual { position: relative; min-height: 560px; display: flex; align-items: center; justify-content: center; }
.phone-pair { position: relative; width: 100%; height: 100%; display: flex; justify-content: center; }
.phone-pair .phone-back { position: absolute; top: 38px; left: 50%; transform: translateX(-86%) rotate(-7deg); z-index: 1; }
.phone-pair .phone-front { position: relative; z-index: 2; transform: translateX(14%) rotate(3deg); }

/* Floating accent chips */
.float-chip {
  position: absolute; z-index: 5; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 12px 14px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(0,0,0,.04);
}
.float-chip .ico { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.float-chip .t { font-size: 13.5px; font-weight: 700; line-height: 1.1; }
.float-chip .s { font-size: 11.5px; color: var(--shade-50); margin-top: 2px; }
.float-chip.fc-ai { top: 34px; right: -6px; }
.float-chip.fc-swap { bottom: 60px; left: -4px; }
.float-chip.fc-match { bottom: 8px; right: 26px; }

/* ============================================================
   PHONE MOCKUP (shared)
   ============================================================ */
.phone {
  --w: 270px;
  width: var(--w); height: calc(var(--w) * 2.04);
  background: #0b0b0c; border-radius: 42px; padding: 9px;
  box-shadow: 0 2px 4px rgba(0,0,0,.4), 0 30px 60px rgba(15,40,49,.28), inset 0 0 0 2px #1d1d20;
  flex: none;
}
.phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: var(--sky-10); display: flex; flex-direction: column;
}
.notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 78px; height: 22px; background: #0b0b0c; border-radius: var(--pill); z-index: 20; }
.statusbar { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px 2px; font-size: 11px; font-weight: 700; color: #06141a; z-index: 15; }
.statusbar .sb-icons { display: flex; gap: 4px; align-items: center; }
.statusbar .sb-icons i { display:block; width: 16px; height: 9px; border: 1.5px solid #06141a; border-radius: 3px; opacity:.85; }
.statusbar .sb-icons b { display:block; width: 14px; height: 9px; border-radius: 2px; background:#06141a; opacity:.85; }
.screen-pad { padding: 6px 16px 16px; flex: 1; min-height: 0; display: flex; flex-direction: column; }

/* mockup primitives */
.m-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sky-30); }
.m-title { font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: .96; color: #06141a; }
.m-body { font-size: 11px; color: var(--shade-60); line-height: 1.45; }
.m-photo { position: relative; border-radius: 18px; overflow: hidden; background: var(--sky-20); }
.m-photo img { width: 100%; height: 100%; object-fit: cover; }
.scribble {
  position: absolute; background: var(--lime); color: #000; font-weight: 900; font-size: 8.5px;
  letter-spacing: .1em; padding: 4px 8px; border-radius: 5px; box-shadow: 0 4px 10px rgba(0,0,0,.14);
}
.m-pill {
  display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%;
  background: var(--lime); color: #000; font-weight: 800; font-size: 11.5px; letter-spacing: .04em;
  text-transform: uppercase; padding: 12px; border-radius: var(--pill);
}
.m-pill.ink { background: #0a0a0a; color: #fff; }
.m-pill.outline { background: #fff; color: #000; border: 1px solid #0a0a0a; }
.m-field {
  display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--hairline);
  border-radius: 12px; padding: 11px 12px; font-size: 11.5px; color: var(--shade-50);
}
.m-field .dot { width: 13px; height: 13px; border-radius: 50%; border: 1.5px solid var(--shade-40); flex: none; }
.m-dots { display: flex; gap: 5px; align-items: center; }
.m-dots span { width: 6px; height: 6px; border-radius: var(--pill); background: var(--sky-20); }
.m-dots span.on { width: 20px; background: #0a0a0a; }

/* Home feed mock */
.m-screen-light { background: var(--cream); }
.m-greet { font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; color:#06141a; font-size: 16px; }
.m-search { display:flex; align-items:center; gap:7px; background:#fff; border:1px solid var(--hairline); border-radius: var(--pill); padding: 9px 13px; font-size: 11px; color: var(--shade-50); }
.m-chips { display:flex; gap:6px; overflow:hidden; }
.m-chip { font-size:10px; font-weight:600; padding:6px 11px; border-radius: var(--pill); background:#fff; border:1px solid var(--hairline); color: var(--shade-60); white-space:nowrap; }
.m-chip.on { background:#0a0a0a; color:#fff; border-color:#0a0a0a; }
.m-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.m-card { background:#fff; border-radius:14px; overflow:hidden; border:1px solid var(--hairline); }
.m-card .ph { aspect-ratio: 1/1; background: var(--sky-20); position: relative; }
.m-card .ph img { width:100%;height:100%;object-fit:cover; }
.m-card .heart { position:absolute; top:6px; right:6px; width:20px;height:20px;border-radius:50%;background:rgba(255,255,255,.9); display:grid;place-items:center; font-size:10px; }
.m-card .meta { padding: 7px 8px 9px; }
.m-card .meta .nm { font-size:10.5px; font-weight:700; color:#06141a; line-height:1.15; }
.m-card .meta .sub { font-size:9px; color: var(--shade-50); margin-top:2px; }
.m-promo { grid-column: 1 / -1; background: var(--lime); border-radius:14px; padding:11px 12px; display:flex; align-items:center; gap:10px; }
.m-promo .ico { width:26px;height:26px;border-radius:8px;background:rgba(0,0,0,.12); display:grid;place-items:center; font-size:13px; }
.m-promo .pt { font-weight:900; text-transform:uppercase; font-size:11px; letter-spacing:-.01em; color:#000; }
.m-promo .ps { font-size:9px; color: rgba(0,0,0,.62); margin-top:1px; }

/* AI scan mock */
.m-ai-banner { display:flex; align-items:center; gap:8px; background: var(--pistachio); border:1px solid #bfeccb; border-radius:11px; padding:9px 11px; }
.m-ai-banner .s { font-size:9.5px; color:#2f6b45; line-height:1.3; }
.m-ai-banner .b { font-weight:800; color:#1f5132; }
.m-photo-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:6px; }
.m-photo-grid .pg { aspect-ratio:1/1; border-radius:9px; overflow:hidden; background:var(--sky-20); position:relative; }
.m-photo-grid .pg img{width:100%;height:100%;object-fit:cover;}
.m-photo-grid .pg.add { background:#fff; border:1.4px dashed var(--shade-40); display:grid; place-items:center; color:var(--shade-40); font-size:16px; }
.m-photo-grid .pg .scan { position:absolute; inset:0; background:linear-gradient(180deg, rgba(220,245,88,0) 0%, rgba(220,245,88,.55) 100%); }
.m-label { font-size:9px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--shade-50); display:flex; align-items:center; gap:6px; }
.ai-pill { background: var(--aloe); color:#1f5132; font-size:8px; font-weight:800; letter-spacing:.04em; padding:2px 6px; border-radius: var(--pill); text-transform:uppercase; }
.m-input-val { background:#fff; border:1px solid var(--hairline); border-radius:10px; padding:9px 11px; font-size:11px; font-weight:600; color:#06141a; }
.m-tagrow { display:flex; gap:5px; flex-wrap:wrap; }
.m-tag { font-size:9px; font-weight:600; background:var(--sky-10); border:1px solid var(--sky-20); color:#2c5562; padding:4px 9px; border-radius:var(--pill); }
.m-tag.cat-on { background:#0a0a0a; color:#fff; border-color:#0a0a0a; }

.m-meter { height:4px; border-radius:2px; background: var(--shade-30); overflow:hidden; }
.m-meter > i { display:block; height:100%; width:100%; background: var(--lime); border-radius:2px; }
.m-check { display:flex; align-items:flex-start; gap:8px; }
.m-check .box { width:15px;height:15px;border-radius:4px;background:#0a0a0a;color:#fff;display:grid;place-items:center;font-size:9px; flex:none; }
.m-check .tx { font-size:9px; color: var(--shade-60); line-height:1.35; }
.m-divider { display:flex; align-items:center; gap:8px; color:var(--shade-50); font-size:9px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
.m-divider::before, .m-divider::after { content:""; height:1px; background:var(--hairline); flex:1; }
.m-backbtn { position:absolute; top:9px; left:9px; width:26px;height:26px;border-radius:50%;background:rgba(0,0,0,.5); display:grid;place-items:center; color:#fff; font-size:12px; z-index:3; }

/* ============================================================
   CATEGORY MARQUEE
   ============================================================ */
.marquee { background: var(--white); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 22px 0; overflow: hidden; }
.marquee-label { text-align:center; font-size:12px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color: var(--shade-50); margin-bottom: 16px; }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: scrollx 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.cat-tag { display:inline-flex; align-items:center; gap:8px; font-size:15px; font-weight:600; color: var(--shade-60); padding: 8px 18px; border-radius: var(--pill); background: var(--cream); border:1px solid var(--hairline); }
.cat-tag .d { width:7px;height:7px;border-radius:50%; background: var(--sky-30); }
.cat-tag:nth-child(3n) .d { background: var(--lime-pressed); }
.cat-tag:nth-child(3n+1) .d { background: var(--aloe); }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.section { padding: 96px 0; }
.section.tight { padding: 76px 0; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-sky { background: linear-gradient(180deg, #eaf3f6 0%, var(--sky-10) 100%); }

/* Features grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.feature {
  background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  padding: 28px; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .ficon { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; }
.feature h3 { font-size: 1.18rem; font-weight: 700; }
.feature p { margin-top: 9px; color: var(--shade-60); font-size: 15px; }
.fi-lime { background: var(--lime); }
.fi-sky { background: var(--sky-10); }
.fi-aloe { background: var(--aloe); }
.feature .ficon svg { width: 24px; height: 24px; }

/* How it works */
.steps { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; margin-top: 54px; }
.step { display: flex; gap: 20px; padding: 22px 0; border-top: 1px solid var(--hairline); }
.step:first-child { border-top: none; }
.step .num { font-weight: 900; font-size: 14px; width: 42px; height: 42px; flex: none; border-radius: 50%; background: #0a0a0a; color: #fff; display: grid; place-items: center; }
.step h3 { font-size: 1.22rem; font-weight: 700; }
.step p { margin-top: 7px; color: var(--shade-60); font-size: 15px; }
.steps-visual { display: flex; justify-content: center; }

/* Dark AI spotlight */
.spotlight { background: radial-gradient(900px 500px at 20% 0%, #12222a 0%, var(--night) 55%); color: var(--on-dark); overflow: hidden; }
.spotlight .container { position: relative; }
.spotlight-grid { display: grid; grid-template-columns: 1fr 0.82fr; gap: 48px; align-items: center; }
.spotlight h2 { color: #fff; margin-top: 18px; }
.spotlight .lead { color: rgba(255,255,255,.72); }
.spotlight-list { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.spotlight-list li { display: flex; gap: 14px; align-items: flex-start; }
.spotlight-list .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--lime); color: #000; display: grid; place-items: center; flex: none; font-size: 14px; font-weight: 900; }
.spotlight-list .tx b { display: block; font-size: 15.5px; }
.spotlight-list .tx span { color: rgba(255,255,255,.62); font-size: 14px; }
.spotlight-visual { display: flex; justify-content: center; }
.glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: var(--lime); filter: blur(120px); opacity: .18; right: 0; top: 10%; z-index: 0; }

/* Showcase */
.showcase-phones { display: flex; justify-content: center; align-items: flex-end; gap: 26px; margin-top: 56px; flex-wrap: wrap; }
.showcase-phones .phone { transition: transform .3s var(--ease); }
.showcase-phones .phone:hover { transform: translateY(-8px); }
.showcase-cap { text-align: center; margin-top: 16px; font-size: 13.5px; font-weight: 600; color: var(--shade-60); }
.showcase-item { display: flex; flex-direction: column; align-items: center; }

/* Stats band */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 18px; }
.stat { text-align: center; padding: 14px; }
.stat .n { font-weight: 900; font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.03em; }
.stat .l { color: var(--shade-60); font-size: 14.5px; margin-top: 4px; }

/* FAQ */
.faq-wrap { max-width: 780px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 4px; text-align: left; font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.faq-q .pm { width: 26px; height: 26px; flex: none; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.faq-q .pm::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.faq-q .pm::after { left: 12px; top: 4px; bottom: 4px; width: 2px; }
.faq-item.open .pm::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding: 0 4px 24px; color: var(--shade-60); font-size: 15.5px; max-width: 92%; }

/* Final CTA */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #e8f88a 0%, var(--lime) 48%, #cfe94e 100%);
}
.cta-inner { padding: 84px 0; text-align: center; position: relative; z-index: 2; }
.cta h2 { color: #0a0a0a; }
.cta .lead { color: rgba(0,0,0,.66); margin: 16px auto 0; max-width: 540px; }
.cta .waitlist { margin: 30px auto 0; }
.cta .waitlist-form { border-color: transparent; }
.cta-blob { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(255,255,255,.35); filter: blur(40px); }
.cta-blob.b1 { top: -160px; left: -80px; }
.cta-blob.b2 { bottom: -200px; right: -60px; background: rgba(124,181,198,.3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--night); color: rgba(255,255,255,.7); padding: 72px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; }
.footer-tag { margin-top: 16px; max-width: 280px; font-size: 14.5px; color: rgba(255,255,255,.55); line-height: 1.55; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: .18s var(--ease); }
.footer-social a:hover { background: var(--lime); border-color: var(--lime); color: #000; }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; padding: 7px 0; font-size: 14.5px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: rgba(255,255,255,.5); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero { background: var(--sky-10); padding: 60px 0 40px; }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; }
.legal-hero .upd { color: var(--shade-60); margin-top: 10px; font-size: 14.5px; }
.legal-body { max-width: 760px; margin: 0 auto; padding: 56px 24px 90px; }
.legal-body h2 { font-size: 1.4rem; font-weight: 700; margin: 40px 0 12px; letter-spacing: -0.01em; }
.legal-body h3 { font-size: 1.08rem; font-weight: 700; margin: 24px 0 6px; }
.legal-body p { margin: 12px 0; color: var(--shade-70); }
.legal-body ul.bul { margin: 12px 0; padding-left: 0; }
.legal-body ul.bul li { position: relative; padding-left: 24px; margin: 9px 0; color: var(--shade-70); }
.legal-body ul.bul li::before { content: ""; position: absolute; left: 6px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--lime-pressed); }
.legal-body a { color: #1c7a8c; text-decoration: underline; text-underline-offset: 2px; }
.legal-body hr { border: none; border-top: 1px solid var(--hairline); margin: 36px 0; }
.legal-body strong { color: var(--ink); }
.legal-toc { background: var(--cream); border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 22px 24px; margin-bottom: 32px; }
.legal-toc h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--shade-50); margin-bottom: 12px; }
.legal-toc a { display: block; padding: 5px 0; font-size: 14.5px; color: var(--shade-70); text-decoration: none; }
.legal-toc a:hover { color: var(--ink); }
.callout { background: var(--pistachio); border: 1px solid #bfeccb; border-radius: var(--radius-md); padding: 16px 18px; color: #1f5132; font-size: 14.5px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 10px; padding: 52px 0 64px; }
  .hero-copy { max-width: 640px; }
  .hero-visual { min-height: 520px; margin-top: 18px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps-visual { order: -1; }
  .spotlight-grid { grid-template-columns: 1fr; gap: 36px; }
  .spotlight-visual { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-desktop { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu {
    position: fixed; inset: 70px 0 auto 0; background: var(--cream); border-bottom: 1px solid var(--hairline);
    padding: 16px 24px 24px; transform: translateY(-120%); transition: transform .3s var(--ease); z-index: 55;
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { display: block; padding: 14px 0; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--hairline); }
  .mobile-menu .btn { margin-top: 18px; width: 100%; }
  .section { padding: 68px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 8px; }
  .waitlist-form { flex-direction: column; padding: 12px; border-radius: var(--radius-lg); }
  .waitlist-form .btn { width: 100%; }
  .waitlist-form input { padding: 8px 6px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual { min-height: 480px; }
  .phone { --w: 230px; }
  .float-chip.fc-match { display: none; }
}
@media (max-width: 420px) {
  .phone { --w: 210px; }
  .float-chip .s { display: none; }
}
