/* Roster landing page — brand: deep purple #1a0033 → violet/magenta */
:root {
  --bg: #1a0033;
  --bg-2: #25064a;
  --violet: #7c3aed;
  --violet-2: #a855f7;
  --magenta: #d946ef;
  --rose: #fb7185;
  --text: #f5f3ff;
  --muted: #c4b5fd;
  --card: rgba(255, 255, 255, 0.05);
  --card-brd: rgba(168, 85, 247, 0.22);
  --radius: 20px;
  --maxw: 1120px;
  /* Glassmorphism */
  --glass-bg: linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  --glass-brd: rgba(255, 255, 255, 0.14);
  --glass-blur: blur(18px) saturate(150%);
  --glass-shadow: 0 12px 40px rgba(10, 0, 25, 0.45);
  --glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

/* Reusable frosted-glass surface (a thin top highlight sells the "glass" look) */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
}

/* ---------- Accessibility ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 100;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg, var(--violet), var(--magenta));
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }
:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 2px;
  border-radius: 6px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(217, 70, 239, 0.25), transparent 60%),
    radial-gradient(900px 600px at 0% 10%, rgba(124, 58, 237, 0.25), transparent 55%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.grad {
  background: linear-gradient(90deg, var(--violet-2), var(--magenta), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Fallback: if backdrop-filter isn't supported, make glass surfaces more opaque so text stays readable */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  :root {
    --glass-bg: linear-gradient(155deg, rgba(43, 12, 74, 0.92), rgba(30, 6, 54, 0.92));
  }
}

/* ---------- Buttons / badges ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  background: linear-gradient(90deg, var(--violet), var(--magenta));
  box-shadow: 0 10px 30px rgba(217, 70, 239, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(217, 70, 239, 0.45); }
.btn--small { padding: 10px 18px; font-size: 0.95rem; }

.store-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.store-badges.center { justify-content: center; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  border-radius: 14px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.store-badge:hover { transform: translateY(-2px); border-color: var(--magenta); }
.store-badge span { display: flex; flex-direction: column; font-weight: 700; font-size: 1.05rem; line-height: 1.1; }
.store-badge small { font-weight: 500; font-size: 0.68rem; opacity: 0.8; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 48px);
  background: rgba(26, 0, 51, 0.55);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand__icon {
  width: 34px; height: 34px; border-radius: 10px;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}
.brand__name { font-weight: 800; font-size: 1.25rem; letter-spacing: 0.2px; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.nav__links a:hover { color: #fff; }
.nav .btn--small { margin-left: 6px; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 48px) 60px;
}
.pill {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--glass-highlight);
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.05; font-weight: 800; letter-spacing: -1px; }
.lede { margin-top: 20px; font-size: 1.18rem; color: var(--muted); max-width: 30ch; }
.microcopy { margin-top: 16px; font-size: 0.9rem; color: var(--muted); }
.microcopy.center { text-align: center; }

.hero__art { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative;
  z-index: 2;
  width: min(320px, 78%);
  border-radius: 38px;
  padding: 10px;
  background: linear-gradient(160deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
  animation: float 7s ease-in-out infinite;
}
.phone img { width: 100%; height: auto; display: block; border-radius: 30px; }
.phone--sm { width: min(280px, 70%); }
.glow { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 1; }
.glow--1 { width: 320px; height: 320px; background: rgba(217, 70, 239, 0.4); top: -30px; right: 10px; animation: pulse 6s ease-in-out infinite; }
.glow--2 { width: 280px; height: 280px; background: rgba(124, 58, 237, 0.4); bottom: -20px; left: 0; animation: pulse 6s ease-in-out infinite 3s; }

/* ---------- Phone screen carousel ---------- */
.phone-carousel { position: relative; z-index: 2; width: min(320px, 78%); max-width: 100%; min-width: 0; display: flex; flex-direction: column; align-items: center; }
.phone-carousel .phone { width: 100%; }
.screens {
  position: relative;
  width: 100%;
  aspect-ratio: 720 / 1564;
  overflow: hidden;
  border-radius: 30px;
  background: #160029;
  touch-action: pan-y;
}
.screens__track { display: flex; height: 100%; transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
.appscreen {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.appscreen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.appscreen__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 12px 14px;
  font-size: clamp(11px, 3vw, 13px); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em;
  color: #fff; text-align: center;
  background: linear-gradient(180deg, rgba(22,0,41,0) 0%, rgba(22,0,41,0.6) 48%, rgba(22,0,41,0.92) 100%);
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
/* arrows */
.screens__arrow {
  position: absolute; top: 46%; transform: translateY(-50%); z-index: 4;
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; color: #fff;
  background: var(--glass-bg); border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.screens__arrow:hover { transform: translateY(-50%) scale(1.08); border-color: var(--magenta); }
.screens__arrow--prev { left: -6px; }
.screens__arrow--next { right: -6px; }
/* dots — the visible dot is small (8px) but each <button> is a ≥24px hit area for reliable mobile taps (WCAG 2.5.8) */
.screens__dots { display: flex; gap: 2px; margin-top: 10px; }
.screens__dots button {
  width: 24px; height: 28px; padding: 0; border: none; cursor: pointer;
  background: transparent; display: grid; place-items: center;
  -webkit-tap-highlight-color: transparent;
}
.screens__dots button::before {
  content: ""; display: block;
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25); transition: width 0.25s ease, background 0.25s ease;
}
.screens__dots button.on::before { width: 22px; border-radius: 999px; background: var(--magenta); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

/* ---------- Scroll-reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Hero trust row ---------- */
.trustrow {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  padding: 0;
}
.trustrow li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
}
.trustrow svg { color: var(--magenta); flex-shrink: 0; }

/* ---------- Hero scroll cue ---------- */
.scrollcue {
  display: block;
  width: 26px;
  height: 44px;
  margin: -10px auto 30px;
  border: 2px solid rgba(196, 181, 253, 0.45);
  border-radius: 16px;
  position: relative;
}
.scrollcue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--magenta);
  border-radius: 2px;
  animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 0; }
}

/* ---------- Social proof / testimonials ---------- */
.social {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 48px);
}
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.quote {
  margin: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote__stars { color: #fbbf24; font-size: 1.05rem; letter-spacing: 2px; }
.quote blockquote { margin: 0; font-size: 1.08rem; line-height: 1.5; color: var(--text); }
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--muted);
  font-size: 0.9rem;
}
.quote figcaption strong { display: block; color: var(--text); font-size: 0.95rem; }
.quote figcaption small { color: var(--muted); font-size: 0.82rem; }
.quote__avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* ---------- Launch waitlist ---------- */
.waitlist {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(18px, 5vw, 48px);
}
.waitlist__inner {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) clamp(24px, 5vw, 48px);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(124, 58, 237, 0.28), rgba(217, 70, 239, 0.2));
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
}
.waitlist__inner h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.5px; margin-top: 6px; }
.waitlist__inner > p { color: var(--muted); margin: 12px auto 0; max-width: 46ch; }
.waitlist__form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 26px auto 0;
}
.waitlist__form input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--card-brd);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 1rem;
}
.waitlist__form input::placeholder { color: var(--muted); }
/* Honeypot: kept in the layout (not display:none, which some bots skip) but off-screen + unfocusable. */
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.waitlist__form input:focus-visible { outline: 3px solid var(--magenta); outline-offset: 1px; }
.waitlist__form .btn { flex-shrink: 0; }
.waitlist__msg { margin-top: 14px; font-weight: 600; min-height: 1.2em; }
.waitlist__msg.is-ok { color: #6ee7b7; }
.waitlist__msg.is-error { color: #fda4af; }
.waitlist .microcopy { margin-top: 14px; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 140%);
  z-index: 60;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.02rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--violet), var(--magenta));
  box-shadow: 0 14px 40px rgba(217, 70, 239, 0.5);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.sticky-cta.show { transform: translate(-50%, 0); opacity: 1; }
@media (min-width: 720px) { .sticky-cta { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .phone, .glow--1, .glow--2 { animation: none; }
}

/* ---------- Value strip ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px clamp(18px, 5vw, 48px);
  border-top: 1px solid rgba(168, 85, 247, 0.15);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
}
.strip div { display: flex; flex-direction: column; position: relative; }
.strip strong { font-size: 1.05rem; }
.strip span { color: var(--muted); font-size: 0.9rem; }
/* soft vertical glass divider between same-row value items (fades top/bottom) */
.strip div + div::before {
  content: ""; position: absolute; left: -9px; top: 10%; bottom: 10%; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.16), transparent);
  pointer-events: none;
}

/* ---------- Sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 48px); }
.section--alt { background: linear-gradient(180deg, rgba(124, 58, 237, 0.06), transparent); }
.section__title { font-size: clamp(1.8rem, 4vw, 2.8rem); text-align: center; font-weight: 800; letter-spacing: -0.5px; }
.section__sub { text-align: center; color: var(--muted); margin-top: 12px; font-size: 1.1rem; }

/* ---------- Cross-roster scan (signature feature) ---------- */
.xrs {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 48px);
}
.xrs__head { max-width: 760px; margin: 0 auto; text-align: center; }
.xrs__head .pill { margin-bottom: 18px; }
.xrs__head .section__sub { max-width: 60ch; margin-left: auto; margin-right: auto; }
.xrs__flow {
  margin-top: clamp(36px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.xrs__step {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 22px 24px;
  border-radius: 22px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.xrs__n {
  position: absolute; top: -16px; left: 22px;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1rem; color: #fff;
  background: linear-gradient(150deg, var(--violet), var(--magenta));
  box-shadow: 0 8px 20px rgba(217, 70, 239, 0.45);
}
.xrs__art {
  height: 210px;
  border-radius: 16px;
  margin-bottom: 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  background: radial-gradient(120% 120% at 50% 20%, rgba(124, 58, 237, 0.18), rgba(22, 0, 41, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.xrs__step h3 { font-size: 1.18rem; font-weight: 800; letter-spacing: -0.2px; }
.xrs__step p { color: var(--muted); margin-top: 8px; line-height: 1.5; font-size: 0.98rem; }
.xrs__artcap { color: var(--violet-200, #c4b5fd) !important; font-weight: 700; font-size: 0.86rem !important; margin-top: 0 !important; letter-spacing: 0.02em; }

/* Radar scanning animation */
.radar { position: relative; width: 132px; height: 132px; display: grid; place-items: center; }
.radar__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(168, 85, 247, 0.5);
  animation: radarPulse 2.4s ease-out infinite;
}
.radar__ring--2 { animation-delay: 0.8s; }
.radar__ring--3 { animation-delay: 1.6s; }
.radar__sweep {
  position: absolute; inset: 8px; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(217, 70, 239, 0) 0deg, rgba(217, 70, 239, 0.35) 60deg, rgba(217, 70, 239, 0) 90deg);
  animation: radarSweep 2.2s linear infinite;
}
.radar__core {
  position: relative; z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-size: 22px; color: #fff;
  background: linear-gradient(150deg, var(--violet), var(--magenta));
  box-shadow: 0 0 0 6px rgba(217, 70, 239, 0.16), 0 8px 24px rgba(217, 70, 239, 0.4);
}
.radar__blip { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #fb7185; box-shadow: 0 0 10px #fb7185; animation: blip 2.4s ease-in-out infinite; }
.radar__blip--a { top: 22%; left: 26%; }
.radar__blip--b { top: 30%; right: 20%; animation-delay: 0.7s; }
.radar__blip--c { bottom: 24%; left: 38%; animation-delay: 1.3s; }
@keyframes radarPulse { 0% { transform: scale(0.45); opacity: 0.9; } 100% { transform: scale(1); opacity: 0; } }
@keyframes radarSweep { to { transform: rotate(360deg); } }
@keyframes blip { 0%, 100% { opacity: 0.2; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }

/* Neutral overlap result card */
.overlapcard {
  width: 100%; max-width: 250px;
  padding: 14px 14px 13px; border-radius: 14px;
  background: linear-gradient(180deg, rgba(36, 10, 71, 0.9), rgba(24, 1, 47, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}
.overlapcard__badge { display: inline-block; font-size: 0.7rem; font-weight: 700; color: #c7d2fe; background: rgba(99, 102, 241, 0.22); border: 1px solid rgba(99, 102, 241, 0.4); padding: 3px 8px; border-radius: 999px; }
.overlapcard__body { color: #efe7ff !important; font-size: 0.82rem !important; line-height: 1.4 !important; margin-top: 9px !important; }
.overlapcard__fine { color: #b9a8e8 !important; font-size: 0.72rem !important; margin-top: 7px !important; }
.overlapcard__actions { display: flex; gap: 8px; align-items: center; margin-top: 11px; }
.overlapcard__dismiss { font-size: 0.72rem; font-weight: 600; color: #b9a8e8; }
.overlapcard__connect { font-size: 0.72rem; font-weight: 700; color: #fff; background: linear-gradient(90deg, var(--violet), var(--magenta)); padding: 6px 12px; border-radius: 999px; margin-left: auto; }

/* Anonymous connect mockup */
.anoncard { width: 100%; max-width: 250px; display: flex; flex-direction: column; gap: 9px; }
.anoncard__row { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: 12px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); }
.anoncard__av { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 0.7rem; font-weight: 800; color: #fff; background: linear-gradient(150deg, #7c3aed, #d946ef); }
.anoncard__av--2 { background: linear-gradient(150deg, #34d399, #10b981); }
.anoncard__meta { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.2; }
.anoncard__meta strong { font-size: 0.82rem; color: #f5f3ff; }
.anoncard__meta small { font-size: 0.68rem; color: #b9a8e8; }
.anoncard__btns { display: flex; gap: 6px; }
.anoncard__ok, .anoncard__no { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 0.7rem; font-weight: 800; }
.anoncard__ok { background: #10b981; color: #fff; }
.anoncard__no { background: rgba(251, 113, 133, 0.22); color: #fb7185; }
.anoncard__chat { font-size: 0.72rem; font-weight: 700; color: #c4b5fd; background: rgba(124, 58, 237, 0.25); padding: 5px 10px; border-radius: 999px; }
.anoncard__fine { color: #b9a8e8 !important; font-size: 0.7rem !important; text-align: center; margin-top: 2px !important; }

.xrs__note {
  max-width: 760px; margin: clamp(36px, 6vw, 56px) auto 0;
  padding: 18px 22px; border-radius: 16px; text-align: center;
  background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--muted); font-size: 0.96rem; line-height: 1.55;
}
.xrs__note strong { color: var(--text); }

@media (max-width: 860px) {
  .xrs__flow { grid-template-columns: 1fr; gap: 30px; }
  .xrs__art { height: 200px; }
}
@media (prefers-reduced-motion: reduce) {
  .radar__ring, .radar__sweep, .radar__blip { animation: none; }
  .radar__ring { opacity: 0.4; }
}

/* ---------- Emotional hook ---------- */
.emo {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 48px);
  text-align: center;
}
.emo .pill { margin-bottom: 18px; }
.emo__lede {
  font-size: clamp(1.08rem, 2.1vw, 1.32rem);
  line-height: 1.55;
  color: var(--muted);
  margin: 18px auto 0;
  max-width: 58ch;
}
.emo__note {
  margin: 28px auto 0;
  max-width: 54ch;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  padding: 15px 22px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
}
.emo__note em { color: var(--text); font-style: italic; }

/* ---------- Feature grid ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 70, 239, 0.55);
  box-shadow: 0 20px 50px rgba(217, 70, 239, 0.25), var(--glass-highlight);
}
.ic {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(150deg, var(--violet), var(--magenta));
  margin-bottom: 16px;
}
.card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card p { color: var(--muted); }

/* ---------- Privacy steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.step {
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  border-radius: var(--radius);
  padding: 28px;
}
.step__n {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-weight: 800;
  background: linear-gradient(150deg, var(--violet), var(--magenta));
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); }

/* ---------- Split (safety) ---------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.split__art { display: flex; justify-content: center; position: relative; }
.split__copy h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 14px 0; letter-spacing: -0.5px; }
.split__copy p { color: var(--muted); font-size: 1.1rem; }
.ticks { list-style: none; margin-top: 20px; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 30px; color: var(--text); }
.ticks li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 0.7rem; font-weight: 800;
  color: #fff;
  background: linear-gradient(150deg, var(--violet), var(--magenta));
}

/* ---------- Safe Date Mode phone mockup (pure CSS, no image) ---------- */
.safephone {
  position: relative;
  width: min(300px, 80%);
  border-radius: 42px;
  padding: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5), var(--glass-highlight);
}
.safephone__notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 7px; border-radius: 99px;
  background: rgba(0, 0, 0, 0.4);
}
.safephone__screen {
  border-radius: 30px;
  padding: 34px 18px 20px;
  background: linear-gradient(170deg, #220845, #16002e);
  display: grid;
  gap: 14px;
}
.safephone__status {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700; color: #d8caff;
}
.safephone__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #34d399; box-shadow: 0 0 10px #34d399;
}
.safephone__card {
  display: grid; gap: 2px; text-align: center;
  padding: 20px 14px;
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(124, 58, 237, 0.32), rgba(217, 70, 239, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.safephone__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: #c4b5fd; }
.safephone__timer { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1.1; }
.safephone__sub { font-size: 0.78rem; color: #c4b5fd; }
.safephone__friends {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.safephone__fav {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 0.85rem;
  border: 2px solid #1a0033; margin-right: -10px;
}
.safephone__fmeta { margin-left: 16px; font-size: 0.78rem; color: #d8caff; }
.safephone__row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: #c4b5fd;
}
.safephone__sos {
  margin-top: 2px;
  padding: 13px;
  border: none; border-radius: 14px;
  font-weight: 800; font-size: 0.95rem; color: #fff;
  background: linear-gradient(90deg, #fb7185, #e11d48);
  box-shadow: 0 10px 26px rgba(225, 29, 72, 0.4);
  cursor: default;
}
.safephone__safe {
  text-align: center; font-size: 0.82rem; font-weight: 600;
  color: #6ee7b7;
}

/* ---------- Scan Hub feature (active-scan mockup) ---------- */
.scanhub { padding-top: clamp(24px, 5vw, 56px); }
.scanphone {
  position: relative;
  width: min(300px, 80%);
  border-radius: 42px;
  padding: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5), var(--glass-highlight);
}
.scanphone__notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 7px; border-radius: 99px;
  background: rgba(0, 0, 0, 0.4);
}
.scanphone__screen {
  border-radius: 30px;
  padding: 36px 20px 22px;
  background: linear-gradient(170deg, #220845, #16002e);
  display: grid; gap: 12px; justify-items: center; text-align: center;
}
.scanphone__hd { font-size: 0.82rem; font-weight: 700; color: #d8caff; }
.scanphone__label {
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.4px;
  text-transform: uppercase; color: #f0abfc;
}
.scanring {
  position: relative;
  width: 152px; height: 152px; border-radius: 50%;
  display: grid; place-items: center;
  background: conic-gradient(var(--magenta) 64%, rgba(255, 255, 255, 0.1) 0);
  box-shadow: 0 0 30px rgba(217, 70, 239, 0.4);
  animation: scanpulse 2.2s ease-in-out infinite;
}
.scanring__hole {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(170deg, #2a0a52, #1a0533);
  display: grid; place-items: center;
}
.scanring__pct { font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1; }
.scanring__pct small { font-size: 1.1rem; color: #c4b5fd; }
.scanphone__status { font-size: 0.92rem; color: #e9d5ff; font-weight: 600; }
.scanphone__time { font-size: 0.72rem; color: #a78bda; margin-top: -8px; }
.scanbar { width: 100%; height: 9px; border-radius: 99px; background: rgba(255, 255, 255, 0.1); overflow: hidden; }
.scanbar__fill {
  display: block; height: 100%; width: 64%; border-radius: 99px;
  background: linear-gradient(90deg, var(--violet), var(--magenta));
  box-shadow: 0 0 12px rgba(217, 70, 239, 0.6);
  animation: scanbarpulse 2.6s ease-in-out infinite;
}
.scansteps { list-style: none; width: 100%; display: grid; gap: 9px; margin-top: 4px; text-align: left; }
.scansteps li { position: relative; padding-left: 26px; font-size: 0.8rem; color: #a78bda; }
.scansteps li::before { content: "\25CB"; position: absolute; left: 4px; color: #7c6aa8; }
.scansteps li.is-done { color: #d8caff; }
.scansteps li.is-done::before { content: "\2713"; color: #34d399; font-weight: 800; }
.scansteps li.is-active { color: #fff; font-weight: 600; }
.scansteps li.is-active::before { content: "\25C9"; color: var(--magenta); }
@keyframes scanpulse {
  0%, 100% { box-shadow: 0 0 26px rgba(217, 70, 239, 0.35); }
  50% { box-shadow: 0 0 42px rgba(217, 70, 239, 0.65); }
}
@keyframes scanbarpulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .scanring, .scanbar__fill { animation: none; }
}

/* ---------- Pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tier:hover { transform: translateY(-4px); }
.tier--feat {
  border-color: rgba(217, 70, 239, 0.5);
  box-shadow: 0 16px 50px rgba(217, 70, 239, 0.3), var(--glass-highlight);
}
.tier__tag {
  position: absolute; top: -12px; right: 18px;
  background: linear-gradient(90deg, var(--violet), var(--magenta));
  color: #fff; font-size: 0.72rem; font-weight: 800;
  padding: 5px 12px; border-radius: 999px;
}
.tier h3 { font-size: 1.2rem; }
.tier__price { font-size: 2rem; font-weight: 800; margin: 8px 0 16px; }
.tier__price span { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.tier ul { list-style: none; display: grid; gap: 10px; flex: 1 1 auto; }
.tier li { color: var(--muted); padding-left: 22px; position: relative; }
.tier li::before { content: "•"; position: absolute; left: 4px; color: var(--magenta); font-weight: 800; }
.tier__cta {
  display: block; margin-top: 22px; text-align: center;
  padding: 11px 16px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em;
  color: var(--text); border: 1px solid var(--glass-brd);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.tier__cta:hover { border-color: var(--magenta); background: rgba(217, 70, 239, 0.14); transform: translateY(-1px); }
.tier--feat .tier__cta { color: #fff; border: none; background: linear-gradient(90deg, var(--violet), var(--magenta)); box-shadow: 0 8px 22px rgba(217, 70, 239, 0.4); }
.tier--feat .tier__cta:hover { background: linear-gradient(90deg, var(--magenta), var(--violet)); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 40px auto 0; display: grid; gap: 14px; }
.faq details {
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  border-radius: 14px;
  padding: 18px 22px;
}
.faq summary { cursor: pointer; font-weight: 700; font-size: 1.05rem; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--magenta); font-weight: 800; }
.faq details[open] summary::after { content: "−"; }
.faq p { color: var(--muted); margin-top: 12px; }

/* ---------- CTA ---------- */
.cta {
  text-align: center;
  max-width: var(--maxw);
  margin: 0 auto clamp(48px, 8vw, 90px);
  padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 48px);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(124, 58, 237, 0.28), rgba(217, 70, 239, 0.2));
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
}
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta p { color: var(--muted); margin: 12px 0 8px; font-size: 1.15rem; }

/* ---------- Legal pages (privacy.html / terms.html) ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 40px);
}
.legal__doc { color: var(--text); }
.legal__doc h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.legal__doc h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 36px 0 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(168, 85, 247, 0.16);
}
.legal__doc h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--violet-2);
  margin: 22px 0 8px;
}
.legal__doc p { color: var(--muted); margin: 10px 0; }
.legal__doc strong { color: var(--text); }
.legal__doc a { color: var(--magenta); text-decoration: none; }
.legal__doc a:hover { text-decoration: underline; }
.legal__doc ul { margin: 10px 0 10px 4px; padding-left: 22px; display: grid; gap: 7px; }
.legal__doc li { color: var(--muted); }
.legal__doc hr { border: none; border-top: 1px solid rgba(168, 85, 247, 0.16); margin: 26px 0; }
.legal__meta { color: var(--muted); opacity: 0.8; font-size: 0.95rem; }

/* ---------- Press / media kit ---------- */
.btn--ghost {
  background: transparent;
  border: 1px solid var(--card-brd);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--magenta); box-shadow: 0 10px 30px rgba(217, 70, 239, 0.2); }
.lede.center { margin-left: auto; margin-right: auto; text-align: center; max-width: 56ch; }

.press__hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 48px) 50px;
  text-align: center;
}
.press__hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -1px; line-height: 1.05; }
.press__hero .pill { margin-bottom: 22px; }
.press__quick { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

.press__section {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 84px) clamp(18px, 5vw, 48px);
}
.press__section.section--alt { max-width: none; }
.press__section.section--alt > * { max-width: 920px; margin-left: auto; margin-right: auto; }

.copyblock {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  border-radius: 16px;
  padding: 22px 24px;
  margin-top: 18px;
}
.copyblock__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
}
.copyblock p { color: var(--text); }

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  border-radius: 14px;
  padding: 16px 18px;
}
.fact span { color: var(--muted); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; }
.fact strong { font-size: 1.05rem; }
.fact a { color: var(--magenta); text-decoration: none; }

.angles { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.angle {
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  border-radius: 16px;
  padding: 24px;
}
.angle h3 { font-size: 1.18rem; margin-bottom: 8px; }
.angle p { color: var(--muted); }

.featurelist { list-style: none; display: grid; gap: 12px; margin-top: 36px; }
.featurelist li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}
.featurelist li strong { color: var(--text); }
.featurelist li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 0.68rem; font-weight: 800;
  color: #fff;
  background: linear-gradient(150deg, var(--violet), var(--magenta));
}

.assets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.asset {
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}
.asset--wide { grid-column: 1 / -1; }
.asset img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  margin: 0 auto 12px;
}
.asset figcaption { color: var(--muted); font-size: 0.9rem; }

.press__palette { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 30px; color: var(--muted); }
.swatch {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  width: 96px; height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding-bottom: 6px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* ---------- Steps / notes / request cards (deletion & support) ---------- */
.steps-list {
  counter-reset: step;
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 36px;
}
.steps-list li {
  position: relative;
  padding: 16px 18px 16px 60px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  border-radius: 14px;
  color: var(--muted);
}
.steps-list li strong { color: var(--text); }
.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-weight: 800; font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(150deg, var(--violet), var(--magenta));
}
.note {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--magenta);
  background: rgba(217, 70, 239, 0.08);
  border-radius: 0 12px 12px 0;
  color: var(--muted);
}
.note strong { color: var(--text); }
.request-card {
  margin-top: 36px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  border-radius: 16px;
  padding: 26px 28px;
  display: grid;
  gap: 14px;
}
.request-card p { color: var(--muted); }
.request-card a { color: var(--magenta); text-decoration: none; }
.request-card a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid rgba(168, 85, 247, 0.15);
  padding: 40px clamp(18px, 5vw, 48px);
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.footer__brand img {
  width: 28px; height: 28px; border-radius: 8px;
}
.footer__links { display: flex; gap: 22px; margin-left: auto; }
.footer__links a { color: var(--muted); text-decoration: none; font-weight: 600; }
.footer__links a:hover { color: #fff; }
.footer__legal { width: 100%; color: var(--muted); font-size: 0.85rem; opacity: 0.8; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero__copy .store-badges, .hero__copy .lede { margin-left: auto; margin-right: auto; }
  .lede { max-width: 46ch; }
  .hero__art { order: -1; }
  .strip { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .strip div + div::before { left: -11px; }
  .strip div:nth-child(2n+1)::before { display: none; } /* no divider at the start of a row */
  .grid, .steps { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__copy { text-align: center; }
  .ticks { justify-items: center; }
  .tiers { grid-template-columns: 1fr 1fr; }
  .angles { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .nav__links { display: none; }
  .nav { gap: 12px; padding: 14px 16px; }
  .nav .btn--small { padding: 9px 14px; font-size: 0.85rem; }
  .strip, .grid, .steps, .tiers { grid-template-columns: 1fr; }
  .strip div::before { display: none; } /* single column: no vertical dividers */
  .store-badges { justify-content: center; }
  .facts, .assets { grid-template-columns: 1fr; }
  .trustrow { justify-content: center; }
  .scrollcue { display: none; }
  .waitlist__form { flex-direction: column; }
  .waitlist__form .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .scrollcue span { animation: none; }
}

/* ---------- Print (legal pages save cleanly to PDF / paper) ---------- */
@media print {
  body {
    background: #fff !important;
    color: #111 !important;
  }
  .nav, .footer, .skip-link, .sticky-cta, .scrollcue, .btn, .store-badges { display: none !important; }
  .legal, .press { padding: 0 !important; max-width: 100% !important; }
  .copyblock, .fact, .angle, .request-card, .steps-list li {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
  }
  .legal__doc h1, .legal__doc h2, .legal__doc h3,
  .press h1, .press h2, .press h3 { color: #111 !important; }
  .legal__doc p, .legal__doc li, .press p, .press li { color: #222 !important; }
  .legal__doc a, .press a { color: #000 !important; text-decoration: underline; }
  .legal__doc h2 { border-top-color: #ccc !important; }
  .copyblock, .fact, .angle, .request-card { border-color: #ccc !important; background: #fff !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #555; }
}

