/* ═══════════════════════════════════════════════════════════
   bliptracker — landing page  ·  bliptracker.xyz
   Aesthetic: "Instrument / Scope" — dark phosphor grounds, a radar
   sweep, phosphor-green signal, and a hot contact-red reserved for
   the "waiting on you" state. Chakra Petch (UPPERCASE) is the display
   face — a squared HUD voice; Hanken Grotesk reads long-form; JetBrains
   Mono carries readouts/markers.

   Two grounds:
     --paper*  = light reading surface (long-form sections stay legible)
     --scope*  = dark instrument ground (hero, privacy, final CTA — the
                 recurring signature moments)
   ═══════════════════════════════════════════════════════════ */

:root {
  /* ── Light reading ground (comfortable long-form) ── */
  --paper: #f3f6f4;        /* faint cool paper */
  --paper-2: #e9efeb;      /* raised panel */
  --paper-3: #dfe7e2;      /* deepest inset */
  --ink: #0c1c1a;          /* near-black instrument ink */
  --ink-2: #2c3d39;        /* body */
  --ink-soft: #5d726c;     /* muted labels */

  /* ── Dark scope ground (signature dark sections) ── */
  --scope: #0c1c1a;        /* scope ground */
  --scope-2: #102523;      /* raised panel */
  --scope-3: #16302d;      /* deepest inset */
  --scope-ink: #eafff6;    /* phosphor white text */
  --scope-ink-2: #b9d4cb;  /* dimmed readout */
  --scope-ink-soft: #6f8e85; /* faint grid label */

  /* ── Signal colours ── */
  --green: #2fd6a6;        /* phosphor sweep / "cleared" — primary accent */
  --green-bright: #4fe8bd; /* hover lift on dark */
  --green-deep: #1f9c79;   /* legible green on light ground */
  --red: #ff5a4d;          /* the blip itself — reserved for "waiting on you" */
  --red-deep: #e23f33;     /* legible red on light ground */

  --line: rgba(31, 156, 121, 0.18);
  --line-strong: rgba(31, 156, 121, 0.34);
  --scope-line: rgba(47, 214, 166, 0.16);
  --scope-line-strong: rgba(47, 214, 166, 0.34);

  --serif: "Chakra Petch", system-ui, sans-serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1140px;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(12, 28, 26, 0.06), 0 18px 40px -20px rgba(12, 28, 26, 0.3);
  --shadow-lg: 0 2px 6px rgba(12, 28, 26, 0.1), 0 40px 80px -32px rgba(12, 28, 26, 0.45);
  --shadow-dark: 0 1px 2px rgba(0, 0, 0, 0.4), 0 18px 50px -22px rgba(0, 0, 0, 0.8);
  --shadow-dark-lg: 0 2px 8px rgba(0, 0, 0, 0.5), 0 50px 90px -34px rgba(0, 0, 0, 0.9);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--paper);
  /* Faint radar grid + glow on the light reading ground. */
  background-image:
    radial-gradient(900px 600px at 82% -8%, rgba(47, 214, 166, 0.07), transparent 60%),
    linear-gradient(rgba(31, 156, 121, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 156, 121, 0.04) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  background-attachment: fixed;
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; text-transform: uppercase; }
em { font-style: italic; }
strong { font-weight: 600; }
a { color: inherit; }

/* ─── Reveal-on-scroll (progressive; visible without JS) ─── */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ─── The recurring radar contact: red core, expanding green sweep-ring ─── */
.live-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(47, 214, 166, 0.55), 0 0 8px rgba(255, 90, 77, 0.6);
  animation: pulse 2.4s infinite;
  vertical-align: middle;
}
.live-dot.big { width: 0.7em; height: 0.7em; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(47, 214, 166, 0.55), 0 0 8px rgba(255, 90, 77, 0.6); }
  70%  { box-shadow: 0 0 0 13px rgba(47, 214, 166, 0), 0 0 8px rgba(255, 90, 77, 0.6); }
  100% { box-shadow: 0 0 0 0 rgba(47, 214, 166, 0), 0 0 8px rgba(255, 90, 77, 0.6); }
}
.num-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green-deep); margin-right: 2px; }

/* ═══ NAV ═══ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  background: color-mix(in srgb, var(--scope) 80%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--scope-line);
  color: var(--scope-ink);
}
.nav .brand-name { color: var(--scope-ink); }
.nav .nav-links a { color: var(--scope-ink-2); }
.nav .nav-links a:hover { color: var(--green); }
.nav .nav-cta { color: var(--scope-ink) !important; border-color: var(--scope-line-strong); }
.nav .nav-cta:hover { background: var(--green); color: #06201a !important; border-color: var(--green); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; }
/* Brand mark = a tiny scope: concentric rings + an offset contact. */
.brand-mark {
  width: 26px; height: 26px; border-radius: 50%; background: var(--scope-2);
  position: relative; flex: none;
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 0 0 4px rgba(47, 214, 166, 0.14), inset 0 0 0 8px rgba(47, 214, 166, 0.08);
}
.brand-mark::after {
  content: ""; position: absolute;
  top: 5px; right: 5px; width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 6px rgba(255, 90, 77, 0.95);
}
.brand-name { font-family: var(--serif); font-size: 18px; font-weight: 700; letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 30px); }
.nav-links a { text-decoration: none; font-weight: 500; font-size: 15px; color: var(--ink-2); transition: color 0.2s; }
.nav-links a:hover { color: var(--green-deep); }
.nav-cta {
  border: 1px solid var(--line-strong); border-radius: 100px;
  padding: 7px 16px; color: var(--ink) !important; font-weight: 600 !important;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--green-deep); color: #fff !important; border-color: var(--green-deep); }
@media (max-width: 720px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ═══ HERO (dark scope ground — signature moment) ═══ */
.hero {
  position: relative;
  padding: 0;
  background:
    radial-gradient(900px 600px at 78% -10%, rgba(47, 214, 166, 0.12), transparent 60%),
    radial-gradient(700px 500px at 0% 0%, rgba(255, 90, 77, 0.07), transparent 55%),
    var(--scope);
  color: var(--scope-ink);
  border-bottom: 1px solid var(--scope-line);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(47, 214, 166, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 214, 166, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}
.hero-inner {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(48px, 9vw, 110px) clamp(20px, 5vw, 56px) clamp(40px, 7vw, 90px);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) { .hero-inner { grid-template-columns: 1fr; } }

.eyebrow {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--green);
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(32px, 5vw, 60px); line-height: 1.06; letter-spacing: 0.005em; margin-bottom: 24px; color: var(--scope-ink); }
.hero h1 em { color: var(--red); font-style: italic; }
.hero .lede { color: var(--scope-ink-2); }
.lede { font-size: clamp(17px, 2vw, 21px); color: var(--ink-2); max-width: 38ch; margin-bottom: 30px; }

.chip {
  display: inline-block; font-family: var(--mono); font-size: 0.82em; font-weight: 500;
  padding: 1px 9px; border-radius: 100px; white-space: nowrap; line-height: 1.7;
}
.chip-red { background: rgba(255, 90, 77, 0.15); color: var(--red); }
.chip-green { background: rgba(47, 214, 166, 0.16); color: var(--green); }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.cta-row.center { justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  padding: 14px 26px; border-radius: 100px; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.2s, background 0.2s;
}
.btn:active { transform: translateY(1px); }
/* Primary glows phosphor; ghost is a wire outline. Tuned for dark grounds. */
.btn-primary {
  background: var(--green); color: #06201a;
  box-shadow: 0 0 0 1px rgba(47, 214, 166, 0.4), 0 14px 40px -16px rgba(47, 214, 166, 0.7);
}
.btn-primary:hover {
  background: var(--green-bright);
  box-shadow: 0 0 0 1px rgba(47, 214, 166, 0.6), 0 16px 48px -14px rgba(47, 214, 166, 0.85);
}
.btn-ghost { background: transparent; color: var(--scope-ink); border-color: var(--scope-line-strong); }
.btn-ghost:hover { border-color: var(--green); background: rgba(47, 214, 166, 0.1); }
.soon {
  font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--red); color: #fff; padding: 2px 7px; border-radius: 100px; font-weight: 700;
}
.microcopy { font-family: var(--mono); font-size: 12.5px; color: var(--scope-ink-soft); letter-spacing: 0.01em; }

/* ─── Hero demo: the scope (a literal radar surfacing contacts) ─── */
.hero-demo { position: relative; }

.scope {
  position: relative;
  aspect-ratio: 1 / 1;
  width: min(100%, 460px);
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(47, 214, 166, 0.14), rgba(8, 24, 21, 0.2) 70%),
    var(--scope-2);
  border: 1px solid var(--scope-line-strong);
  box-shadow: var(--shadow-dark-lg), inset 0 0 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
/* concentric range rings */
.scope::before {
  content: "";
  position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 24%, var(--scope-line) 24% calc(24% + 1px), transparent calc(24% + 1px) 100%),
    radial-gradient(circle, transparent 0 49%, var(--scope-line) 49% calc(49% + 1px), transparent calc(49% + 1px) 100%),
    radial-gradient(circle, transparent 0 74%, var(--scope-line) 74% calc(74% + 1px), transparent calc(74% + 1px) 100%);
}
/* crosshair */
.scope::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(var(--scope-line), var(--scope-line)) center / 1px 100% no-repeat,
    linear-gradient(90deg, var(--scope-line), var(--scope-line)) center / 100% 1px no-repeat;
}
/* the rotating sweep wedge */
.sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(47, 214, 166, 0.42), rgba(47, 214, 166, 0.06) 30deg, transparent 60deg, transparent 360deg);
  animation: sweep 4.4s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes sweep { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .sweep { animation: none; } }

/* contacts on the scope */
.contact {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  transform: translate(-50%, -50%);
}
/* Red contacts flare as the sweep beam reaches them. Each shares the sweep's
   4.4s period but carries a negative animation-delay equal to its angle around
   the dial (clockwise from 12 o'clock), so its flash lands when the beam passes.
   Delays are set inline per-contact in index.html. */
.contact.r { background: var(--red); animation: ping 4.4s ease-out infinite; }
.contact.g { background: var(--green); box-shadow: 0 0 9px rgba(47, 214, 166, 0.8); opacity: 0.65; }
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(255, 90, 77, 0.7), 0 0 16px 2px rgba(255, 90, 77, 1); }
  22%  { box-shadow: 0 0 0 14px rgba(255, 90, 77, 0), 0 0 11px rgba(255, 90, 77, 0.55); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 77, 0), 0 0 4px rgba(255, 90, 77, 0.4); }
}
@media (prefers-reduced-motion: reduce) { .contact.r { animation: none; } }
.contact .tag {
  position: absolute; left: 16px; top: -7px; white-space: nowrap;
  font-family: var(--mono); font-size: 11px; color: var(--scope-ink-2);
  background: rgba(8, 24, 21, 0.78); padding: 2px 7px; border-radius: 5px;
  border: 1px solid var(--scope-line);
}
.contact.r .tag { color: var(--red); border-color: rgba(255, 90, 77, 0.4); }

/* readout strip below the scope */
.readout {
  margin-top: 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12.5px; color: var(--scope-ink-soft);
  border: 1px solid var(--scope-line); border-radius: 12px;
  padding: 12px 16px; background: rgba(8, 24, 21, 0.5);
}
.readout .hit { color: var(--red); }
.readout .clr { color: var(--green); }

/* ─── Faux claude.ai-style window (reused in the features section, light) ─── */
.window {
  background: var(--scope-2); border: 1px solid var(--scope-line-strong); border-radius: var(--radius);
  box-shadow: var(--shadow-dark-lg); overflow: hidden; transform: rotate(-1.2deg);
  transition: transform 0.4s ease;
}
.feature-demo:hover .window, .hero-demo:hover .window { transform: rotate(0deg); }
.window-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 15px; background: var(--scope-3); border-bottom: 1px solid var(--scope-line);
}
.window-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.r { background: var(--red); } .dot.y { background: #e3b341; } .dot.g { background: var(--green); }
.window-title { font-family: var(--mono); font-size: 12px; color: var(--scope-ink-soft); margin-left: 10px; }
.sidebar { padding: 18px 14px 22px; }
.sidebar-head {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--scope-ink-soft); padding: 0 10px 10px;
}
.chats { list-style: none; }
.chat {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 11px; border-radius: 9px; font-size: 14.5px; color: var(--scope-ink-2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.chat .m { width: 17px; flex: none; font-size: 13px; }
.chat.waiting { background: rgba(255, 90, 77, 0.12); color: var(--scope-ink); font-weight: 500; }
.chat.done { color: var(--scope-ink-soft); text-decoration: none; }

.badge-pop {
  position: absolute; right: -8px; bottom: -18px;
  background: var(--green); color: #06201a;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  padding: 10px 16px; border-radius: 100px; box-shadow: var(--shadow-dark-lg);
  display: inline-flex; align-items: center; gap: 9px; transform: rotate(2deg);
}
.badge-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); animation: pulse 2.4s infinite; }

/* ═══ SECTION SCAFFOLD ═══ */
.band { background: var(--paper-2); border-block: 1px solid var(--line); }
section { padding: clamp(56px, 9vw, 120px) clamp(20px, 5vw, 56px); }
.section-head { max-width: var(--maxw); margin: 0 auto clamp(36px, 5vw, 60px); }
.kicker {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--green-deep); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.kicker.light { color: var(--green); }
.section-head h2 { font-size: clamp(27px, 3.9vw, 47px); line-height: 1.08; letter-spacing: 0.01em; max-width: 20ch; }

/* ═══ PROBLEM ═══ */
.problem-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: start;
}
@media (max-width: 820px) { .problem-grid { grid-template-columns: 1fr; } }
.big-quote { font-family: var(--serif); font-size: clamp(24px, 3.4vw, 38px); line-height: 1.25; color: var(--ink); }
.strike { text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 3px; color: var(--ink-soft); }
.pain-list { list-style: none; align-self: center; }
.pain-list li {
  display: flex; gap: 13px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 17px; color: var(--ink-2);
}
.pain-list li:first-child { border-top: 1px solid var(--line); }
.pain-list .x { color: var(--red); font-weight: 700; font-size: 19px; flex: none; line-height: 1; }

/* ═══ HOW ═══ */
.steps {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 34px);
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; max-width: 560px; } }
.step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px 30px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.step-n {
  font-family: var(--serif); font-size: 22px; font-weight: 600; color: #06201a;
  width: 44px; height: 44px; border-radius: 50%; background: var(--green);
  display: grid; place-items: center; margin-bottom: 20px; position: relative;
  box-shadow: 0 0 0 1px rgba(31, 156, 121, 0.3), 0 0 18px -6px rgba(47, 214, 166, 0.8);
}
.step-n::after { content: ""; position: absolute; top: 7px; right: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 5px rgba(255, 90, 77, 0.9); }
.step h3 { font-size: 19px; letter-spacing: 0.03em; margin-bottom: 10px; }
.step p { font-size: 15.5px; color: var(--ink-2); margin-bottom: 18px; }
.step p:last-of-type { margin-bottom: 20px; }

.code-block { margin-top: auto; background: var(--scope); border: 1px solid var(--scope-line-strong); border-radius: 11px; overflow: hidden; }
.code-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 13px; background: rgba(47, 214, 166, 0.06); border-bottom: 1px solid var(--scope-line);
  font-family: var(--mono); font-size: 11px; color: var(--scope-ink-soft);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.copy-btn {
  font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  background: transparent; color: var(--scope-ink); border: 1px solid var(--scope-line-strong);
  border-radius: 6px; padding: 3px 9px; cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.copy-btn:hover { background: rgba(47, 214, 166, 0.12); border-color: var(--green); }
.copy-btn.copied { color: var(--green); border-color: var(--green); }
.code-block pre { padding: 14px 15px; overflow-x: auto; }
.code-block code { font-family: var(--mono); font-size: 12px; line-height: 1.7; color: var(--scope-ink-2); white-space: pre; }

.reply-mock, .rename-mock { margin-top: auto; }
.reply-mock {
  background: var(--paper-3); border: 1px solid var(--line); border-radius: 12px; padding: 16px 17px;
}
.reply-mock p { font-size: 14.5px !important; color: var(--ink-2); margin-bottom: 12px !important; }
.reply-mock .marker {
  font-family: var(--mono); font-size: 13px !important; font-weight: 500; color: var(--red-deep) !important;
  background: rgba(255, 90, 77, 0.12); padding: 8px 11px; border-radius: 7px; margin-bottom: 0 !important;
}
.reply-mock .marker.cleared {
  color: var(--green-deep) !important; background: rgba(47, 214, 166, 0.14);
}
.rename-mock { display: grid; gap: 8px; justify-items: start; }
.rename-row {
  font-family: var(--mono); font-size: 14px; padding: 11px 15px; border-radius: 9px;
  width: 100%; display: flex; align-items: center; gap: 9px;
}
.rename-row .m { width: 16px; flex: none; }
.rename-row.from { background: var(--paper-3); color: var(--ink-soft); border: 1px solid var(--line); }
.rename-row.to { background: rgba(255, 90, 77, 0.12); color: var(--ink); font-weight: 600; border: 1px solid rgba(255, 90, 77, 0.32); }
.rename-arrow { color: var(--green-deep); font-size: 18px; align-self: center; margin-left: 16px; }

/* ═══ FEATURES ═══ */
.feature-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 28px 30px; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.feature h3 { font-size: 19px; letter-spacing: 0.03em; margin-bottom: 10px; display: flex; align-items: center; gap: 11px; }
.feature p { font-size: 15.5px; color: var(--ink-2); }
.f-ico { font-size: 20px; }
.feature-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: center; }
@media (max-width: 760px) { .feature-wide { grid-template-columns: 1fr; } }
.feature-wide h3 { font-size: 23px; }

.mini-pop { background: var(--scope); border: 1px solid var(--scope-line-strong); border-radius: 12px; padding: 14px 14px 16px; box-shadow: var(--shadow-dark-lg); color: var(--scope-ink); }
.mini-pop-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 15px; padding-bottom: 11px; margin-bottom: 8px;
  border-bottom: 1px solid var(--scope-line);
}
.mini-count { font-family: var(--mono); background: var(--red); color: #fff; border-radius: 100px; padding: 1px 9px; font-size: 12px; font-weight: 700; box-shadow: 0 0 8px rgba(255, 90, 77, 0.5); }
.mini-pop ul { list-style: none; }
.mini-pop li {
  font-family: var(--mono); font-size: 13px; padding: 8px 9px; border-radius: 7px; color: var(--scope-ink-2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: background 0.2s;
}
.mini-pop li:hover { background: rgba(47, 214, 166, 0.1); }

/* ═══ PRIVACY (dark scope — signature moment) ═══ */
.privacy {
  position: relative; color: var(--scope-ink);
  background:
    radial-gradient(800px 500px at 100% 0%, rgba(47, 214, 166, 0.1), transparent 60%),
    var(--scope);
  border-block: 1px solid var(--scope-line);
}
.privacy-inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.privacy .kicker.light { color: var(--green); }
.privacy h2 { font-size: clamp(29px, 4.4vw, 50px); color: var(--scope-ink); max-width: 18ch; margin-bottom: 22px; }
.privacy h2::after { content: "."; color: var(--green); }
.privacy-lede { font-size: clamp(17px, 2vw, 21px); color: var(--scope-ink-2); max-width: 52ch; margin-bottom: 44px; }
.trust-grid { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--scope-line); border: 1px solid var(--scope-line); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 680px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-grid li { background: var(--scope-2); padding: 24px 26px; font-size: 15.5px; color: var(--scope-ink-2); }
.trust-grid strong { color: var(--scope-ink); font-family: var(--serif); font-size: 18px; font-weight: 600; display: block; margin-bottom: 5px; }
.trust-grid strong::before { content: "●"; color: var(--green); font-size: 9px; vertical-align: middle; margin-right: 9px; }

/* ═══ FAQ ═══ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary {
  font-family: var(--serif); font-size: clamp(17px, 2.1vw, 21px); font-weight: 500; letter-spacing: 0.02em;
  padding: 24px 44px 24px 0; cursor: pointer; list-style: none; position: relative; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 26px; font-weight: 300; color: var(--green-deep); transition: transform 0.3s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding: 0 44px 26px 0; color: var(--ink-2); font-size: 16.5px; max-width: 62ch; }

/* ═══ FINAL CTA (dark scope — signature moment) ═══ */
.final-cta {
  position: relative; text-align: center; color: var(--scope-ink);
  background:
    radial-gradient(700px 500px at 50% 120%, rgba(47, 214, 166, 0.12), transparent 60%),
    var(--scope);
  border-top: 1px solid var(--scope-line);
}
.final-cta h2 { font-size: clamp(30px, 4.8vw, 54px); margin-bottom: 34px; color: var(--scope-ink); }
.final-cta h2 em { font-style: normal; color: var(--red); }
.final-cta .microcopy { margin-top: 22px; }

/* ═══ FOOTER ═══ */
.footer { background: #081513; color: var(--scope-ink-2); padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 56px); border-top: 1px solid var(--scope-line); }
.footer-grid {
  max-width: var(--maxw); margin: 0 auto 30px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--scope-ink); }
.footer-brand .brand-mark { background: var(--scope-2); }
.footer-brand .brand-mark::after { background: var(--red); }
.footer-brand .brand-name { color: var(--scope-ink); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--scope-ink-2); text-decoration: none; font-size: 14.5px; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.disclaimer {
  max-width: 80ch; margin: 0 auto; font-size: 13px; line-height: 1.7;
  color: var(--scope-ink-soft); border-top: 1px solid var(--scope-line); padding-top: 26px;
}

/* ─── Placeholder-link affordance ─── */
a[data-placeholder] { position: relative; }
a[data-placeholder]:hover::before {
  content: "↗ " attr(data-placeholder); position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 11px; white-space: nowrap; background: var(--scope); color: var(--scope-ink);
  border: 1px solid var(--scope-line-strong);
  padding: 5px 9px; border-radius: 6px; pointer-events: none; opacity: 0.97; z-index: 60;
}
