/* ============================================================
   Capii — dark luxury homepage
   Same brand DNA (Meta blue · cream · ink black), inverted:
   the page itself becomes the "dark funnel" and blue is the
   signal that lights it up.
   ============================================================ */
:root {
  --bg: #05090f;
  --bg-deep: #02050a;
  --bg-elev: rgba(15, 24, 38, 0.72);
  --bg-glass: rgba(13, 22, 36, 0.55);
  --cream: #fbfaf7;
  --cream-85: rgba(251, 250, 247, 0.85);
  --cream-70: rgba(251, 250, 247, 0.70);
  --cream-55: rgba(251, 250, 247, 0.55);
  --cream-35: rgba(251, 250, 247, 0.35);
  --border: rgba(251, 250, 247, 0.12);
  --border-soft: rgba(251, 250, 247, 0.07);
  --accent: #0077e8;
  --accent-bright: #4da6ff;
  --accent-soft: rgba(0, 119, 232, 0.14);
  --accent-border: rgba(77, 166, 255, 0.35);
  --accent-glow: rgba(0, 119, 232, 0.45);
  --amber: #f0b13d;
  --amber-soft: rgba(240, 177, 61, 0.14);
  --good: #52c76a;
  --good-soft: rgba(82, 199, 106, 0.14);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Geist", -apple-system, system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--sans);
  background:
    radial-gradient(1200px 700px at 50% -200px, rgba(0, 119, 232, 0.10), transparent 60%),
    var(--bg);
  color: var(--cream-85);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(0, 119, 232, 0.35); color: var(--cream); }

/* ---------- ambient auroras (whole-page slow drift) ---------- */
.aurora {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.aurora-1 {
  top: 18vh; left: -200px;
  width: 520px; height: 520px;
  background: radial-gradient(closest-side, rgba(0, 119, 232, 0.13), transparent 70%);
  animation: aur-drift-1 28s ease-in-out infinite alternate;
}
.aurora-2 {
  bottom: -180px; right: -160px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(77, 166, 255, 0.08), transparent 70%);
  animation: aur-drift-2 34s ease-in-out infinite alternate;
}
@keyframes aur-drift-1 { to { transform: translate(140px, -90px) scale(1.18); } }
@keyframes aur-drift-2 { to { transform: translate(-160px, -130px) scale(1.12); } }

/* ---------- cursor light (desktop only, follows the pointer) ---------- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 760px; height: 760px;
  margin: -380px 0 0 -380px;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 119, 232, 0.07), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: transform;
}
.cursor-glow.on { opacity: 1; }

/* ---------- cursor signal dot (the cursor is signal, everywhere) ---------- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 14px 3px var(--accent-glow);
  z-index: 80;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s ease, width 0.25s var(--ease-out), height 0.25s var(--ease-out), margin 0.25s var(--ease-out), background 0.25s ease;
  will-change: transform;
}
.cursor-dot.on { opacity: 0.9; }
/* while the signal dot is live, it IS the cursor */
html.custom-cursor, html.custom-cursor * { cursor: none !important; }
/* white core keeps the aim point precise, even when grown over a link */
.cursor-dot::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 5px; height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.95;
}
.cursor-dot.grow {
  width: 42px; height: 42px;
  margin: -21px 0 0 -21px;
  background: rgba(77, 166, 255, 0.16);
  box-shadow: 0 0 20px 5px rgba(0, 119, 232, 0.28), inset 0 0 0 1px rgba(77, 166, 255, 0.5);
}
@media (pointer: coarse) { .cursor-glow, .cursor-dot { display: none; } }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 60;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  box-shadow: 0 0 12px var(--accent-glow);
  transform: scaleX(0);
  transform-origin: left;
}

/* ---------- reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--rd, 0s);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- nav (floating glass pill) ---------- */
.nav {
  position: sticky;
  top: 12px;
  z-index: 50;
  padding: 0 16px;
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: rgba(8, 14, 24, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 10px 9px 26px;
  box-shadow:
    0 10px 34px -14px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(251, 250, 247, 0.06);
}

.wordmark {
  font-family: var(--serif);
  font-size: 25px;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.01em;
  text-shadow: 0 0 24px rgba(0, 119, 232, 0.35);
}
.wordmark-sm { font-size: 22px; }

.nav-links { display: flex; gap: 4px; }
.nav-link {
  font-size: 15px;
  color: var(--cream-70);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover { color: var(--cream); background: rgba(251, 250, 247, 0.06); }
.nav-link-active { color: var(--cream); background: rgba(0, 119, 232, 0.16); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 12px;
}
.nav-burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: none;
  max-width: 1080px;
  margin: 8px auto 0;
  background: rgba(8, 14, 24, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 10px;
  flex-direction: column;
}
.nav-menu.open { display: flex; }
.nav-menu a {
  color: var(--cream-85);
  text-decoration: none;
  font-size: 16px;
  padding: 13px 16px;
  border-radius: 12px;
}
.nav-menu a:hover, .nav-menu a.active { background: rgba(0, 119, 232, 0.14); color: var(--cream); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #1a8bff, var(--accent) 55%, #0063c4);
  color: #fff;
  padding: 14px 28px;
  font-size: 17px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.4),
    0 8px 28px -8px var(--accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: btn-sheen 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-sheen {
  0%, 72% { left: -70%; }
  100% { left: 140%; }
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 12px 38px -6px var(--accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-glow { position: relative; }

.btn-ink {
  background: var(--cream);
  color: #0c1723;
  box-shadow: 0 8px 30px -10px rgba(251, 250, 247, 0.35);
}
.btn-ink:hover { transform: translateY(-1px); box-shadow: 0 12px 38px -10px rgba(251, 250, 247, 0.45); }

.btn-sm { padding: 11px 20px; font-size: 15px; border-radius: 999px; }
.btn-lg { padding: 16px 36px; font-size: 18px; margin-top: 24px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: clamp(64px, 9vw, 120px) 20px clamp(56px, 8vw, 100px);
  overflow: visible;
}

.signal-field {
  position: absolute;
  inset: -80px 0 0 0;
  width: 100%;
  height: calc(100% + 80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

.hero-halo {
  position: absolute;
  top: -120px; left: 50%;
  width: 900px; height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(0, 119, 232, 0.16), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
}

.eyebrow {
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 20px;
}

h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 17ch;
  margin: 0 auto;
  color: var(--cream);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

h1 em {
  font-style: italic;
  background: linear-gradient(100deg, #7cbcff, var(--accent-bright) 45%, #2e8fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(0, 119, 232, 0.5));
  /* italic serif swashes overhang the box — pad the paint area so
     background-clip:text never slices the glyphs, then pull the
     layout back in with matching negative margins */
  padding: 0.08em 0.14em 0.14em;
  margin: -0.08em -0.14em -0.14em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--cream-70);
  max-width: 760px;
  margin: 26px auto 0;
  line-height: 1.65;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-secondary {
  color: var(--cream-70);
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-secondary:hover { color: var(--accent-bright); border-color: var(--accent-border); }

/* ---------- data-layer strip ---------- */
.dl-flow {
  margin: 58px auto 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 760px;
}

.dl-node {
  flex: 1;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px 12px 14px;
  min-width: 0;
}

.dl-nt {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.dl-serif { font-family: var(--serif); font-weight: 400; font-size: 20px; }
.dl-nd {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--cream-55);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.dl-capii {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, rgba(0, 119, 232, 0.14), rgba(0, 119, 232, 0.05));
  box-shadow: 0 0 34px -8px var(--accent-glow), inset 0 1px 0 rgba(251, 250, 247, 0.08);
}
.dl-capii .dl-nd { color: var(--accent-bright); }

.dl-arrow {
  display: flex;
  align-items: center;
  width: 54px;
  flex: none;
  padding: 0 6px;
}
.dl-wire {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--accent-border), var(--border));
  border-radius: 2px;
  overflow: visible;
}
.dl-pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 10px 2px var(--accent-glow);
  transform: translate(-50%, -50%);
  animation: dl-travel 2.4s linear infinite;
}
.dl-pulse-2 { animation-delay: 1.2s; }
@keyframes dl-travel {
  0%   { left: 0%; opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* ---------- product mock ---------- */
.mock-stage {
  perspective: 1400px;
  margin: 64px auto 0;
  max-width: 980px;
}

.mock {
  position: relative;
  background: linear-gradient(180deg, rgba(18, 28, 44, 0.92), rgba(10, 17, 28, 0.92));
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.85),
    0 0 80px -30px rgba(0, 119, 232, 0.35),
    inset 0 1px 0 rgba(251, 250, 247, 0.07);
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt, 8deg)) rotateY(var(--tiltY, 0deg));
  transition: transform 0.1s linear;
}

.mock-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-soft);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(251, 250, 247, 0.16); }
.mock-url {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--cream-55);
  margin: 0 auto;
  letter-spacing: 0.03em;
}

.mock-body { padding: 18px 18px 8px; }

.table-card { overflow-x: auto; border-radius: 12px; }
.table-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 760px;
}
.table-card th, .table-card td {
  text-align: left;
  padding: 11px 14px;
  white-space: nowrap;
}
.group-row th {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 9px 14px;
}
.grp-meta { color: var(--cream-55); background: rgba(251, 250, 247, 0.03); border-radius: 8px 0 0 0; }
.grp-capii {
  color: var(--accent-bright);
  background: linear-gradient(180deg, rgba(0, 119, 232, 0.16), rgba(0, 119, 232, 0.08));
  border-radius: 0 8px 0 0;
}
.table-card thead tr:nth-child(2) th {
  font-weight: 500;
  font-size: 12.5px;
  color: var(--cream-55);
  border-bottom: 1px solid var(--border);
}
.table-card tbody td { border-bottom: 1px solid var(--border-soft); color: var(--cream-85); }
.table-card tbody tr:last-child td { border-bottom: none; }
.table-card td:first-child { font-weight: 500; color: var(--cream); }

.cap { background: rgba(0, 119, 232, 0.07); }
th.cap { color: var(--accent-bright) !important; }
td.cap { color: var(--cream); font-variant-numeric: tabular-nums; }
.seam { border-left: 1px solid var(--accent-border); position: relative; }

.row-badge {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 3px 9px;
  margin-left: 8px;
  vertical-align: 1px;
}
.badge-warn { background: var(--amber-soft); color: var(--amber); border: 1px solid rgba(240, 177, 61, 0.35); }
.badge-good { background: var(--good-soft); color: var(--good); border: 1px solid rgba(82, 199, 106, 0.35); }

.swipe-cue {
  display: none;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--cream-55);
  text-align: right;
  padding: 8px 6px 2px;
}

.mock-sat {
  position: absolute;
  border: 1px solid var(--accent-border);
  background: rgba(10, 18, 30, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  box-shadow: 0 18px 44px -14px rgba(0, 0, 0, 0.8), 0 0 30px -10px var(--accent-glow);
  animation: sat-float 7s ease-in-out infinite;
}
.mock-sat-signal {
  left: -26px;
  bottom: -30px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  z-index: 2;
}
.mock-sat-emq {
  right: -22px;
  top: -24px;
  padding: 12px 18px 13px;
  text-align: left;
  animation-delay: -3.5s;
  z-index: 2;
}
@keyframes sat-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.sat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 0 rgba(82, 199, 106, 0.6);
  animation: sat-ping 2.2s ease-out infinite;
  flex: none;
}
@keyframes sat-ping {
  0% { box-shadow: 0 0 0 0 rgba(82, 199, 106, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(82, 199, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(82, 199, 106, 0); }
}
.sat-text { font-family: var(--mono); font-size: 12px; color: var(--cream-70); white-space: nowrap; }
.sat-text b { color: var(--cream); font-weight: 500; }
.sat-label {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--cream-55);
}
.sat-score {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--accent-bright);
  line-height: 1.15;
  text-shadow: 0 0 18px rgba(0, 119, 232, 0.55);
}
.sat-score small { font-size: 15px; color: var(--cream-55); }

.mock figcaption {
  text-align: center;
  font-size: 13.5px;
  color: var(--cream-55);
  padding: 12px 18px 16px;
  border-top: 1px solid var(--border-soft);
}

/* ---------- compact hero (subpages) ---------- */
.hero-compact { padding-bottom: clamp(40px, 6vw, 72px); }
.hero-compact .sub { max-width: 680px; }

/* ---------- containers ---------- */
.wide { max-width: 1180px; margin: 0 auto; }

/* ---------- service tiers ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.tier-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px 26px;
  box-shadow: 0 26px 60px -28px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(251, 250, 247, 0.06);
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}
.tier-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-border);
  box-shadow: 0 34px 70px -28px rgba(0, 0, 0, 0.85), 0 0 44px -14px var(--accent-glow);
}

.tier-featured {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, rgba(0, 119, 232, 0.12), rgba(15, 24, 38, 0.72) 40%);
  box-shadow:
    0 30px 70px -28px rgba(0, 0, 0, 0.85),
    0 0 60px -16px var(--accent-glow),
    inset 0 1px 0 rgba(251, 250, 247, 0.1);
  position: relative;
}
.tier-featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(77, 166, 255, 0.55), transparent 40%, transparent 60%, rgba(77, 166, 255, 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: featured-breathe 5s ease-in-out infinite;
}
@keyframes featured-breathe {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.tier-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tier-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--amber);
  background: var(--amber-soft);
  border: 1px solid rgba(240, 177, 61, 0.35);
  border-radius: 999px;
  padding: 3px 10px;
}

.tier-title {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.15;
  color: var(--cream);
  margin-top: 12px;
  max-width: none;
}
.tier-tag { font-size: 14.5px; color: var(--cream-70); margin-top: 8px; line-height: 1.5; }

.checklist { list-style: none; }
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--cream-85);
  line-height: 1.55;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent-bright);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tier-list { margin-top: 8px; }
.tier-for {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--cream-55);
  line-height: 1.55;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}
.tier-cta { margin-top: 18px; text-align: center; padding: 13px 20px; font-size: 15.5px; }
.tier-card .tier-list { flex: 1; }

.btn-ghost {
  background: rgba(251, 250, 247, 0.04);
  color: var(--cream);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: var(--accent-border);
  background: var(--accent-soft);
  box-shadow: 0 8px 26px -10px var(--accent-glow);
}

.tiers-note {
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--cream-55);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ---------- beliefs (our story) ---------- */
.beliefs {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.beliefs li {
  background: var(--bg-elev);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 24px 24px 56px;
  margin-top: 0;
  font-size: 15px;
  color: var(--cream-70);
  line-height: 1.6;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.beliefs li:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.8), 0 0 34px -14px var(--accent-glow);
}
.beliefs li::before { left: 24px; top: 27px; }
.beliefs li b { color: var(--cream); font-weight: 600; }

.quiet-link {
  color: var(--cream-70);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.quiet-link:hover { color: var(--accent-bright); border-color: var(--accent-border); }

/* ---------- thanks page ---------- */
.thanks-hero { min-height: 62vh; display: flex; align-items: center; justify-content: center; }

/* ---------- CAC calculator ---------- */
.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.calc-panel {
  background: var(--bg-elev);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 26px 60px -28px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(251, 250, 247, 0.06);
}

.calc-panel-title {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream-55);
  margin-bottom: 22px;
}

.calc-field { margin-bottom: 24px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.calc-field-head label { font-size: 14.5px; font-weight: 500; color: var(--cream-85); margin: 0; }
.calc-field-val {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--accent-bright);
  font-variant-numeric: tabular-nums;
}

/* The visible track is 4px, but the input box stays ~30px so the
   drag/tap target clears the 24px minimum on touch. */
input[type="range"].calc-range {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 30px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
input[type="range"].calc-range::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent) var(--fill, 50%), rgba(251, 250, 247, 0.12) var(--fill, 50%));
}
input[type="range"].calc-range::-moz-range-track {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent) var(--fill, 50%), rgba(251, 250, 247, 0.12) var(--fill, 50%));
}
input[type="range"].calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin-top: -8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--accent-bright);
  box-shadow: 0 0 14px -2px var(--accent-glow);
  transition: transform 0.15s ease;
}
input[type="range"].calc-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"].calc-range::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--accent-bright);
  box-shadow: 0 0 14px -2px var(--accent-glow);
}
input[type="range"].calc-range:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 6px;
}

.calc-meta-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0 0;
  font-size: 14.5px;
  border-top: 1px solid var(--border-soft);
  margin-top: 4px;
}
.calc-meta-row span:first-child { color: var(--cream-70); }
.calc-meta-row span:last-child { font-family: var(--mono); color: var(--cream); font-variant-numeric: tabular-nums; }

.calc-divider {
  position: relative;
  text-align: center;
  margin: 22px 0 18px;
  height: 20px;
}
.calc-divider::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  border-top: 1px dashed rgba(240, 177, 61, 0.4);
}
.calc-divider span {
  position: relative;
  background: #101a2a;
  border: 1px solid rgba(240, 177, 61, 0.35);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--amber);
  padding: 3px 12px;
}

.calc-hero-num { text-align: center; padding: 6px 0 2px; }
.calc-hero-num .chn-label {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-55);
}
.calc-hero-num .chn-value {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.1;
  color: var(--accent-bright);
  text-shadow: 0 0 30px rgba(0, 119, 232, 0.45);
  font-variant-numeric: tabular-nums;
}
.calc-hero-num .chn-sub { font-size: 13px; color: var(--cream-55); margin-top: 2px; }

.calc-outs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.calc-out {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(5, 9, 15, 0.45);
}
.calc-out .co-label {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--cream-55);
}
.calc-out .co-value {
  font-family: var(--mono);
  font-size: 21px;
  color: var(--cream);
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}
.calc-out.co-good { border-color: rgba(82, 199, 106, 0.35); }
.calc-out.co-good .co-value { color: var(--good); }
.calc-out.co-warn { border-color: rgba(240, 177, 61, 0.35); }
.calc-out.co-warn .co-value { color: var(--amber); }

.funnel-viz { margin-top: 20px; }
.fv-row { display: grid; grid-template-columns: 92px 1fr 74px; gap: 12px; align-items: center; margin-top: 10px; }
.fv-label { font-family: var(--mono); font-size: 11.5px; color: var(--cream-55); text-align: right; }
.fv-track { height: 14px; border-radius: 7px; background: rgba(251, 250, 247, 0.06); overflow: hidden; }
.fv-bar {
  height: 100%;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  box-shadow: 0 0 14px -3px var(--accent-glow);
  width: 0%;
  transition: width 0.7s var(--ease-out);
  min-width: 0;
}
.fv-bar.fv-dim { background: rgba(251, 250, 247, 0.22); box-shadow: none; }
.fv-bar.fv-good { background: linear-gradient(90deg, #2f9f3d, var(--good)); box-shadow: 0 0 14px -3px rgba(82, 199, 106, 0.5); }
.fv-count { font-family: var(--mono); font-size: 12.5px; color: var(--cream-85); font-variant-numeric: tabular-nums; }

.calc-verdict {
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  border: 1px solid var(--border-soft);
  background: rgba(251, 250, 247, 0.04);
  color: var(--cream-70);
  transition: border-color 0.4s ease, background 0.4s ease, color 0.4s ease;
}
.calc-verdict.v-bad { background: var(--amber-soft); border-color: rgba(240, 177, 61, 0.3); color: var(--amber); }
.calc-verdict.v-good { background: var(--good-soft); border-color: rgba(82, 199, 106, 0.3); color: var(--good); }

.calc-cta-band { text-align: center; margin-top: 54px; }
.calc-note {
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--cream-55);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ---------- guides ---------- */
.g-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 44px;
}
.g-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--bg-elev);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 26px 24px;
  box-shadow: 0 26px 60px -28px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(251, 250, 247, 0.06);
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}
.g-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-border);
  box-shadow: 0 34px 70px -28px rgba(0, 0, 0, 0.85), 0 0 44px -14px var(--accent-glow);
}
.g-tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-bright);
}
.g-card h2 {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  font-size: 25px;
  line-height: 1.2;
  margin-top: 12px;
  max-width: none;
}
.g-card p { font-size: 14.5px; color: var(--cream-70); line-height: 1.6; margin-top: 10px; flex: 1; }
.g-card .g-more {
  margin-top: 18px;
  font-size: 14px;
  color: var(--accent-bright);
  transition: transform 0.25s var(--ease-out);
  display: inline-block;
}
.g-card:hover .g-more { transform: translateX(4px); }

/* ---------- guide article ---------- */
.article { max-width: 720px; margin: 0 auto; }
.article-meta {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--cream-55);
  margin-top: 18px;
  letter-spacing: 0.03em;
}
.article h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  margin: 54px 0 0;
  text-align: left;
  max-width: none;
}
.article > p, .article .prose p { margin-top: 20px; color: var(--cream-70); font-size: clamp(16px, 1.9vw, 18px); line-height: 1.75; }
.article strong, .article b { color: var(--cream); font-weight: 600; }
.pullquote {
  margin: 40px 0;
  padding: 24px 28px;
  border-left: 2px solid var(--accent-bright);
  background: linear-gradient(90deg, rgba(0, 119, 232, 0.1), transparent 70%);
  border-radius: 0 14px 14px 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.45;
  color: var(--cream);
}
.article .stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 36px 0;
}
.article .stat-cell {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  background: rgba(5, 9, 15, 0.45);
}
.article .stat-cell .sc-num {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--accent-bright);
  text-shadow: 0 0 18px rgba(0, 119, 232, 0.4);
}
.article .stat-cell .sc-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream-55);
  margin-top: 6px;
}
.article-cta {
  margin-top: 60px;
  padding: 34px 32px;
  border: 1px solid var(--accent-border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(0, 119, 232, 0.12), rgba(0, 119, 232, 0.04));
  box-shadow: 0 0 50px -18px var(--accent-glow);
  text-align: center;
}
.article-cta h2 { margin: 0 auto; text-align: center; }
.article-back {
  display: inline-block;
  margin-bottom: 26px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--cream-55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.article-back:hover { color: var(--accent-bright); }

/* ---------- booking (GHL embed) ---------- */
.book-frame-wrap {
  margin-top: 44px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-elev);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(251, 250, 247, 0.06);
  padding: 14px;
  min-height: 720px;
}
.book-frame-wrap iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: none;
  border-radius: 12px;
  background: transparent;
}

/* ---------- scoreboard tilt (the loop-scoreboard motion, reusable) ---------- */
[data-tilt] {
  transform: perspective(1400px) rotateX(var(--tx, 0deg)) rotateY(var(--ty, 0deg));
  transition: transform 0.1s linear;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  [data-tilt] { transform: none !important; }
}

/* ---------- bands ---------- */
.band { padding: clamp(80px, 10vw, 140px) 20px; position: relative; }
/* band backgrounds feather in and out over ~180px so no seam is ever visible */
.band-tint {
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(0, 119, 232, 0.07), transparent 60%),
    linear-gradient(180deg,
      rgba(10, 17, 27, 0) 0%,
      rgba(10, 17, 27, 0.65) clamp(120px, 16vw, 200px),
      rgba(8, 14, 23, 0.65) calc(100% - clamp(120px, 16vw, 200px)),
      rgba(8, 14, 23, 0) 100%);
}
.band-ink {
  background:
    radial-gradient(1000px 600px at 50% 110%, rgba(0, 119, 232, 0.10), transparent 65%),
    linear-gradient(180deg,
      rgba(2, 5, 10, 0) 0%,
      rgba(2, 5, 10, 0.95) clamp(140px, 18vw, 220px),
      rgba(2, 5, 10, 0.95) calc(100% - clamp(140px, 18vw, 220px)),
      rgba(2, 5, 10, 0) 100%);
}

.narrow { max-width: 980px; margin: 0 auto; }

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--cream);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lead {
  font-size: clamp(16.5px, 2vw, 19.5px);
  color: var(--cream-70);
  margin: 18px auto 0;
  max-width: 640px;
  line-height: 1.65;
  text-align: center;
}

/* ---------- duel ---------- */
.duel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 44px;
}

.duel-card {
  background: var(--bg-elev);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 26px 24px;
  box-shadow: 0 26px 60px -28px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(251, 250, 247, 0.06);
}

.duel-name {
  font-family: var(--mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream-55);
  margin-bottom: 14px;
}

.duel-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 15.5px;
}
.duel-row span:first-child { color: var(--cream-70); display: flex; align-items: center; }
.duel-row span:last-child {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}

.duel-verdict {
  font-size: 14.5px;
  margin: 14px 0 4px;
  padding: 10px 14px;
  border-radius: 10px;
  line-height: 1.45;
}
.verdict-manager { background: rgba(251, 250, 247, 0.05); color: var(--cream-70); border: 1px solid var(--border-soft); }
.verdict-false { background: var(--amber-soft); color: var(--amber); border: 1px solid rgba(240, 177, 61, 0.3); }
.verdict-true { background: var(--good-soft); color: var(--good); border: 1px solid rgba(82, 199, 106, 0.3); }

.duel-divider {
  position: relative;
  text-align: center;
  margin: 20px 0 6px;
  height: 20px;
}
.duel-divider::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  border-top: 1px dashed rgba(240, 177, 61, 0.4);
}
.duel-divider span {
  position: relative;
  background: #101a2a;
  border: 1px solid rgba(240, 177, 61, 0.35);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--amber);
  padding: 3px 12px;
}

/* below-the-divider data starts dark, illuminates on scroll */
.duel-under {
  filter: blur(4px) brightness(0.55);
  opacity: 0.45;
  transition: filter 1.1s var(--ease-out), opacity 1.1s var(--ease-out);
  transition-delay: 0.35s;
}
.duel-card.lit .duel-under { filter: none; opacity: 1; }
.duel-under .duel-row {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.duel-card.lit .duel-under .duel-row { opacity: 1; transform: none; }
.duel-card.lit .duel-under .duel-row:nth-child(1) { transition-delay: 0.45s; }
.duel-card.lit .duel-under .duel-row:nth-child(2) { transition-delay: 0.6s; }
.duel-card.lit .duel-under .duel-row:nth-child(3) { transition-delay: 0.75s; }
.duel-card.lit .duel-under .duel-row:nth-child(4) { transition-delay: 0.9s; }
.duel-under .duel-verdict {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: 1.1s;
}
.duel-card.lit .duel-under .duel-verdict { opacity: 1; transform: none; }

.mark {
  font-style: normal;
  font-size: 12px;
  width: 19px; height: 19px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 9px;
  flex: none;
}
.mark-x { background: var(--amber-soft); color: var(--amber); }
.mark-check { background: var(--good-soft); color: var(--good); }

.prose { margin: 44px auto 0; max-width: 640px; text-align: center; }
.prose p { margin-bottom: 20px; color: var(--cream-70); font-size: clamp(16px, 1.9vw, 18px); line-height: 1.7; }
.prose p:last-child { margin-bottom: 0; color: var(--cream-85); }

.duel-caption {
  text-align: center;
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-bright);
  letter-spacing: 0.02em;
}

/* ---------- journey (where Meta goes dark) ---------- */
.chain { margin: 22px auto 0; max-width: 640px; text-align: center; }
.chain p { color: var(--cream-70); font-size: clamp(16px, 1.9vw, 18px); line-height: 1.7; }

.journey {
  display: flex;
  align-items: flex-start;
  margin-top: 52px;
  gap: 0;
}

.j-step { flex: 1; text-align: center; min-width: 0; padding: 0 6px; }

.j-node {
  width: 46px; height: 46px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-family: var(--mono);
  border: 1px solid var(--border);
  background: rgba(251, 250, 247, 0.04);
  color: var(--cream-55);
  transition: all 0.8s var(--ease-out);
}

.j-label { font-weight: 600; font-size: 15px; margin-top: 12px; color: var(--cream-55); transition: color 0.8s var(--ease-out); }
.j-note { font-size: 12.5px; color: var(--cream-55); margin-top: 3px; line-height: 1.4; }

.j-link {
  flex: 0.6;
  height: 1px;
  margin-top: 23px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

/* lit state — the journey lights up left to right when scrolled into view */
.journey.lit .j-seen .j-node {
  border-color: var(--accent-border);
  background: var(--accent-soft);
  color: var(--accent-bright);
  box-shadow: 0 0 26px -4px var(--accent-glow);
}
.journey.lit .j-seen .j-label { color: var(--cream); }
.journey.lit .j-link-seen { background: var(--accent-border); }
.journey.lit .j-link-seen::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  animation: link-run 2.2s linear infinite;
}
@keyframes link-run {
  from { transform: translateX(-120%); }
  to { transform: translateX(320%); }
}

.journey.lit .j-step:nth-child(1) .j-node { transition-delay: 0.1s; }
.journey.lit .j-step:nth-child(3) .j-node { transition-delay: 0.35s; }

.j-dark .j-node { border-style: dashed; }
.journey.lit .j-dark .j-node {
  color: var(--cream-55);
  animation: dark-flicker 4s ease-in-out infinite;
}
@keyframes dark-flicker {
  0%, 100% { opacity: 1; }
  46% { opacity: 1; }
  50% { opacity: 0.45; }
  54% { opacity: 1; }
}
.j-dark:nth-of-type(7) .j-node { animation-delay: 1.3s; }
.j-dark:nth-of-type(9) .j-node { animation-delay: 2.6s; }

.j-wall {
  flex: none;
  width: 1px;
  align-self: stretch;
  min-height: 130px;
  margin: 0 10px;
  border-left: 1px dashed rgba(240, 177, 61, 0.5);
  position: relative;
}
.journey.lit .j-wall { box-shadow: 0 0 22px -2px rgba(240, 177, 61, 0.35); }
.j-wall span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  background: var(--bg-deep);
  padding: 8px 3px;
  white-space: nowrap;
}

.chain-close {
  text-align: center;
  margin-top: 52px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--cream);
  line-height: 1.45;
}

/* ---------- steps ---------- */
.steps {
  list-style: none;
  counter-reset: step;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.steps li {
  counter-increment: step;
  background: var(--bg-elev);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 24px;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.steps li:hover {
  border-color: var(--accent-border);
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.8), 0 0 34px -14px var(--accent-glow);
  transform: translateY(-3px);
}
.steps li::before {
  content: "0" counter(step);
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--accent-bright);
  letter-spacing: 0.1em;
}
.steps h3 {
  font-size: 18.5px;
  font-weight: 600;
  color: var(--cream);
  margin: 10px 0 8px;
  letter-spacing: -0.01em;
}
.steps p { font-size: 15px; color: var(--cream-70); line-height: 1.6; }
.steps li:nth-child(2) { transition-delay: 0s; }
.steps li[data-reveal]:nth-child(2) { --rd: 0.12s; }
.steps li[data-reveal]:nth-child(3) { --rd: 0.24s; }

/* ---------- flow diagram ---------- */
.flow-frame {
  position: relative;
  margin-top: 54px;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 44px);
  background:
    radial-gradient(700px 400px at 85% 10%, rgba(0, 119, 232, 0.08), transparent 60%),
    rgba(8, 14, 24, 0.5);
}

.frame-chip {
  position: absolute;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-55);
  background: #0c1523;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  z-index: 2;
}
.frame-chip-left { top: -13px; left: 30px; }
.frame-chip-right { top: -13px; right: 30px; }
.frame-chip-bottom { bottom: -13px; left: 50%; transform: translateX(-50%); }
.frame-chip-glow {
  color: var(--accent-bright);
  border-color: var(--accent-border);
  box-shadow: 0 0 20px -6px var(--accent-glow);
}

.flow { display: flex; flex-direction: column; }

.flow-node {
  background: rgba(15, 24, 38, 0.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.flow-node:hover { border-color: var(--accent-border); box-shadow: 0 0 30px -12px var(--accent-glow); }

.flow-label {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-55);
  margin-bottom: 12px;
}
.flow-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.flow-chips span {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--cream-85);
  border: 1px solid var(--border);
  background: rgba(251, 250, 247, 0.04);
  border-radius: 999px;
  padding: 6px 14px;
}
.flow-stack > .flow-note { margin-top: 10px; }

.flow-title { font-weight: 600; font-size: 15.5px; color: var(--cream); letter-spacing: -0.01em; }
.flow-note { font-size: 13px; color: var(--cream-55); margin-top: 4px; line-height: 1.55; }

.flow-wire {
  height: 34px;
  width: 2px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--accent-border), var(--border));
  position: relative;
  overflow: hidden;
}
.flow-wire span {
  position: absolute;
  left: 50%;
  top: -8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 10px 2px var(--accent-glow);
  transform: translateX(-50%);
  animation: wire-drop 1.8s ease-in infinite;
}
@keyframes wire-drop {
  from { top: -8px; opacity: 0; }
  20% { opacity: 1; }
  85% { opacity: 1; }
  to { top: 40px; opacity: 0; }
}

.flow-pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}
.flow-pipeline .flow-node { display: flex; flex-direction: column; justify-content: flex-start; }

.pipe-link {
  width: 26px;
  align-self: center;
  height: 2px;
  background: var(--accent-border);
  position: relative;
  overflow: hidden;
  flex: none;
}
.pipe-link::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  animation: link-run 1.6s linear infinite;
}

.flow-capi {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, rgba(0, 119, 232, 0.18), rgba(0, 119, 232, 0.07));
  box-shadow: 0 0 38px -10px var(--accent-glow), inset 0 1px 0 rgba(251, 250, 247, 0.09);
}
.flow-capi .flow-title { color: var(--accent-bright); }

.flow-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.flow-loop {
  margin-top: 26px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--accent-bright);
  text-shadow: 0 0 20px rgba(0, 119, 232, 0.4);
}

.flow-sides {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 0 8px;
}
.flow-sides span {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--cream-55);
}

.pull {
  margin-top: 54px;
  font-family: var(--serif);
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--cream);
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }

.faq details {
  background: var(--bg-elev);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq details[open] { border-color: var(--accent-border); }

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 19px 54px 19px 22px;
  font-weight: 500;
  font-size: 16.5px;
  color: var(--cream);
  position: relative;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent-bright); }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 19px;
  color: var(--accent-bright);
  transition: transform 0.3s var(--ease-out);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-a { padding: 0 22px 20px; }
.faq-a p { color: var(--cream-70); font-size: 15.5px; line-height: 1.65; margin-bottom: 12px; }
.faq-a p:last-child { margin-bottom: 0; }

/* ---------- form ---------- */
.glass-form, .modal form {
  margin: 36px auto 0;
  background: var(--bg-elev);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 20px;
  /* matches .bk so the worksheet card and the booking card are the same object */
  padding: clamp(22px, 3.5vw, 36px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(251, 250, 247, 0.06);
  max-width: 760px;
}
.modal form { margin-top: 20px; background: transparent; border: none; box-shadow: none; padding: 0; -webkit-backdrop-filter: none; backdrop-filter: none; }

form label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--cream-70);
  margin-bottom: 16px;
}

form input, form select, form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--cream);
  background: rgba(5, 9, 15, 0.6);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 13px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
form input::placeholder, form textarea::placeholder { color: var(--cream-55); }
form select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--cream-55) 50%), linear-gradient(135deg, var(--cream-55) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
form select:invalid { color: var(--cream-55); }
form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(0, 119, 232, 0.22);
}
form textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hidden-field { position: absolute; left: -9999px; }

.form-note { font-size: 13.5px; color: var(--cream-55); margin-top: 16px; margin-bottom: 0; }

/* ---------- footer ---------- */
footer {
  padding: 84px 20px 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14.5px;
  color: var(--cream-55);
  background: linear-gradient(180deg, rgba(2, 5, 10, 0) 0%, rgba(2, 5, 10, 0.9) 90px);
}
footer a { color: var(--cream-70); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 1px; }
footer a:hover { color: var(--accent-bright); border-color: var(--accent-border); }

/* ---------- sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 40;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.sticky-cta.show { opacity: 1; transform: none; pointer-events: auto; }

/* ---------- modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 10, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  background: linear-gradient(180deg, #101a2b, #0a1220);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 50px 120px -30px rgba(0, 0, 0, 0.9), 0 0 70px -30px var(--accent-glow);
  max-width: 660px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(26px, 4vw, 40px);
  position: relative;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s var(--ease-out);
}
.modal-overlay.open .modal { transform: none; }

.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(251, 250, 247, 0.05);
  color: var(--cream-70);
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.modal-close:hover { background: rgba(251, 250, 247, 0.12); color: var(--cream); }

.modal-title { font-family: var(--serif); font-weight: 400; font-size: 28px; color: var(--cream); padding-right: 40px; }
.modal-sub { color: var(--cream-70); font-size: 15.5px; margin-top: 8px; }

/* ---------- focus visibility ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .tiers {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }
  .calc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .g-grid { grid-template-columns: 1fr; }
  .article .stat-strip { grid-template-columns: 1fr; }
  .calc-outs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .flow-pipeline { grid-template-columns: 1fr; }
  .pipe-link {
    width: 2px;
    height: 26px;
    margin: 0 auto;
  }
  .pipe-link::after {
    width: 100%; height: 50%;
    background: linear-gradient(180deg, transparent, var(--accent-bright), transparent);
    animation: pipe-fall 1.6s linear infinite;
  }
  @keyframes pipe-fall {
    from { transform: translateY(-120%); }
    to { transform: translateY(320%); }
  }
  .mock-sat-signal { left: 8px; bottom: -20px; }
  .mock-sat-emq { right: 8px; top: -20px; }
}

@media (max-width: 860px) {
  .journey { flex-direction: column; align-items: stretch; gap: 0; }
  .j-step {
    display: grid;
    grid-template-columns: 46px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    text-align: left;
    padding: 0;
  }
  .j-node { grid-row: 1 / 3; margin: 0; }
  .j-label { margin-top: 2px; align-self: end; }
  .j-note { margin-top: 0; }
  .j-link {
    flex: none;
    width: 1px;
    height: 30px;
    margin: 6px 0 6px 23px;
  }
  .journey.lit .j-link-seen::after {
    width: 100%; height: 40%;
    background: linear-gradient(180deg, transparent, var(--accent-bright), transparent);
    animation: pipe-fall 2.2s linear infinite;
  }
  .j-wall {
    width: auto;
    min-height: 0;
    align-self: stretch;
    border-left: none;
    border-top: 1px dashed rgba(240, 177, 61, 0.5);
    margin: 22px 0 22px;
  }
  .j-wall span {
    writing-mode: horizontal-tb;
    transform: translate(-50%, -50%);
    padding: 2px 10px;
  }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-inner .btn { display: none; }
  .nav-burger { display: flex; }

  .hero-cta { flex-direction: column; gap: 18px; }

  /* let the subheadline flow edge-to-edge instead of obeying
     desktop line breaks that leave half-empty lines */
  .sub br { display: none; }
  .sub { font-size: 3.4vw; line-height: 1.55; }
  .lead br, .prose br, .chain br, .chain-close br { display: none; }

  .dl-flow { flex-direction: column; gap: 0; max-width: 340px; }
  .dl-arrow {
    width: 100%;
    height: 34px;
    justify-content: center;
    padding: 0;
  }
  .dl-wire {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--border), var(--accent-border), var(--border));
  }
  .dl-pulse { left: 50%; top: 0; animation: dl-fall 2.4s linear infinite; }
  @keyframes dl-fall {
    0% { top: 0%; opacity: 0; }
    12% { opacity: 1; }
    88% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
  }

  .swipe-cue { display: block; }
  .mock-sat-signal { display: none; }
  .mock-sat-emq { top: auto; bottom: -74px; right: 12px; }
  .mock-stage { margin-bottom: 64px; }

  .duel { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; }
  .beliefs { grid-template-columns: 1fr; }
  .flow-split { grid-template-columns: 1fr; }
  .flow-sides { flex-direction: column; gap: 6px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .frame-chip-left { left: 16px; }
  .frame-chip-right { right: 16px; }
  .frame-chip-bottom { white-space: nowrap; }

  .aurora-2 { display: none; }
  .aurora-1 { filter: blur(50px); width: 380px; height: 380px; }

  footer { flex-direction: column; gap: 14px; text-align: center; }
  .sticky-cta { left: 16px; right: 16px; bottom: 16px; }
  .sticky-cta .btn { display: block; text-align: center; }
}

/* ============================================================
   Reduced motion — everything visible, nothing moves
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .duel-under { filter: none; opacity: 1; }
  .duel-under .duel-row, .duel-under .duel-verdict { opacity: 1; transform: none; }
  .mock { transform: none !important; }
  .signal-field { display: none; }
  .aurora, .cursor-glow, .cursor-dot { display: none; }
  .btn-primary::after { display: none; }
}

/* ============================================================
   Centered-content pass — nothing hugs the left on any viewport
   ============================================================ */
.steps li { text-align: center; }
.flow-node { text-align: center; }
.flow-chips { justify-content: center; }
.flow-stack > .flow-note, .flow-label { text-align: center; }
.flow-sides { flex-direction: column; align-items: center; gap: 6px; }

.faq summary { text-align: center; padding-left: 54px; }
.faq-a { text-align: center; }

.duel-name, .duel-verdict { text-align: center; }
.mock figcaption { text-align: center; }
.swipe-cue { text-align: center; }

.calc-panel-title { text-align: center; }
.calc-verdict { text-align: center; }

.tier-card { text-align: center; }
.tier-num { justify-content: center; }
.tier-title { text-align: center; margin-left: auto; margin-right: auto; }
.tier-card .checklist { text-align: left; }

.g-card { text-align: center; }
.g-card h2 { text-align: center; margin-left: auto; margin-right: auto; }

.beliefs li {
  padding: 26px 24px 24px;
  text-align: center;
}
.beliefs li::before {
  position: static;
  margin: 0 auto 12px;
}

.article-back { display: block; text-align: center; }
.article h2 { text-align: center; margin-left: auto; margin-right: auto; max-width: 22ch; }
.pullquote { text-align: center; }

.modal-title, .modal-sub { text-align: center; }
.modal-title { padding-right: 0; }

.form-note { text-align: center; }

@media (max-width: 860px) {
  .journey {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- logo ---------- */
.wordmark img { display: block; height: 30px; width: auto; }
.wordmark-sm img { height: 26px; opacity: 0.92; }

/* ============================================================
   Mobile hero refinements: 2-line headline, one-line eyebrow,
   and the circular data-loop circuit diagram
   ============================================================ */
.h1-br { display: none; }
.dl-circuit { display: none; }

@media (max-width: 760px) {
  .h1-br { display: inline; }
  .hero h1 {
    font-size: 9vw;
    max-width: 92vw;
  }
  .eyebrow {
    white-space: nowrap;
    font-size: min(13px, 2.45vw);
    letter-spacing: 0.12em;
  }

  /* the loop, drawn as a loop: Meta up top, sales data bottom-left,
     Capii bottom-right, signal cycling the triangle forever */
  .dl-flow {
    display: block;
    position: relative;
    max-width: 340px;
    margin: 48px auto 0;
    aspect-ratio: 340 / 300;
  }
  .dl-arrow { display: none; }
  .dl-circuit {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .ct {
    fill: none;
    stroke: rgba(77, 166, 255, 0.28);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 3 9;
    animation: ct-flow 1.4s linear infinite;
  }
  @keyframes ct-flow {
    to { stroke-dashoffset: -12; }
  }
  .ct-via { fill: rgba(77, 166, 255, 0.55); }
  .ct-pulse {
    fill: #4da6ff;
    filter: drop-shadow(0 0 6px rgba(0, 119, 232, 0.9));
  }
  .dl-node {
    position: absolute;
    margin: 0;
    padding: 12px 8px 10px;
  }
  .dl-node .dl-nt { font-size: 13.5px; }
  .dl-node .dl-nd { font-size: 9.5px; margin-top: 3px; }
  .dl-serif { font-size: 17px !important; }
  .dl-meta {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 62%;
  }
  .dl-stack { bottom: 0; left: 0; width: 46%; }
  .dl-capii { bottom: 0; right: 0; width: 46%; }
}

@media (prefers-reduced-motion: reduce) {
  .ct { animation: none; stroke-dasharray: none; }
  .ct-pulse { display: none; }
}

/* ============================================================
   Brand icon rows in the three steps — the stack, drawn in apps
   ============================================================ */
.sys-group {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sys-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sys-lab {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-55);
}
.sys-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.sys-icons img {
  width: 38px;
  height: 38px;
  padding: 7px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(251, 250, 247, 0.06);
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease, box-shadow 0.25s ease;
}
.sys-icons img:hover {
  transform: translateY(-3px) scale(1.08);
  border-color: var(--accent-border);
  box-shadow: 0 8px 20px -8px var(--accent-glow);
}

/* Meta, receiving it all — glowing tile with radiating rings */
.meta-rx {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  box-shadow: 0 0 30px -8px var(--accent-glow);
}
.meta-rx img { width: 30px; height: 30px; }
.meta-rx::before,
.meta-rx::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid var(--accent-border);
  animation: rx-ring 2.6s ease-out infinite;
  pointer-events: none;
}
.meta-rx::after { animation-delay: 1.3s; }
@keyframes rx-ring {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* ============================================================
   Data-layer sandwich (mobile): Capii is literally the layer
   between sales data and Meta — signal rises through it, and
   Meta's optimizing returns down the right rail as new sales
   ============================================================ */
@media (max-width: 760px) {
  .dl-flow { aspect-ratio: 340 / 330; }
  .dl-meta {
    top: 0;
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 62%;
  }
  .dl-capii {
    top: 50%;
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: 72%;
    z-index: 1;
  }
  .dl-stack {
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 62%;
  }
  .ct-arrow { fill: rgba(77, 166, 255, 0.75); }
  .ct-return { stroke: rgba(77, 166, 255, 0.18); }
  .ct-pulse-dim { opacity: 0.55; }
}

/* mobile hero: 95% width, bigger headline */
@media (max-width: 760px) {
  .hero { padding-left: 2.5vw; padding-right: 2.5vw; }
  .hero h1 { font-size: 9.5vw; max-width: 95vw; }
  .sub { max-width: 95vw; }
}

/* ---------- ownership seal above the closing pull line ---------- */
.own-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 58px;
}
.own-line {
  flex: 1;
  max-width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border));
}
.own-line-r {
  background: linear-gradient(90deg, var(--accent-border), transparent);
}
.own-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: none;
  border-radius: 16px;
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--accent-border);
  box-shadow: 0 0 34px -10px var(--accent-glow), inset 0 1px 0 rgba(251, 250, 247, 0.08);
  animation: seal-breathe 4.5s ease-in-out infinite;
}
.own-mark img { width: 32px; height: 32px; }
@keyframes seal-breathe {
  0%, 100% { box-shadow: 0 0 26px -10px var(--accent-glow), inset 0 1px 0 rgba(251, 250, 247, 0.08); }
  50% { box-shadow: 0 0 44px -8px var(--accent-glow), inset 0 1px 0 rgba(251, 250, 247, 0.08); }
}
.own-seal + .pull { margin-top: 20px; }

/* center the form's submit button (was hugging the left edge) */
.glass-form .btn-lg,
.modal form .btn-lg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

/* tighten the run-out after the ownership seal */
.band-snug { padding-bottom: clamp(44px, 6vw, 72px); }
.own-seal { margin-top: 44px; }

/* ============================================================
   Booking flow — qualifiers → details → calendar → confirm
   Entirely ours: no iframe, no GHL styling, no redirects.
   ============================================================ */
.bk {
  background: var(--bg-elev);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(22px, 3.5vw, 36px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(251, 250, 247, 0.06);
  max-width: 760px;
  margin: 36px auto 0;
  text-align: left;
}

/* progress rail */
.bk-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  flex-wrap: nowrap;
}
.bk-step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.bk-step + .bk-step::before {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--border);
  margin-right: 4px;
}
.bk-step-dot {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--cream-55);
  border: 1px solid var(--border);
  background: rgba(251, 250, 247, 0.04);
  transition: all 0.35s var(--ease-out);
}
.bk-step-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bk-step.is-now .bk-step-dot {
  border-color: var(--accent-bright);
  background: var(--accent-soft);
  color: var(--accent-bright);
  box-shadow: 0 0 20px -4px var(--accent-glow);
}
.bk-step.is-now .bk-step-label { color: var(--cream); }
.bk-step.is-done .bk-step-dot {
  border-color: rgba(82, 199, 106, 0.4);
  background: var(--good-soft);
  color: var(--good);
}

.bk-lede {
  font-size: 15.5px;
  color: var(--cream-70);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* fields */
.bk-field { display: block; margin-bottom: 16px; }
.bk-field > span {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--cream-70);
  margin-bottom: 7px;
}
.bk-field input, .bk-field select, .bk-field textarea {
  display: block;
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--cream);
  background: rgba(5, 9, 15, 0.6);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 13px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bk-field textarea { resize: vertical; min-height: 88px; }
.bk-field input::placeholder, .bk-field textarea::placeholder { color: var(--cream-55); }
.bk-field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--cream-55) 50%), linear-gradient(135deg, var(--cream-55) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.bk-field select:invalid { color: var(--cream-55); }
.bk-field input:focus, .bk-field select:focus, .bk-field textarea:focus {
  outline: none;
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(0, 119, 232, 0.22);
}
.bk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bk-hidden { position: absolute; left: -9999px; }

.bk-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.bk-next { margin-top: 8px; }
.bk-back {
  background: none;
  border: none;
  color: var(--cream-55);
  font-family: var(--sans);
  font-size: 14.5px;
  cursor: pointer;
  padding: 10px 2px;
  transition: color 0.2s ease;
}
.bk-back:hover { color: var(--accent-bright); }
.bk-back:disabled { opacity: 0.4; cursor: default; }

.bk-err {
  margin: 12px 0 0;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  background: var(--amber-soft);
  border: 1px solid rgba(240, 177, 61, 0.3);
  color: var(--amber);
}
.bk-err-block { color: var(--cream-70); font-size: 15px; text-align: center; padding: 30px 0; }
.bk-err-block a { color: var(--accent-bright); }

.bk-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 46px 0;
  color: var(--cream-55);
  font-family: var(--mono);
  font-size: 13px;
}
.bk-spin {
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--accent-bright);
  animation: bk-spin 0.75s linear infinite;
}
@keyframes bk-spin { to { transform: rotate(360deg); } }

/* calendar */
.bk-cal-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 24px;
  align-items: start;
}
.bk-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.bk-cal-month { font-family: var(--serif); font-size: 20px; color: var(--cream); }
.bk-nav {
  width: 32px; height: 32px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: rgba(251, 250, 247, 0.04);
  color: var(--cream-70);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.bk-nav:hover { border-color: var(--accent-border); color: var(--accent-bright); }
.bk-dow, .bk-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.bk-dow span {
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--cream-55);
  padding-bottom: 6px;
}
.bk-day {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid transparent;
  background: none;
  color: var(--cream-55);
  font-family: var(--sans);
  font-size: 14px;
  cursor: default;
  transition: all 0.2s var(--ease-out);
}
.bk-day.is-empty { visibility: hidden; }
.bk-day.is-closed { opacity: 0.28; }
.bk-day.is-open {
  color: var(--cream);
  background: rgba(0, 119, 232, 0.09);
  border-color: var(--accent-border);
  cursor: pointer;
}
.bk-day.is-open:hover { background: rgba(0, 119, 232, 0.22); transform: translateY(-1px); }
.bk-day.is-sel {
  background: var(--accent);
  border-color: var(--accent-bright);
  color: #fff;
  box-shadow: 0 0 20px -4px var(--accent-glow);
}

.bk-times { border-left: 1px solid var(--border-soft); padding-left: 22px; }
.bk-times-head {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.bk-times-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 296px;
  overflow-y: auto;
  padding-right: 4px;
}
.bk-slot {
  padding: 11px 12px;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: rgba(5, 9, 15, 0.5);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}
.bk-slot:hover {
  border-color: var(--accent-bright);
  background: var(--accent-soft);
  transform: translateX(2px);
}
.bk-slot.is-sel { background: var(--accent); border-color: var(--accent-bright); color: #fff; }
.bk-tz {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--cream-55);
  letter-spacing: 0.03em;
}

/* confirm */
.bk-summary {
  border: 1px solid var(--accent-border);
  border-radius: 16px;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(0, 119, 232, 0.12), rgba(0, 119, 232, 0.04));
  box-shadow: 0 0 40px -16px var(--accent-glow);
  margin-bottom: 6px;
}
.bk-sum-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 14px;
}
.bk-sum-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-top: 1px solid var(--border-soft);
  font-size: 14.5px;
}
.bk-sum-row span:first-child { color: var(--cream-55); font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; align-self: center; }
.bk-sum-row span:last-child { color: var(--cream); text-align: right; }

@media (max-width: 760px) {
  .bk { padding: 20px 16px; border-radius: 18px; }
  .bk-row { grid-template-columns: 1fr; gap: 0; }
  .bk-cal-cols { grid-template-columns: 1fr; gap: 20px; }
  .bk-times { border-left: none; border-top: 1px solid var(--border-soft); padding-left: 0; padding-top: 18px; }
  .bk-times-list { max-height: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); }
  .bk-slot { text-align: center; }
  .bk-step-label { display: none; }
  .bk-step { flex: 0 0 auto; }
  .bk-step + .bk-step::before { width: 18px; flex: none; }
  .bk-steps { justify-content: center; }
  .bk-lede { font-size: 14.5px; }
}

/* booking flow inside the popup: the modal already is the card */
.modal .bk {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 20px 0 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  max-width: none;
}
.modal { max-width: 720px; }

/* ============================================================
   Guide diagrams (gd-*) — dark port of the original light
   guide figures. Boxes + connectors, no images, no SVG deps.
   ============================================================ */
.gd {
  margin: 34px 0 6px;
  padding: 22px 20px 16px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background:
    radial-gradient(120% 140% at 50% -30%, rgba(0, 119, 232, 0.07), transparent 62%),
    rgba(251, 250, 247, 0.022);
}
.gd-title {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-55);
  text-align: center;
  margin-bottom: 18px;
}
.gd figcaption, .gd-cap {
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid var(--border-soft);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--cream-55);
  text-align: center;
}
.gd-foot {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: var(--cream-55);
  text-align: center;
}

/* --- node --- */
.gd-node {
  flex: 1 1 0;
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--bg-elev);
  text-align: center;
}
.gd-node .n-step {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-55);
}
.gd-node .n-name {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}
.gd-node .n-sub {
  margin-top: 3px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--cream-55);
  line-height: 1.4;
}
/* states */
.gd-node.is-seen {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, rgba(0, 119, 232, 0.20), rgba(0, 119, 232, 0.08));
  box-shadow: 0 0 0 1px rgba(0, 119, 232, 0.12), 0 10px 30px -18px var(--accent-glow);
}
.gd-node.is-seen .n-sub { color: var(--accent-bright); }
.gd-node.is-dark {
  border-style: dashed;
  border-color: rgba(251, 250, 247, 0.10);
  background: rgba(251, 250, 247, 0.015);
}
.gd-node.is-dark .n-name { color: var(--cream-55); font-weight: 500; }
.gd-node.is-cash {
  border-color: rgba(82, 199, 106, 0.42);
  background: linear-gradient(180deg, rgba(82, 199, 106, 0.14), rgba(82, 199, 106, 0.05));
}
.gd-node.is-cash .n-name { color: #9fe4ad; }
.gd-node.is-cash .n-sub { color: rgba(159, 228, 173, 0.75); }
.gd-node.is-warn {
  border-color: rgba(240, 177, 61, 0.42);
  background: linear-gradient(180deg, rgba(240, 177, 61, 0.13), rgba(240, 177, 61, 0.04));
}
.gd-node.is-warn .n-name { color: #f5cd85; }

/* --- horizontal rail with an optional visibility cut --- */
.gd-rail { display: flex; align-items: stretch; gap: 10px; position: relative; margin-top: 14px; }
.gd-cut {
  position: relative;
  flex: 0 0 1px;
  align-self: stretch;
  margin: 0 12px;
  border-left: 1px dashed var(--amber);
  opacity: 0.75;
}
.gd-cut span {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

/* --- two-up compare --- */
.gd-duel { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: stretch; margin-top: 14px; }
.gd-duel.has-op { grid-template-columns: 1fr auto 1fr; }
.gd-op {
  align-self: center;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--cream-55);
  padding: 0 4px;
}
.gd-card {
  padding: 16px 15px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--bg-elev);
  text-align: center;
}
.gd-card.tone-warn { border-color: rgba(240, 177, 61, 0.40); background: linear-gradient(180deg, rgba(240, 177, 61, 0.10), rgba(240, 177, 61, 0.03)); }
.gd-card.tone-good { border-color: rgba(82, 199, 106, 0.40); background: linear-gradient(180deg, rgba(82, 199, 106, 0.10), rgba(82, 199, 106, 0.03)); }
.gd-card.tone-accent { border-color: var(--accent-border); background: linear-gradient(180deg, rgba(0, 119, 232, 0.16), rgba(0, 119, 232, 0.05)); }
.gd-card .c-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-55);
}
.gd-card.tone-warn .c-eyebrow { color: var(--amber); }
.gd-card.tone-good .c-eyebrow { color: #7fd992; }
.gd-card.tone-accent .c-eyebrow { color: var(--accent-bright); }
.gd-card .c-line { margin-top: 8px; font-size: 14px; color: var(--cream-70); line-height: 1.45; }
.gd-card .c-big {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.1;
  color: var(--cream);
}
.gd-card.tone-good .c-big { color: #9fe4ad; }
.gd-card.tone-accent .c-big { color: var(--accent-bright); }
.gd-card .c-note { margin-top: 6px; font-family: var(--mono); font-size: 10px; color: var(--cream-55); }
.gd-card .c-strong { margin-top: 10px; font-size: 15px; font-weight: 600; color: var(--cream); }

/* --- gate: fills -> gate -> buyers --- */
.gd-gate { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 8px; align-items: center; }
.gd-arrow {
  align-self: center;
  color: var(--cream-55);
  font-size: 18px;
  line-height: 1;
  text-align: center;
}
.gd-stack { display: grid; gap: 6px; }
.gd-chip {
  padding: 7px 9px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.03);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cream-55);
  text-align: center;
}
.gd-chip.is-ghost { opacity: 0.4; }

/* --- converge: many sources -> one target --- */
.gd-converge { display: grid; gap: 0; }
.gd-target {
  justify-self: center;
  padding: 12px 26px;
  border: 1px solid var(--accent-border);
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(0, 119, 232, 0.26), rgba(0, 119, 232, 0.10));
  box-shadow: 0 14px 40px -22px var(--accent-glow);
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  text-align: center;
}
.gd-wires {
  height: 46px;
  position: relative;
  background:
    linear-gradient(to bottom, var(--accent-border), transparent) no-repeat center / 1px 100%;
}
.gd-wires span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0 8px;
  background: var(--bg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--accent-bright);
  white-space: nowrap;
}

/* --- timeline (7-day window vs. later close) --- */
.gd-time { position: relative; padding-top: 6px; }
.gd-track {
  position: relative;
  height: 8px;
  border-radius: 99px;
  background: rgba(251, 250, 247, 0.07);
  overflow: hidden;
}
.gd-track i {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
}
.gd-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--cream-55);
}
.gd-flags { display: flex; gap: 10px; margin-top: 16px; }

@media (max-width: 720px) {
  .gd { padding: 18px 14px 14px; }
  .gd-rail { flex-wrap: wrap; }
  .gd-rail .gd-node { flex: 1 1 44%; }
  .gd-cut { flex: 0 0 100%; height: 1px; margin: 4px 0 20px; border-left: 0; border-top: 1px dashed var(--amber); }
  .gd-cut span { top: 6px; }
  .gd-flags { flex-direction: column; }
  .gd-duel, .gd-duel.has-op { grid-template-columns: 1fr; }
  .gd-op { justify-self: center; padding: 2px 0; }
  .gd-gate { grid-template-columns: 1fr; }
  .gd-arrow { transform: rotate(90deg); padding: 2px 0; }
}

#lane .tier-num { text-transform: uppercase; }

/* ============================================================
   Lead gate on the CAC calculator — one north-star number is
   free, the rest of the read is blurred until contact capture.
   ============================================================ */
.lk { position: relative; }
.lk-inner {
  filter: blur(8px);
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
  transition: filter 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}
.lk.is-open .lk-inner {
  filter: none;
  opacity: 1;
  pointer-events: auto;
  user-select: auto;
}
.lk-veil {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 9, 15, 0.35) 55%, rgba(5, 9, 15, 0.6));
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}
.lk.is-open .lk-veil { opacity: 0; visibility: hidden; }
.lk-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border: 1px solid var(--accent-border);
  border-radius: 99px;
  background: rgba(5, 9, 15, 0.82);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
  box-shadow: 0 12px 34px -18px var(--accent-glow);
}

/* the ask */
.lk-gate { margin-top: 22px; text-align: center; }
.lk-gate-head {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 6px;
}
.lk-gate-sub {
  font-size: 14px;
  line-height: 1.55;
  color: var(--cream-70);
  margin: 0 auto 16px;
  max-width: 42ch;
}
.lk-btn { width: 100%; }
.lk-fineprint {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--cream-55);
}

.lk-form {
  margin-top: 18px;
  text-align: left;
  border-top: 1px solid var(--border-soft);
  padding-top: 18px;
  animation: lk-drop 0.35s var(--ease-out);
}
@keyframes lk-drop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.lk-form .form-row { gap: 12px; }
.lk-form label { margin-bottom: 12px; }
.lk-msg { margin-top: 12px; font-size: 13.5px; line-height: 1.5; text-align: center; }
.lk-msg.is-bad { color: var(--amber); }
.lk-msg.is-good { color: var(--good); }

/* unlocked confirmation */
.lk-done {
  margin-top: 22px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(82, 199, 106, 0.35);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(82, 199, 106, 0.12), rgba(82, 199, 106, 0.04));
  text-align: center;
}
.lk-done p { font-size: 14px; line-height: 1.55; color: var(--cream-85); }
.lk-done .lk-done-head {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--cream);
  margin-bottom: 6px;
}

@media (prefers-reduced-motion: reduce) {
  .lk-inner, .lk-veil { transition: none; }
  .lk-form { animation: none; }
}
