/* ── GLOBAL SCROLL BEHAVIOUR ──────────────────────────────────── */
html {
  scroll-padding-bottom: 120px;
  scrollbar-gutter: stable; /* reserves scrollbar space permanently — eliminates breathing/layout-shift from scrollbar appearing/disappearing */
  overflow-y: scroll; /* fallback for browsers that don't support scrollbar-gutter */
}

/* ── TOKENS ───────────────────────────────────────────────────── */
:root {
  color-scheme: dark;
  --bg: #05070f;
  --bg-elev: #0b0f1d;
  --glass: rgba(255, 255, 255, 0.05);
  --accent: #3be7c8;
  --accent-2: #89a6ff;
  --accent-3: #c084fc;
  --text: #f0f0f4;
  --muted: #8a90a8;
  --stroke: rgba(255, 255, 255, 0.1);
  --stroke-bright: rgba(255, 255, 255, 0.18);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  --radius-lg: 24px;
  --radius-sm: 12px;
  --max-width: 1220px;
}

/* ── UTILITY ──────────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── BASE ─────────────────────────────────────────────────────── */
body {
  min-height: 100vh;
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  overflow-anchor: none; /* prevent scroll-anchoring from auto-adjusting position when async content loads */
  position: relative;
}

/* ── ANIMATED BG ORBS ─────────────────────────────────────────── */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
}

.orb-1 {
  width: 70vw; height: 70vw;
  top: -20vh; left: -20vw;
  background: radial-gradient(circle, rgba(59, 231, 200, 0.22), transparent 65%);
  animation: orbDrift1 18s ease-in-out infinite alternate;
}

.orb-2 {
  width: 60vw; height: 60vw;
  bottom: -10vh; right: -15vw;
  background: radial-gradient(circle, rgba(137, 166, 255, 0.25), transparent 65%);
  animation: orbDrift2 22s ease-in-out infinite alternate;
}

.orb-3 {
  width: 40vw; height: 40vw;
  top: 40vh; left: 40vw;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.18), transparent 65%);
  animation: orbDrift3 16s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(8vw, 6vh) scale(1.1); }
}
@keyframes orbDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-6vw, -8vh) scale(1.15); }
}
@keyframes orbDrift3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-10vw, 10vh) scale(0.9); }
}

/* ── GRAIN TEXTURE ────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 1;
  animation: grainShift 0.4s steps(1) infinite;
}

@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, -3%); }
  50%  { transform: translate(3%, 2%); }
  75%  { transform: translate(-1%, 4%); }
  100% { transform: translate(2%, -1%); }
}

/* ── CURSOR SPOTLIGHT ─────────────────────────────────────────── */
.cursor-spotlight {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 231, 200, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

/* ── LAYOUT LAYERS ────────────────────────────────────────────── */
main, header, footer { position: relative; z-index: 3; }

/* ── NAV ──────────────────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(24px, 4vw, 64px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #6B6B8A 0%, #A0A0C0 45%, rgba(232,238,255,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

a.logo { text-decoration: none; }

.nav-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.nav-tagline {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.72);
  opacity: 1;
  margin: 0;
  padding-left: 2px;
}

.logo-sphere {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%,
    rgba(255,255,255,0.8) 0%,
    rgba(59,231,200,0.6) 25%,
    rgba(137,166,255,0.4) 55%,
    transparent 78%);
  box-shadow: 0 0 18px rgba(59,231,200,0.5);
  z-index: 1;
  mix-blend-mode: screen;
  pointer-events: none;
  display: inline-block;
  opacity: 0.75;
  animation: sphereFloat 5s ease-in-out infinite;
}

@keyframes sphereFloat {
  0%,100% { transform: translateY(-50%) scale(1);    opacity: 0.65; }
  50%      { transform: translateY(calc(-50% - 3px)) scale(1.08); opacity: 0.8; }
}

.nav-actions { display: flex; align-items: center; gap: 16px; }

.tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(59, 231, 200, 0.12);
  border: 1px solid rgba(59, 231, 200, 0.25);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
button { font: inherit; border: none; cursor: pointer; }

.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--stroke);
  padding: 10px 22px;
  border-radius: 999px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.ghost:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 231, 200, 0.12);
}

a.ghost { text-decoration: none; display: inline-block; }

.primary {
  background: linear-gradient(135deg, #1A9E8C 0%, #30CEBB 50%, #7AEDE0 100%);
  color: #07090f;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 0 40px rgba(48, 206, 187, 0.25), var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(48, 206, 187, 0.4), var(--shadow);
}

/* Small variant — nav button */
.primary--sm {
  font-size: 0.82rem;
  padding: 9px 20px;
}

/* Warm volt variant — hero form submit */
.primary--volt {
  background: linear-gradient(135deg, #7A8800 0%, #CEDE3A 60%, #E5F020 100%);
  box-shadow: 0 0 40px rgba(206, 222, 58, 0.2), var(--shadow);
}
.primary--volt:hover {
  box-shadow: 0 0 60px rgba(206, 222, 58, 0.35), var(--shadow);
}

/* Hero entrance handled by motion.js for spring-physics animation */

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px clamp(24px, 4vw, 64px) 100px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.68rem;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 3.8vw, 4rem);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}

h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h1-purple {
  background: linear-gradient(120deg, var(--accent-3), #e0aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline-main {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-style: italic;
}

.subhead {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 520px;
  line-height: 1.82;
}

.hero-props {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  max-width: 520px;
}
.hero-props li {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
}
.hero-props li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
  top: 2px;
}

.hero-cta { display: grid; gap: 16px; margin-bottom: 28px; }

/* ── INPUT SHIMMER BORDER ──────────────────────────────────────── */
.input-shimmer-wrap {
  position: relative;
  padding: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9CA3AF 0%, #C4CAD4 38%, #E2E6EC 52%, #C4CAD4 66%, #9CA3AF 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}
.input-shimmer-wrap:focus-within {
  background: linear-gradient(90deg, #9CA3AF 0%, #C4CAD4 38%, #E2E6EC 52%, #C4CAD4 66%, #9CA3AF 100%);
  background-size: 200% 100%;
}
.input-shimmer-wrap input {
  border: none !important;
  box-shadow: none !important;
  width: 100%;
  box-sizing: border-box;
  display: block;
  border-radius: inherit;
}
/* Hero waitlist variant — flex child; restore solid bg so gradient only shows as border */
.waitlist .input-shimmer-wrap {
  flex: 1;
  min-width: 220px;
}
.waitlist .input-shimmer-wrap input {
  background: #F5F5F5;
  color: #0D0F0B;
}
.waitlist .input-shimmer-wrap input::placeholder {
  color: rgba(13,15,11,0.35);
}
/* WL card variant — block with square corners */
.input-shimmer-wrap--block {
  display: block;
  border-radius: 9px;
  margin-bottom: 10px;
}
.input-shimmer-wrap--block input {
  border-radius: 7.5px;
}

.waitlist { display: flex; gap: 12px; flex-wrap: wrap; }

.waitlist input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  border: 1px solid var(--stroke);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.waitlist input:focus {
  outline: none;
}

.form-note { color: var(--muted); font-size: 0.88rem; }

/* ── WAITLIST CONVERSION BLOCK ───────────────────────────────── */
.founding-urgency {
  color: var(--muted);
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 12px;
}

.founding-bar-wrap {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.founding-bar-track {
  height: 4px;
  border-radius: 2px;
  background: #D5D6D2;
  overflow: hidden;
}

.founding-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: linear-gradient(90deg, #9CA3AF 0%, #C4CAD4 38%, #E2E6EC 52%, #C4CAD4 66%, #9CA3AF 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}

.founding-bar-label {
  color: var(--muted);
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 300;
  font-size: 11px;
  margin: 0;
}

.social-proof-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 16px;
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
  border-radius: var(--radius-sm);
}

.social-proof-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #DFE1DF;
  flex-shrink: 0;
}

.social-proof-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.social-proof-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-proof-name {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #0D0F0B;
}

.social-proof-city {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--muted);
}

.social-proof-quote {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }

.trust-pill {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
  font-size: 0.8rem;
  color: var(--muted);
}

.try-tool-link {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.try-tool-link:hover { opacity: 0.7; }

.hero-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ── HERO VISUAL ──────────────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Decorative rings behind widget */
.hw-rings {
  position: absolute;
  inset: -60px;
  pointer-events: none;
}

.hw-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hw-ring-1 {
  width: 520px; height: 520px;
  border-color: rgba(59,231,200,0.08);
  animation: ringFloat 10s ease-in-out infinite alternate;
}

.hw-ring-2 {
  width: 680px; height: 680px;
  border-color: rgba(137,166,255,0.06);
  animation: ringFloat 14s ease-in-out infinite alternate-reverse;
}

@keyframes ringFloat {
  from { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 1; }
  to   { transform: translate(-50%, -50%) scale(1.03) rotate(6deg); opacity: 0.5; }
}

/* ── HERO WIDGET (AI Property Card) ──────────────────────────── */
.hero-widget {
  width: 100%;
  max-width: 500px;
  height: 580px;
  border-radius: 24px;
  background: rgba(11,15,29,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 60px rgba(59,231,200,0.06);
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  animation: widgetFloat 6s ease-in-out infinite;
  position: relative;
}

@keyframes widgetFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Photo section */
.hw-photo-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
}

.hw-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate; /* contain layer z-indexes so they never sit above gradient/chips */
}

/* Crossfade image layers — sit inside hw-photo */
.hw-img-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform, opacity;
}

/* Ken Burns zoom — applied via JS */
@keyframes kenBurns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.06); }
}

/* Progress bar — sits in hw-photo-wrap above gradient */
.hw-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: rgba(255,255,255,0.08);
  z-index: 10;
  pointer-events: none;
}

.hw-progress-fill {
  height: 100%;
  width: 100%;
  background: #3AD6C5;
  transform-origin: left center;
  transform: scaleX(1);
}

@keyframes progressDeplete {
  0%   { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

/* Card body content entrance */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hw-content-item {
  opacity: 0;
}

.hw-content-item.entered {
  animation: fadeSlideUp 0.35s ease forwards;
}

.hw-photo-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,7,15,0.3) 0%, transparent 30%, transparent 55%, rgba(5,7,15,0.8) 100%);
  z-index: 1;
}

/* Animated scan line — AI effect */
.hw-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(59,231,200,0.6), transparent);
  box-shadow: 0 0 12px rgba(59,231,200,0.4);
  z-index: 3;
  animation: scanDown 4s ease-in-out infinite;
}

@keyframes scanDown {
  0%   { top: 0%; opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Top bar */
.hw-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 4;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hw-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(5,7,15,0.65);
  backdrop-filter: blur(10px);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(59,231,200,0.25);
}

.hw-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(59,231,200,1);
  animation: blink 2s ease-in-out infinite;
}

.hw-photo-counter {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  background: rgba(5,7,15,0.55);
  backdrop-filter: blur(8px);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

/* Floating chips */
.hw-chip {
  position: absolute;
  z-index: 4;
  background: rgba(11,15,29,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--stroke-bright);
  border-radius: 999px;
  font-size: 0.66rem;
  color: rgba(255,255,255,0.75);
  padding: 5px 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.hw-chip-a {
  bottom: 18px; left: 14px;
  animation: chipFloat 5s ease-in-out infinite;
}

.hw-chip-b {
  bottom: 18px; right: 14px;
  animation: chipFloat 5s ease-in-out 1.5s infinite;
}

@keyframes chipFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Card body */
.hw-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hw-address-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hw-address {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}

.hw-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.hw-specs {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hw-specs span {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  font-size: 0.68rem;
  color: var(--muted);
}

/* AI insight panel */
.hw-ai-panel {
  background: rgba(2,4,12,0.72);
  border: 1px solid rgba(59,231,200,0.2);
  border-radius: 12px;
  padding: 12px 14px;
}

.hw-ai-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 8px;
  opacity: 0.85;
}

.hw-ai-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(59,231,200,0.8);
  animation: blink 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

.hw-ai-text {
  font-size: 0.78rem;
  color: rgba(240,240,244,0.78);
  line-height: 1.55;
  height: 3.5em;
  overflow: hidden;
}

/* Metrics bar */
.hw-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 12px;
  border-top: 1px solid var(--stroke);
}

.hw-metric {
  flex: 1;
  text-align: center;
}

.hw-metric-n {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 3px;
}

.hw-metric-l {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hw-metric-div {
  width: 1px;
  height: 32px;
  background: var(--stroke);
  flex-shrink: 0;
}

.hw-view-btn {
  margin-left: auto;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1A9E8C 0%, #30CEBB 50%, #7AEDE0 100%);
  color: #05070f;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hw-view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(48,206,187,0.35);
}

/* ── CARD DECK ────────────────────────────────────────────────── */
.card-deck {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.deck-card {
  position: absolute;
  width: 256px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.34, 1.4, 0.64, 1),
              opacity 0.45s ease,
              box-shadow 0.4s ease;
  will-change: transform;
}

.deck-card[data-pos="front"] {
  transform: rotate(-1deg) translate(0, 0) scale(1);
  z-index: 3;
  opacity: 1;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.1);
}

.deck-card[data-pos="mid"] {
  transform: rotate(5deg) translate(22px, 14px) scale(0.93);
  z-index: 2;
  opacity: 0.72;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
}

.deck-card[data-pos="back"] {
  transform: rotate(-6deg) translate(-20px, 22px) scale(0.86);
  z-index: 1;
  opacity: 0.42;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.deck-card[data-pos="front"]:hover {
  transform: rotate(0deg) translate(0, -6px) scale(1.02);
  box-shadow: 0 40px 100px rgba(0,0,0,0.75), 0 0 0 1px rgba(59,231,200,0.25);
}

.deck-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

.deck-card[data-pos="front"] .deck-thumb { transform: scale(1.05); }
.deck-card[data-pos="front"]:hover .deck-thumb { transform: scale(1.08); }

.deck-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px 16px;
  background: linear-gradient(to top, rgba(5,7,15,0.95) 0%, rgba(5,7,15,0.4) 60%, transparent 100%);
}

.deck-card-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-2);
  margin-bottom: 4px;
}

.deck-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.deck-nav {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
}

.deck-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.22);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.deck-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.card-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: var(--accent-2);
  margin-bottom: 2px;
}

/* ── TICKER ───────────────────────────────────────────────────── */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  padding: 14px 0;
  background: rgba(255,255,255,0.02);
  position: relative;
  z-index: 3;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.ticker {
  display: flex;
  width: max-content;
  animation: tickerScroll 75s linear infinite;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  will-change: transform;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker:hover { animation-play-state: paused; }

.ticker span { padding: 0 8px; }
/* Market data ticker — directional colors */
html.theme-light .tk-up  { color: #1A9E8C !important; font-weight: 500; }
html.theme-light .tk-dn  { color: #C0392B !important; font-weight: 500; }
html.theme-light .tk-nt  { color: rgba(13,15,11,0.5) !important; font-weight: 400; }
html.theme-light .tk-sep { color: rgba(13,15,11,0.2) !important; }
/* Dark theme fallback */
.tk-up  { color: #3AD6C5; font-weight: 500; }
.tk-dn  { color: #E57373; font-weight: 500; }
.tk-nt  { color: var(--muted); font-weight: 400; }
/* Remove old nth-child coloring — replaced by explicit classes */

/* ── STATEMENT ────────────────────────────────────────────────── */
.statement {
  padding: 140px clamp(24px, 4vw, 64px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.statement-inner {
  border-left: 3px solid var(--accent);
  padding-left: 48px;
  max-width: 900px;
}

blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.22;
  font-weight: 500;
  margin: 20px 0 28px;
  letter-spacing: -0.01em;
}

.highlight {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.statement-sub {
  font-size: 1.05rem;
  color: var(--muted);
  font-style: italic;
}

/* ── STATS ROW ────────────────────────────────────────────────── */
.stats-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto 60px;
  padding: 0 clamp(24px, 4vw, 64px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}

.stat-block {
  flex: 1;
  min-width: 160px;
  padding: 48px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stat-block p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 160px;
}

.stat-big {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.2rem;
  font-weight: 600;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-big--word { font-size: 4.2rem; }

.stat-head {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stat-unit {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
}

.stat-divider {
  width: 1px;
  align-self: stretch;
  background: var(--stroke);
  flex-shrink: 0;
  margin: 32px 0;
}

/* ── SECTIONS ─────────────────────────────────────────────────── */
.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-head h2 { margin-bottom: 16px; }
.section-head p  { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }

h2 { font-size: clamp(2.4rem, 4vw, 4rem); line-height: 1.1; letter-spacing: -0.01em; }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }

/* ── IMMERSIVE ────────────────────────────────────────────────── */
.immersive {
  padding: 120px clamp(24px, 4vw, 64px) 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.immersive-stage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  margin-top: 36px;
}

.immersive-frame {
  position: relative;
  height: 440px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid var(--stroke-bright);
  overflow: hidden;
  perspective: 900px;
  transform-style: preserve-3d;
  box-shadow: var(--shadow);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.2s ease-out;
}

/* ── CINEMATIC FRAME (replaces layered immersive) ─────────────── */
.cine-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
  box-shadow: var(--shadow);
  cursor: default;
}

.cine-photo {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600210492493-0946911123ea?w=1200&q=85') center/cover no-repeat;
  filter: brightness(0.88) saturate(1.08) contrast(1.04);
  transform: scale(1.02);
  transition: transform 8s ease-out;
}
.cine-frame:hover .cine-photo { transform: scale(1.0); }

/* Cinematic vignette */
.cine-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 45%, rgba(0,0,0,0.45) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.28) 0%, transparent 28%, transparent 58%, rgba(0,0,0,0.72) 100%);
  z-index: 1;
  pointer-events: none;
}

.cine-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cine-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(5,7,15,0.65);
  backdrop-filter: blur(10px);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(59,231,200,0.28);
}

.cine-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(59,231,200,1);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

.cine-address-tag {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  background: rgba(5,7,15,0.55);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 999px;
}

/* AI Hotspots */
.cine-hotspot {
  position: absolute;
  z-index: 4;
  cursor: pointer;
}

.cine-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(59,231,200,0.2);
  position: relative;
}

.cine-ring {
  position: absolute;
  width: 26px; height: 26px;
  top: -7.5px; left: -7.5px;
  border-radius: 50%;
  border: 1px solid rgba(59,231,200,0.5);
  animation: hotspot-pulse 2.5s ease-in-out infinite;
}

@keyframes hotspot-pulse {
  0%,100% { transform: scale(1);   opacity: 0.8; }
  50%      { transform: scale(1.7); opacity: 0; }
}

.cine-tip {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(5,7,15,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--stroke-bright);
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 0.74rem;
  white-space: nowrap;
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.cine-hotspot:hover .cine-tip { opacity: 1; }

.cine-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cine-ai-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.cine-progress {
  display: flex;
  gap: 4px;
  align-items: center;
}

.cine-progress span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
}
.cine-progress span:nth-child(1) { width: 32px; background: var(--accent); }
.cine-progress span:nth-child(2) { width: 18px; }
.cine-progress span:nth-child(3) { width: 18px; }
.cine-progress span:nth-child(4) { width: 18px; }
.cine-progress span:nth-child(5) { width: 18px; }
.cine-progress span:nth-child(6) { width: 18px; }
.cine-progress span:nth-child(7) { width: 18px; }

.immersive-caption h3 { margin: 12px 0; }
.immersive-caption p  { color: var(--muted); }

.caption-stats { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ── PROPERTY SHOWCASE ────────────────────────────────────────── */
.showcase {
  position: relative;
  width: 100%;
  height: 680px;
  background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1800&q=85') center/cover no-repeat;
  overflow: hidden;
  margin: 60px 0;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,7,15,0.97) 0%,
    rgba(5,7,15,0.82) 42%,
    rgba(5,7,15,0.25) 72%,
    transparent 100%
  );
  z-index: 1;
}

.showcase-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
}

.showcase-left { max-width: 500px; }

.showcase-address {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.1;
  margin: 12px 0 6px;
  color: var(--text);
}

.showcase-city {
  display: block;
  font-size: 0.6em;
  color: var(--muted);
  font-weight: 400;
  margin-top: 6px;
}

.showcase-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.showcase-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.showcase-chips span {
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.showcase-metrics {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--stroke);
  margin-bottom: 36px;
}

.showcase-metric-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 5px;
}

.showcase-metric-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.showcase-cta {
  display: inline-block;
  padding: 13px 28px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--accent);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}

.showcase-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

@media (max-width: 900px) {
  /* AI bubble overlaps stats bar at narrower widths — hide it */
  html.theme-light .showcase-ai-bubble,
  html.theme-light .sc-toast { display: none !important; }
}

@media (max-width: 640px) {
  /* Give showcase a real height on mobile — all light-theme children are absolute,
     so height:auto collapses to 0 and overflow:hidden clips everything.
     540px gives enough vertical room for headline → gap → stats bar → CTA */
  .showcase { height: 540px; }
  .showcase-overlay { background: rgba(5,7,15,0.88); }
  .showcase-metrics { gap: 20px; }
  /* Tighten stats bar so it fits on narrow screens */
  html.theme-light .sc-stat { padding: 0 16px; }
}

/* ── GLOW BORDER ANIMATION ────────────────────────────────────── */
.glow-border {
  position: relative;
}

.glow-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderSpin 4s linear infinite;
  pointer-events: none;
}

@keyframes borderSpin {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── INTERACTIVE CARD EXPAND ──────────────────────────────────── */
.card-expand-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.36s ease;
}
.card-expand-body > div { min-height: 0; }

.expandable.open .card-expand-body { grid-template-rows: 1fr; }

.card-expand-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--stroke);
  font-size: 0.76rem;
  color: var(--accent);
  cursor: pointer;
  user-select: none;
  letter-spacing: 0.04em;
}

.card-expand-trigger svg {
  width: 15px; height: 15px;
  stroke: var(--accent);
  transition: transform 0.32s ease;
  flex-shrink: 0;
}
.expandable.open .card-expand-trigger svg { transform: rotate(180deg); }

.card-detail {
  padding-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

.card-detail-example {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(59,231,200,0.06);
  border: 1px solid rgba(59,231,200,0.15);
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(240,240,244,0.65);
  line-height: 1.6;
}

/* ── COPILOT ──────────────────────────────────────────────────── */
.copilot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.copilot-card {
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  border: 1px solid var(--stroke);
  border-top: 2px solid rgba(59,231,200,0.3);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Terminal scanline shimmer at top */
.copilot-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,231,200,0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.copilot-card:hover::before { opacity: 1; }

.copilot-card:hover {
  border-color: rgba(59,231,200,0.25);
  background: radial-gradient(ellipse at 50% -10%, rgba(59,231,200,0.07) 0%, transparent 62%), var(--bg-elev);
  box-shadow: 0 0 0 1px rgba(59,231,200,0.08) inset, 0 6px 36px rgba(59,231,200,0.05);
}
.copilot-card.open  { border-color: rgba(59,231,200,0.3); background: linear-gradient(160deg, rgba(59,231,200,0.04), var(--bg-elev)); }

.copilot-card .card-label {
  font-family: "DM Mono", "Fira Code", ui-monospace, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
}
.copilot-card h3 { margin: 8px 0; }
.copilot-card p  { color: var(--muted); font-size: 0.92rem; }

.copilot-selected,
.persona-selected,
.audience-selected {
  background: linear-gradient(140deg, rgba(192,132,252,0.12), rgba(137,166,255,0.08));
  border-color: rgba(192,132,252,0.45) !important;
  box-shadow: 0 0 40px rgba(192,132,252,0.12), 0 24px 60px rgba(0,0,0,0.4);
}

/* ── PERSONALIZATION — single-column data pipeline ────────────── */
.persona-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

/* Connecting vertical line down the icon column */
.persona-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 47px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(137,166,255,0.25) 0%, rgba(137,166,255,0.08) 100%);
  pointer-events: none;
  z-index: 0;
}

.persona-track {
  padding: 28px 32px;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--stroke);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}
.persona-track:first-child { border-top: 1px solid var(--stroke); }
.persona-track:last-child  { border-bottom: none; }
.persona-track:hover {
  background: linear-gradient(90deg, rgba(137,166,255,0.05) 0%, transparent 60%);
  box-shadow: none;
}
.persona-track:hover .persona-icon { transform: translateX(4px); }
.persona-track.open  { background: linear-gradient(90deg, rgba(137,166,255,0.07) 0%, transparent 60%); }

/* Per-row icon accent — creates a "signal building up" visual rhythm */
.persona-grid .persona-track:nth-child(1) .persona-icon { background: rgba(59,231,200,0.1);  border-color: rgba(59,231,200,0.2);  }
.persona-grid .persona-track:nth-child(2) .persona-icon { background: rgba(137,166,255,0.1); border-color: rgba(137,166,255,0.2); }
.persona-grid .persona-track:nth-child(3) .persona-icon { background: rgba(192,132,252,0.1); border-color: rgba(192,132,252,0.2); }
.persona-grid .persona-track:nth-child(4) .persona-icon { background: rgba(229,255,31,0.08); border-color: rgba(229,255,31,0.18); }
.persona-grid .persona-track:nth-child(1) .persona-icon svg { stroke: var(--accent); }
.persona-grid .persona-track:nth-child(2) .persona-icon svg { stroke: var(--accent-2); }
.persona-grid .persona-track:nth-child(3) .persona-icon svg { stroke: var(--accent-3); }
.persona-grid .persona-track:nth-child(4) .persona-icon svg { stroke: #cede3a; }

.persona-track h3 { margin: 0 0 8px; }
.persona-track p  { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }

.persona-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(137,166,255,0.1);
  border: 1px solid rgba(137,166,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.persona-icon svg { width: 20px; height: 20px; stroke: var(--accent-2); }

.persona-content { flex: 1; min-width: 0; }

@media (max-width: 680px) {
  .persona-grid { grid-template-columns: 1fr; }
}

/* ── AUDIENCE ─────────────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.audience-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

/* Resting-state identity — each audience card is visually distinct */
.audience-grid .audience-card:nth-child(1) {
  background: linear-gradient(145deg, rgba(59,231,200,0.07) 0%, var(--bg-elev) 55%);
  border-color: rgba(59,231,200,0.18);
}
.audience-grid .audience-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(137,166,255,0.07) 0%, var(--bg-elev) 55%);
  border-color: rgba(137,166,255,0.18);
}
.audience-grid .audience-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(192,132,252,0.07) 0%, var(--bg-elev) 55%);
  border-color: rgba(192,132,252,0.18);
}
/* Each card gets its own accent — teal / indigo / purple */
.audience-grid .audience-card:nth-child(1):hover {
  border-color: rgba(59,231,200,0.3);
  background: linear-gradient(135deg, rgba(59,231,200,0.05) 0%, transparent 52%);
  box-shadow: inset 3px 0 0 rgba(59,231,200,0.32);
}
.audience-grid .audience-card:nth-child(2):hover {
  border-color: rgba(137,166,255,0.3);
  background: linear-gradient(135deg, rgba(137,166,255,0.05) 0%, transparent 52%);
  box-shadow: inset 3px 0 0 rgba(137,166,255,0.32);
}
.audience-grid .audience-card:nth-child(3):hover {
  border-color: rgba(192,132,252,0.32);
  background: linear-gradient(135deg, rgba(192,132,252,0.05) 0%, transparent 52%);
  box-shadow: inset 3px 0 0 rgba(192,132,252,0.32);
}
.audience-card.open  { border-color: rgba(59,231,200,0.3); }
.audience-card.open .audience-tag { background: rgba(59,231,200,0.12); border-color: rgba(59,231,200,0.35); color: var(--accent); }

.audience-card p { color: var(--muted); font-size: 0.92rem; }


.audience-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--stroke);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  width: fit-content;
}
/* Per-card audience-tag accent colors */
.audience-grid .audience-card:nth-child(2) .audience-tag { color: var(--accent-2); border-color: rgba(137,166,255,0.22); }
.audience-grid .audience-card:nth-child(3) .audience-tag { color: var(--accent-3); border-color: rgba(192,132,252,0.22); }

.audience-price {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.9rem;
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── TOOLS (landing) ──────────────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.tool-card {
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.tool-card:hover {
  border-color: var(--stroke-bright);
  transform: translateY(-3px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.35);
}

.tool-card h3 { margin: 0 0 10px; }
.tool-card p  { color: var(--muted); font-size: 0.92rem; }

.tool-featured {
  background: linear-gradient(140deg, rgba(59, 231, 200, 0.1), rgba(137, 166, 255, 0.08));
  border-color: rgba(59,231,200,0.3);
  box-shadow: 0 0 40px rgba(59,231,200,0.08), 0 24px 60px rgba(0,0,0,0.4);
}

.tool-selected {
  background: linear-gradient(140deg, rgba(192,132,252,0.12), rgba(137,166,255,0.08));
  border-color: rgba(192,132,252,0.45);
  box-shadow: 0 0 40px rgba(192,132,252,0.12), 0 24px 60px rgba(0,0,0,0.4);
}

/* ── TOOL DEMO PANELS ─────────────────────────────────────────── */
.tool-demo-panel {
  margin-top: 24px;
  animation: panelReveal 0.4s ease both;
}

@keyframes panelReveal {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CINEMATIC PANEL ──────────────────────────────────────────── */
.cine-panel {
  border-radius: var(--radius-lg);
  background: rgba(11,15,29,0.92);
  border: 1px solid rgba(192,132,252,0.18);
  box-shadow: 0 0 60px rgba(192,132,252,0.04), 0 24px 64px rgba(0,0,0,0.45);
  overflow: hidden;
}

.cine-panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}

.cine-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(192,132,252,0.12);
  border: 1px solid rgba(192,132,252,0.25);
  font-size: 0.68rem;
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.cine-panel-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 8px rgba(192,132,252,0.9);
  animation: livePulse 2s ease-in-out infinite;
}

.cine-panel-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.cine-panel-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 720px) {
  .cine-panel-body { grid-template-columns: 1fr; }
}

.cine-panel-preview {
  position: relative;
  min-height: 240px;
  background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=800&q=80') center/cover;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.cine-panel-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,7,15,0.2), rgba(5,7,15,0.65));
}

.cine-panel-preview-badge {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(5,7,15,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.65rem;
  color: rgba(240,240,244,0.8);
  backdrop-filter: blur(8px);
}

.cine-panel-hotspot {
  position: absolute;
  cursor: pointer;
}

.cine-panel-steps {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cine-panel-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cine-panel-step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--accent-3);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}

.cine-panel-step-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.cine-panel-step-body {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.cine-panel-vs-teaser {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 28px 28px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(192,132,252,0.06);
  border: 1px solid rgba(192,132,252,0.15);
}

.cine-panel-vs-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(192,132,252,0.12);
  border: 1px solid rgba(192,132,252,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-3);
  flex-shrink: 0;
}

.cine-panel-vs-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-3);
  margin: 0 0 3px;
}

.cine-panel-vs-body {
  font-size: 0.79rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}


.tool-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(59, 231, 200, 0.15);
  border: 1px solid rgba(59, 231, 200, 0.3);
  color: var(--accent);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  width: fit-content;
}

.tool-badge-soon {
  background: rgba(137, 166, 255, 0.12);
  border-color: rgba(137, 166, 255, 0.25);
  color: var(--accent-2);
}

.tool-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.tool-meta span {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--stroke);
  font-size: 0.75rem;
  color: var(--muted);
}

.tool-cta {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.88rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.tool-cta:hover { opacity: 0.7; }

/* ── LISTING COPY DEMO WIDGET ─────────────────────────────────── */
.listing-demo {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  background: rgba(11,15,29,0.92);
  border: 1px solid rgba(59,231,200,0.18);
  box-shadow: 0 0 60px rgba(59,231,200,0.04), 0 24px 64px rgba(0,0,0,0.45);
  overflow: hidden;
}

.listing-demo-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  flex-wrap: wrap;
}

.listing-demo-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  flex: 1;
}

.listing-demo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(59,231,200,0.9);
  animation: livePulse 2s ease-in-out infinite;
}

.listing-demo-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid var(--stroke);
}

.listing-tab {
  padding: 5px 14px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.73rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.listing-tab.active {
  background: rgba(59,231,200,0.18);
  color: var(--accent);
  border: 1px solid rgba(59,231,200,0.3);
}

.listing-copy-btn {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.73rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.listing-copy-btn:hover { color: var(--accent); border-color: rgba(59,231,200,0.4); background: rgba(59,231,200,0.06); }
.listing-copy-btn.copied { color: var(--accent); }

.listing-demo-body {
  padding: 24px 28px 28px;
  min-height: 130px;
}

.listing-demo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.listing-demo-meta-pill {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--stroke);
  font-size: 0.72rem;
  color: var(--muted);
}

.listing-demo-text {
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(240,240,244,0.88);
  min-height: 4.5em;
}

.listing-demo-cursor {
  display: inline-block;
  color: var(--accent);
  font-weight: 300;
  animation: cursorBlink 0.9s step-end infinite;
  margin-left: 1px;
  font-size: 1.1rem;
  line-height: 1;
}

@keyframes cursorBlink {
  0%,100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── AI COPILOT CHAT DEMO ─────────────────────────────────────── */
.copilot-demo {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  background: rgba(11,15,29,0.92);
  border: 1px solid rgba(137,166,255,0.2);
  box-shadow: 0 0 60px rgba(137,166,255,0.04), 0 24px 64px rgba(0,0,0,0.45);
  overflow: hidden;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.copilot-demo-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}

.copilot-demo-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59,231,200,0.25), rgba(137,166,255,0.25));
  border: 1px solid rgba(137,166,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  flex-shrink: 0;
}

.copilot-demo-title { flex: 1; }

.copilot-demo-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.copilot-demo-sub {
  font-size: 0.73rem;
  color: var(--muted);
  margin: 0;
}

.copilot-demo-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.copilot-demo-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(59,231,200,0.9);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.copilot-demo-messages {
  padding: 20px 22px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 80px;
  max-height: 280px;
  overflow-y: auto;
}

.copilot-demo-messages::-webkit-scrollbar { width: 4px; }
.copilot-demo-messages::-webkit-scrollbar-track { background: transparent; }
.copilot-demo-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 2px; }

.copilot-msg {
  display: flex;
  gap: 10px;
  animation: msgSlideIn 0.3s ease both;
}

@keyframes msgSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.copilot-msg p {
  padding: 11px 16px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 82%;
  margin: 0;
}

.copilot-msg-ai p {
  background: rgba(137,166,255,0.1);
  border: 1px solid rgba(137,166,255,0.18);
  color: rgba(240,240,244,0.9);
  border-bottom-left-radius: 4px;
}

.copilot-msg-user {
  justify-content: flex-end;
}

.copilot-msg-user p {
  background: rgba(59,231,200,0.12);
  border: 1px solid rgba(59,231,200,0.2);
  color: var(--text);
  border-bottom-right-radius: 4px;
}

.copilot-typing p {
  background: rgba(137,166,255,0.07);
  border: 1px solid rgba(137,166,255,0.12);
  color: var(--muted);
  font-style: italic;
  border-bottom-left-radius: 4px;
}

.copilot-demo-chips {
  padding: 12px 22px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.copilot-chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(137,166,255,0.25);
  background: rgba(137,166,255,0.06);
  color: var(--accent-2);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s, transform 0.15s;
}

.copilot-chip:hover {
  background: rgba(137,166,255,0.14);
  border-color: rgba(137,166,255,0.4);
  transform: translateY(-1px);
}

.copilot-chip:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* ── DIFFERENTIATORS — editorial numbered list ────────────────── */
.diff-grid { display: grid; gap: 0; }

.diff-card {
  display: grid;
  grid-template-columns: 88px 1fr 2fr;
  gap: 32px;
  align-items: center;
  padding: 32px 8px;
  transition: background 0.3s, box-shadow 0.3s, transform 0.25s;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--stroke);
  transition: background 0.3s;
}
.diff-card:first-child { border-top: 1px solid var(--stroke); }

.diff-card:hover {
  background: rgba(255,255,255,0.03);
  box-shadow: inset 3px 0 0 rgba(59,231,200,0.3);
  border-color: inherit;
}

.diff-card h3 { margin: 0; font-size: 1.02rem; }
.diff-card p  { color: var(--muted); font-size: 0.87rem; line-height: 1.65; }

.diff-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.diff-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.22;
  letter-spacing: -0.02em;
}

.diff-icon svg {
  width: 20px; height: 20px;
  stroke: var(--accent-2);
  display: block;
  opacity: 0.7;
}

/* ── GRID / PANELS ────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.panel {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  border: 1px solid var(--stroke);
}
.panel h3 { margin-bottom: 12px; }

/* ── TIMELINE ─────────────────────────────────────────────────── */
.timeline { display: grid; gap: 20px; }

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--stroke);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.timeline-item:hover { border-color: rgba(59, 231, 200, 0.2); box-shadow: inset 3px 0 0 rgba(59,231,200,0.22); }

.step {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.8;
}

.timeline-item h3 { margin-bottom: 6px; }
.timeline-item p  { color: var(--muted); font-size: 0.9rem; }

.timeline-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--stroke);
  color: var(--muted);
}

.timeline-tag.active {
  background: rgba(59, 231, 200, 0.15);
  border-color: rgba(59, 231, 200, 0.3);
  color: var(--accent);
}

/* ── STACK GRID ───────────────────────────────────────────────── */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.stack-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.03);
}

/* ── CTA ──────────────────────────────────────────────────────── */
.cta {
  margin: 60px auto 80px;
  max-width: var(--max-width);
  padding: 80px 64px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(130deg, rgba(59, 231, 200, 0.12), rgba(137, 166, 255, 0.15));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(59, 231, 200, 0.1), transparent 60%);
  pointer-events: none;
}

.cta h2 { margin-bottom: 8px; }
.cta p  { color: var(--muted); font-size: 0.95rem; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  text-align: center;
  padding: 48px 20px 64px;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  border-top: 1px solid var(--stroke);
  position: relative;
  z-index: 3;
}

/* ── REVEAL / CASCADE — initial states only ───────────────────── */
/* motion.js (Motion One) drives all reveal animations.           */
/* These rules only set the pre-animation starting state so there */
/* is no flash of unstyled content on load.                       */
.reveal { opacity: 0; transform: translateY(32px); }
.cascade > * { opacity: 0; transform: translateY(28px); }


.section {
  padding: 120px clamp(24px, 4vw, 64px);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ── STATEMENT / STAT BLOCKS / TIMELINE — initial states only ── */
/* motion.js handles all animation; these set pre-animation state. */
.statement-inner .eyebrow,
.statement-inner blockquote,
.statement-inner .statement-sub { opacity: 0; transform: translateY(14px); }

.stats-row.reveal .stat-block,
.stats-row.reveal .stat-divider { opacity: 0; transform: translateY(20px); }

.timeline.cascade > .timeline-item { transform: translateX(-20px); }

/* ── SECTION FLOW LINES ──────────────────────────────────────── */
.flow-line {
  width: 1px;
  height: 80px;
  margin: 0 auto;
  background: linear-gradient(to bottom, transparent, rgba(59,231,200,0.35), transparent);
  position: relative;
  animation: flowPulse 3s ease-in-out infinite;
}

.flow-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(59,231,200,0.8);
  animation: flowPulse 3s ease-in-out infinite;
}

.flow-line--purple {
  background: linear-gradient(to bottom, transparent, rgba(192,132,252,0.35), transparent);
}
.flow-line--purple::before {
  background: var(--accent-3);
  box-shadow: 0 0 12px rgba(192,132,252,0.8);
}

@keyframes flowPulse {
  0%,100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* ── SR ONLY ──────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ── KEYFRAMES ────────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── 3D TILT ──────────────────────────────────────────────────── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .copilot-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .nav { flex-direction: column; gap: 16px; }
  .diff-card { grid-template-columns: 56px 1fr; gap: 20px; }
  .diff-card p { grid-column: 2 / -1; }
  .diff-num { font-size: 2rem; }
  .cta { padding: 36px 28px; align-items: flex-start; }
  .stats-row { flex-direction: column; }
  .stat-divider { width: 80%; height: 1px; }
  .immersive-frame { height: 360px; }
}

@media (max-width: 640px) {
  /* Reduce section padding — 120px is too tall on mobile, creates large gaps */
  .section { padding: 64px clamp(20px, 4vw, 32px); }
  /* Reduce cp-demo-panel height on mobile */
  .cp-demo-panel { height: 320px; }
  /* Statement section also has its own 140px padding — reduce on mobile */
  .statement { padding: 60px clamp(20px, 4vw, 32px); }
  /* Flow line dividers — shorten on mobile */
  .flow-line { height: 48px; }
}

/* ── BRAND THEME ───────────────────────────────────────────────── */
/*
  Palette reference:
    Black      #000000  — bg base
    Dark Teal  #005151  — elevated surfaces
    Light Teal #30CEBB  — primary accent
    Light Volt #E5FF1F  — secondary accent / highlights
    Light Gray #F5F5F5  — primary text
    Light Gray 4 #C9CAC8 — muted text
    Light Taupe #F5EBDC — decorative warmth, used sparingly
*/
html.theme-brand {
  --bg:            #060a08;
  --bg-elev:       #0c2020;
  --glass:         rgba(6, 20, 20, 0.82);
  --accent:        #30cebb;   /* Light Teal  */
  --accent-2:      #e5ff1f;   /* Light Volt  */
  --accent-3:      #f5ebdc;   /* Light Taupe — decorative, sparingly */
  --text:          #f5f5f5;   /* Light Gray 1 */
  --muted:         #c9cac8;   /* Light Gray 4 */
  --stroke:        rgba(48, 206, 187, 0.12);
  --stroke-bright: rgba(48, 206, 187, 0.24);
  --shadow:        0 32px 80px rgba(0, 0, 0, 0.85);
}

/* Font family — DM Sans replaces Manrope + Cormorant Garamond */
html.theme-brand body,
html.theme-brand button,
html.theme-brand input {
  font-family: "DM Sans", system-ui, sans-serif;
}

html.theme-brand h1,
html.theme-brand h2,
html.theme-brand h3,
html.theme-brand blockquote,
html.theme-brand .logo,
html.theme-brand .tagline-main,
html.theme-brand .stat-big,
html.theme-brand .stat-unit,
html.theme-brand .stat-num,
html.theme-brand .step,
html.theme-brand .hw-price,
html.theme-brand .hw-metric-n,
html.theme-brand .deck-card-title {
  font-family: "DM Sans", system-ui, sans-serif;
}

html.theme-brand h1,
html.theme-brand h2,
html.theme-brand h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

html.theme-brand blockquote {
  font-weight: 600;
  letter-spacing: -0.015em;
}

html.theme-brand .logo {
  letter-spacing: 0.18em;
  background: linear-gradient(120deg, #f8f8f8 55%, rgba(48,206,187,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html.theme-brand .logo-sphere {
  background: radial-gradient(circle at 35% 30%,
    rgba(255,255,255,0.55) 0%,
    rgba(48, 206, 187, 0.3) 40%,
    rgba(229, 255, 31, 0.1) 68%,
    transparent 80%);
  box-shadow: 0 0 8px rgba(48, 206, 187, 0.18);
}

html.theme-brand .tagline-main {
  font-style: normal;
  letter-spacing: 0.06em;
}

/* ── Brand gradient overrides — teal-family only, volt stays minimal ── */

/* Hero h1 italic "Start closing faster." — mostly white, light volt whisper at end */
html.theme-brand h1 em {
  background: linear-gradient(120deg, #f0f0f0 50%, #cede3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* h1 "entire" — soft teal, not full saturated accent */
html.theme-brand .h1-purple {
  background: linear-gradient(120deg, #e8f9f7 10%, #5bbfb8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Blockquote highlight — plain white in brand; .word-volt handles the accent */
html.theme-brand .highlight {
  background: none;
  -webkit-text-fill-color: #f2f2f6;
  color: #f2f2f6;
}

/* ── WORD-LEVEL GRADIENT SPANS ───────────────────────────────────────────── */
.word-silver {
  background: linear-gradient(135deg, #6B6B8A 0%, #A0A0C0 45%, rgba(232,238,255,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.word-teal {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.word-volt {
  background: linear-gradient(120deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
html.theme-brand .word-teal {
  background: linear-gradient(120deg, #e8f9f7 10%, #5bbfb8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
html.theme-brand .word-volt {
  background: linear-gradient(120deg, #f0f0f0 30%, #cede3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stat big numbers — white → teal, softer than volt */
html.theme-brand .stat-big {
  background: linear-gradient(120deg, #f0f0f0 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stat unit (sec, ×, M+) — solid muted teal, not full accent */
html.theme-brand .stat-unit {
  color: var(--accent);
  opacity: 0.75;
}

/* Primary button — solid teal, reduced glow */
html.theme-brand .primary {
  background: var(--accent);
  color: #060a08;
  box-shadow: 0 0 18px rgba(48, 206, 187, 0.12), var(--shadow);
}
html.theme-brand .primary:hover {
  box-shadow: 0 0 32px rgba(48, 206, 187, 0.2), var(--shadow);
}

/* Ghost button border glow — teal not volt */
html.theme-brand .ghost:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(48, 206, 187, 0.1);
}

/* hw-view-btn (hero card "View →") — solid teal */
html.theme-brand .hw-view-btn {
  background: var(--accent);
  color: #060a08;
}
html.theme-brand .hw-view-btn:hover {
  box-shadow: 0 6px 20px rgba(48, 206, 187, 0.25);
}

/* Orbs — much more muted against true black */
html.theme-brand .orb-1 {
  background: radial-gradient(circle, rgba(48, 206, 187, 0.13), transparent 65%);
}
html.theme-brand .orb-2 {
  background: radial-gradient(circle, rgba(229, 255, 31, 0.09), transparent 65%);
}
html.theme-brand .orb-3 {
  background: radial-gradient(circle, rgba(0, 81, 81, 0.28), transparent 65%);
}

/* Cursor spotlight — volt on black */
html.theme-brand .cursor-spotlight {
  background: radial-gradient(circle, rgba(229, 255, 31, 0.04) 0%, transparent 65%);
}

/* Eyebrow — light volt across all sections */
html.theme-brand .eyebrow {
  color: rgba(229, 255, 31, 0.72);
}

/* Nav "Launching soon" tag — volt yellow */
html.theme-brand .tag {
  background: rgba(229, 255, 31, 0.08);
  border-color: rgba(229, 255, 31, 0.22);
  color: var(--accent-2);
}

/* Both CTA buttons (Join waitlist + Get early access) inherit teal from base .primary */

/* Hero rings — teal to brand-muted */
html.theme-brand .hw-ring-1 { border-color: rgba(48, 206, 187, 0.06); }
html.theme-brand .hw-ring-2 { border-color: rgba(48, 206, 187, 0.04); }

/* Widget + hero card bg surfaces */
html.theme-brand .hero-widget {
  background: rgba(8, 24, 22, 0.96);
  border-color: rgba(48, 206, 187, 0.14);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 40px rgba(48,206,187,0.04);
}

/* Cinematic panel — remove hardcoded purple, use teal */
html.theme-brand .cine-panel {
  border-color: rgba(48, 206, 187, 0.18);
  box-shadow: 0 0 60px rgba(48,206,187,0.04), 0 24px 64px rgba(0,0,0,0.6);
}
html.theme-brand .cine-panel-badge {
  background: rgba(48, 206, 187, 0.1);
  border-color: rgba(48, 206, 187, 0.25);
  color: var(--accent);
}
html.theme-brand .cine-panel-badge-dot {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(48, 206, 187, 0.9);
}
html.theme-brand .cine-panel-step-num {
  color: var(--accent);
  opacity: 0.45;
}
html.theme-brand .cine-panel-vs-teaser {
  background: rgba(48, 206, 187, 0.05);
  border-color: rgba(48, 206, 187, 0.14);
}
html.theme-brand .cine-panel-vs-title  { color: var(--accent); }
html.theme-brand .cine-panel-vs-icon   {
  background: rgba(48, 206, 187, 0.1);
  border-color: rgba(48, 206, 187, 0.2);
  color: var(--accent);
}

/* Selected states — volt highlight instead of purple */
html.theme-brand .copilot-selected,
html.theme-brand .persona-selected,
html.theme-brand .audience-selected {
  background: linear-gradient(140deg, rgba(229,255,31,0.07), rgba(48,206,187,0.05));
  border-color: rgba(229, 255, 31, 0.28) !important;
  box-shadow: 0 0 40px rgba(229,255,31,0.06), 0 24px 60px rgba(0,0,0,0.5);
}

/* CTA gradient — hardcoded blue → teal+volt */
html.theme-brand .cta {
  background: linear-gradient(130deg, rgba(48, 206, 187, 0.1), rgba(229, 255, 31, 0.08));
}

/* ── BRAND: EXTENDED COLOR COORDINATION ─────────────────────────
   Extends the teal / volt pattern across all remaining sections.
   Teal = structural indicators, labels, borders, active states.
   Volt = pricing, emphasis, "coming soon", selected highlights.
   ──────────────────────────────────────────────────────────────── */

/* Diff-cards editorial (brand) — line separators, large muted number */
html.theme-brand .diff-card {
  background: transparent;
  border-bottom-color: rgba(48, 206, 187, 0.1);
}
html.theme-brand .diff-card:first-child { border-top-color: rgba(48, 206, 187, 0.1); }
html.theme-brand .diff-card:hover {
  background: rgba(12, 32, 32, 0.3);
  border-color: inherit;
  box-shadow: inset 3px 0 0 rgba(48, 206, 187, 0.4);
}
html.theme-brand .timeline-item {
  background: linear-gradient(140deg, rgba(12, 32, 32, 0.75), rgba(6, 20, 20, 0.5));
  border-color: rgba(48, 206, 187, 0.1);
}
html.theme-brand .timeline-item:hover { border-color: rgba(48, 206, 187, 0.25); box-shadow: inset 3px 0 0 rgba(48,206,187,0.3); }
html.theme-brand .stats-row {
  background: rgba(12, 32, 32, 0.5);
  border-color: rgba(48, 206, 187, 0.12);
}
html.theme-brand .stat-divider { background: rgba(48, 206, 187, 0.12); }
html.theme-brand .copilot-card.open {
  background: linear-gradient(160deg, rgba(48, 206, 187, 0.06), rgba(12, 32, 32, 0.85));
  border-color: rgba(48, 206, 187, 0.3);
}
/* Audience resting-state color identity (brand) */
html.theme-brand .audience-grid .audience-card:nth-child(1) {
  background: linear-gradient(145deg, rgba(48,206,187,0.09) 0%, rgba(6,18,16,0.6) 55%);
  border-color: rgba(48,206,187,0.2);
}
html.theme-brand .audience-grid .audience-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(229,255,31,0.07) 0%, rgba(16,18,4,0.6) 55%);
  border-color: rgba(229,255,31,0.16);
}
html.theme-brand .audience-grid .audience-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(137,166,255,0.07) 0%, rgba(6,10,28,0.6) 55%);
  border-color: rgba(137,166,255,0.18);
}
html.theme-brand .audience-card.open {
  border-color: rgba(48, 206, 187, 0.3);
  background: rgba(12, 32, 32, 0.7);
}
html.theme-brand .card-detail-example {
  background: rgba(48, 206, 187, 0.05);
  border-color: rgba(48, 206, 187, 0.12);
}

/* Persona track — replace hardcoded violet with teal */
html.theme-brand .persona-track {
  background: linear-gradient(160deg, rgba(12, 32, 32, 0.6), rgba(6, 20, 20, 0.4));
  border-color: rgba(48, 206, 187, 0.1);
}
/* Persona pipeline — brand teal connecting line */
html.theme-brand .persona-grid::before {
  background: linear-gradient(to bottom, rgba(48,206,187,0.25) 0%, rgba(48,206,187,0.06) 100%);
}
html.theme-brand .persona-track {
  border-bottom-color: rgba(48, 206, 187, 0.1);
}
html.theme-brand .persona-track:first-child { border-top-color: rgba(48, 206, 187, 0.1); }
/* persona-track:hover handled in dedicated brand section below */
html.theme-brand .persona-track:hover .persona-icon,
html.theme-brand .persona-track.open  .persona-icon {
  background: rgba(48, 206, 187, 0.14);
  border-color: rgba(48, 206, 187, 0.28);
}
html.theme-brand .persona-track.open { border-color: rgba(48, 206, 187, 0.3); }
html.theme-brand .persona-icon {
  background: rgba(48, 206, 187, 0.07);
  border-color: rgba(48, 206, 187, 0.14);
}
html.theme-brand .persona-icon svg { stroke: var(--accent); }

/* Copilot chat bubbles — replace hardcoded purple with teal family */
html.theme-brand .copilot-msg-user p {
  background: rgba(48, 206, 187, 0.1);
  border-color: rgba(48, 206, 187, 0.18);
}
html.theme-brand .copilot-typing p {
  background: rgba(12, 32, 32, 0.7);
  border-color: rgba(48, 206, 187, 0.1);
}
html.theme-brand .copilot-chip {
  border-color: rgba(48, 206, 187, 0.2);
  background: rgba(48, 206, 187, 0.05);
  color: var(--accent);
}
html.theme-brand .copilot-chip:hover {
  background: rgba(48, 206, 187, 0.1);
  border-color: rgba(48, 206, 187, 0.35);
}

/* Badges — teal pill family */
html.theme-brand .tool-badge {
  background: rgba(48, 206, 187, 0.09);
  border-color: rgba(48, 206, 187, 0.22);
}
html.theme-brand .tool-badge-soon {
  background: rgba(229, 255, 31, 0.07);
  border-color: rgba(229, 255, 31, 0.18);
  color: var(--accent-2);
}
html.theme-brand .timeline-tag.active {
  background: rgba(48, 206, 187, 0.11);
  border-color: rgba(48, 206, 187, 0.26);
}
html.theme-brand .listing-tab.active {
  background: rgba(48, 206, 187, 0.13);
  border-color: rgba(48, 206, 187, 0.26);
}

/* Tool cards — featured and selected states */
html.theme-brand .tool-featured {
  background: linear-gradient(140deg, rgba(48, 206, 187, 0.08), rgba(0, 81, 81, 0.18));
  border-color: rgba(48, 206, 187, 0.26);
  box-shadow: 0 0 40px rgba(48, 206, 187, 0.07), 0 24px 60px rgba(0,0,0,0.5);
}
html.theme-brand .tool-selected {
  background: linear-gradient(140deg, rgba(229, 255, 31, 0.07), rgba(48, 206, 187, 0.05));
  border-color: rgba(229, 255, 31, 0.28) !important;
  box-shadow: 0 0 40px rgba(229, 255, 31, 0.06), 0 24px 60px rgba(0,0,0,0.5);
}

/* Listing demo widget — darker surface, teal accents consistent */
html.theme-brand .listing-demo {
  background: rgba(6, 20, 20, 0.96);
  border-color: rgba(48, 206, 187, 0.14);
}
html.theme-brand .listing-demo-dot {
  box-shadow: 0 0 8px rgba(48, 206, 187, 0.65);
}
html.theme-brand .listing-copy-btn:hover {
  color: var(--accent);
  border-color: rgba(48, 206, 187, 0.32);
  background: rgba(48, 206, 187, 0.05);
}

/* Section h2 — plain white in brand; word-level spans carry the gradient accents */
html.theme-brand .section-head h2 {
  color: #f2f2f6;
  background: none;
  -webkit-text-fill-color: #f2f2f6;
}

/* Copilot card — terminal teal top-border in brand */
html.theme-brand .copilot-card {
  background: rgba(4, 14, 12, 0.92);
  border-top-color: rgba(48, 206, 187, 0.4);
}
html.theme-brand .copilot-card::before {
  background: linear-gradient(90deg, transparent, rgba(48,206,187,0.6), transparent);
}

/* Copilot hover (brand) — inner radial intelligence glow */
html.theme-brand .copilot-card:hover {
  border-color: rgba(48, 206, 187, 0.3);
  background: radial-gradient(ellipse at 50% -10%, rgba(48,206,187,0.09) 0%, transparent 62%), rgba(8,24,22,0.85);
  box-shadow: 0 0 0 1px rgba(48,206,187,0.1) inset, 0 6px 36px rgba(48,206,187,0.06);
}
/* Persona track hover (brand) — gradient slide from left */
html.theme-brand .persona-track:hover {
  border-color: rgba(48, 206, 187, 0.3);
  background: linear-gradient(90deg, rgba(48,206,187,0.07) 0%, transparent 55%), linear-gradient(160deg, rgba(12,32,32,0.6), rgba(6,20,20,0.4));
  box-shadow: none;
}
html.theme-brand .persona-track:hover .persona-icon {
  background: rgba(48, 206, 187, 0.16);
  border-color: rgba(48, 206, 187, 0.35);
  transform: translateX(4px);
}
/* Audience card hover (brand) — per-card accent */
html.theme-brand .audience-grid .audience-card:nth-child(1):hover {
  border-color: rgba(48, 206, 187, 0.35);
  background: linear-gradient(135deg, rgba(48,206,187,0.07) 0%, transparent 52%);
  box-shadow: inset 3px 0 0 rgba(48,206,187,0.38);
}
html.theme-brand .audience-grid .audience-card:nth-child(2):hover {
  border-color: rgba(229, 255, 31, 0.3);
  background: linear-gradient(135deg, rgba(229,255,31,0.05) 0%, transparent 52%);
  box-shadow: inset 3px 0 0 rgba(229,255,31,0.3);
}
html.theme-brand .audience-grid .audience-card:nth-child(3):hover {
  border-color: rgba(137,166,255,0.32);
  background: linear-gradient(135deg, rgba(137,166,255,0.06) 0%, transparent 52%);
  box-shadow: inset 3px 0 0 rgba(137,166,255,0.32);
}
/* Per-card audience-tag accent (brand) */
html.theme-brand .audience-grid .audience-card:nth-child(1) .audience-tag { color: var(--accent); border-color: rgba(48,206,187,0.22); }
html.theme-brand .audience-grid .audience-card:nth-child(2) .audience-tag { color: var(--accent-2); border-color: rgba(229,255,31,0.22); }
html.theme-brand .audience-grid .audience-card:nth-child(3) .audience-tag { color: var(--accent-2); border-color: rgba(137,166,255,0.22); }

/* Stack cards — brand teal surface */
html.theme-brand .stack-card {
  background: rgba(12, 32, 32, 0.5);
  border-color: rgba(48, 206, 187, 0.1);
}

/* Statement left-border — teal */
html.theme-brand .statement-inner {
  border-color: var(--accent);
}

/* Step numbers — full opacity teal */
html.theme-brand .step {
  opacity: 1;
  color: var(--accent);
}

/* Stat-num (large stat numbers in stats row) */
html.theme-brand .stat-num {
  color: var(--accent);
}

/* Ticker alternating spans — use brand teal */
html.theme-brand .ticker span:nth-child(8n+1),
html.theme-brand .ticker span:nth-child(8n+3),
html.theme-brand .ticker span:nth-child(8n+5),
html.theme-brand .ticker span:nth-child(8n+7) {
  color: var(--accent-2);
}

/* Timeline active tag — volt for "Now" */
html.theme-brand .timeline-tag.active {
  background: rgba(229, 255, 31, 0.1);
  border-color: rgba(229, 255, 31, 0.25);
  color: var(--accent-2);
}

/* ── THEME TOGGLE BUTTON — hidden from public, preserved for dev ── */
.theme-toggle {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: rgba(11, 15, 29, 0.88);
  border: 1px solid var(--stroke-bright);
  color: var(--muted);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.2s, color 0.2s, background 0.3s;
  user-select: none;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--text);
}

html.theme-brand .theme-toggle {
  background: rgba(12, 32, 32, 0.9);
  border-color: rgba(48, 206, 187, 0.28);
}

.theme-toggle-swatches {
  display: flex;
  gap: 3px;
}

.theme-toggle-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
  transition: background 0.35s;
}

/* Dots show the TARGET theme's palette (what you'll switch TO) */
/* original → brand */
.theme-toggle-dot--1 { background: #30cebb; }
.theme-toggle-dot--2 { background: #e5ff1f; }
.theme-toggle-dot--3 { background: rgba(229,255,31,0.35); }
.theme-toggle-dot--4 { background: rgba(48,206,187,0.25); }
/* brand → quantum */
html.theme-brand .theme-toggle-dot--1 { background: #39FF7A; }
html.theme-brand .theme-toggle-dot--2 { background: #C4883A; }
html.theme-brand .theme-toggle-dot--3 { background: rgba(196,136,58,0.35); }
html.theme-brand .theme-toggle-dot--4 { background: rgba(57,255,122,0.25); }
/* quantum → light */
html.theme-quantum .theme-toggle-dot--1 { background: #F6F7F2; }
html.theme-quantum .theme-toggle-dot--2 { background: #1A9E8C; }
html.theme-quantum .theme-toggle-dot--3 { background: rgba(246,247,242,0.45); }
html.theme-quantum .theme-toggle-dot--4 { background: rgba(26,158,140,0.35); }
/* light → original */
html.theme-light .theme-toggle-dot--1 { background: #3be7c8; }
html.theme-light .theme-toggle-dot--2 { background: #89a6ff; }
html.theme-light .theme-toggle-dot--3 { background: rgba(137,166,255,0.35); }
html.theme-light .theme-toggle-dot--4 { background: rgba(59,231,200,0.25); }

/* ════════════════════════════════════════════════════════════════
   THEME — QUANTUM (concrete / phosphor / amber)
   ════════════════════════════════════════════════════════════════ */

html.theme-quantum {
  --bg:            #1C1C1F;
  --bg-elev:       #242428;
  --glass:         rgba(36, 36, 40, 0.85);
  --accent:        #39FF7A;
  --accent-2:      #C4883A;
  --accent-3:      #D4A060;
  --text:          #E8EEFF;
  --muted:         rgba(232, 238, 255, 0.55);
  --stroke:        rgba(232, 238, 255, 0.10);
  --stroke-bright: rgba(57, 255, 122, 0.18);
  --shadow:        0 32px 80px rgba(0, 0, 0, 0.7);
}

/* ── Fonts ─────────────────────────────────────────────────────── */
html.theme-quantum body,
html.theme-quantum button,
html.theme-quantum input {
  font-family: "DM Sans", system-ui, sans-serif;
}

html.theme-quantum h1,
html.theme-quantum h2,
html.theme-quantum h3,
html.theme-quantum blockquote,
html.theme-quantum .logo,
html.theme-quantum .tagline-main,
html.theme-quantum .stat-big,
html.theme-quantum .stat-unit,
html.theme-quantum .stat-num,
html.theme-quantum .step,
html.theme-quantum .hw-price,
html.theme-quantum .hw-metric-n,
html.theme-quantum .deck-card-title {
  font-family: "DM Serif Display", "Georgia", serif;
}

html.theme-quantum h1,
html.theme-quantum h2,
html.theme-quantum h3 {
  font-weight: 400;
  letter-spacing: -0.01em;
}

html.theme-quantum blockquote { font-weight: 400; letter-spacing: -0.01em; }

/* ── Logo ──────────────────────────────────────────────────────── */
html.theme-quantum .logo {
  letter-spacing: 0.18em;
  background: linear-gradient(120deg, #E8EEFF 30%, #39FF7A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html.theme-quantum .logo-sphere {
  background: radial-gradient(circle at 35% 30%,
    rgba(255,255,255,0.55) 0%,
    rgba(57,255,122,0.4) 40%,
    rgba(57,255,122,0.15) 65%,
    transparent 80%);
  box-shadow: 0 0 12px rgba(57,255,122,0.25);
}

/* ── Headline gradients ────────────────────────────────────────── */
html.theme-quantum h1 em {
  background: linear-gradient(135deg, #39FF7A 0%, #A8F5C8 55%, #E8EEFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html.theme-quantum .h1-purple {
  background: linear-gradient(120deg, #5DEBB8 0%, #A8F5D8 60%, rgba(232,238,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html.theme-quantum .highlight {
  background: none;
  -webkit-text-fill-color: #E8EEFF;
  color: #E8EEFF;
}

html.theme-quantum .word-teal {
  background: linear-gradient(120deg, #5DEBB8 0%, #A8F5D8 60%, rgba(232,238,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html.theme-quantum .word-volt {
  background: linear-gradient(135deg, #C4883A 0%, #D4A060 50%, #E8C898 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Stats ─────────────────────────────────────────────────────── */
html.theme-quantum .stat-big {
  background: linear-gradient(120deg, #E8EEFF 0%, #39FF7A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html.theme-quantum .stat-big--word {
  background: linear-gradient(135deg, #C4883A 0%, #D4A060 50%, #E8C898 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html.theme-quantum .stat-unit { color: var(--accent); opacity: 0.75; }
html.theme-quantum .stat-num  { color: var(--accent); }

html.theme-quantum .stats-row {
  background: rgba(36,36,40,0.5);
  border-color: rgba(57,255,122,0.10);
}
html.theme-quantum .stat-divider { background: rgba(57,255,122,0.10); }

/* ── Buttons ───────────────────────────────────────────────────── */
html.theme-quantum .primary {
  background: linear-gradient(135deg, #2DD962 0%, #39FF7A 60%, #7AFFB8 100%);
  color: #0f1a12;
  box-shadow: 0 0 18px rgba(57,255,122,0.15), var(--shadow);
}
html.theme-quantum .primary:hover {
  box-shadow: 0 0 36px rgba(57,255,122,0.28), var(--shadow);
}

html.theme-quantum .ghost:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(57,255,122,0.10);
}

html.theme-quantum .hw-view-btn {
  background: linear-gradient(135deg, #2DD962 0%, #39FF7A 60%, #7AFFB8 100%);
  color: #0f1a12;
}
html.theme-quantum .hw-view-btn:hover { box-shadow: 0 6px 20px rgba(57,255,122,0.25); }

/* ── Orbs / bg ─────────────────────────────────────────────────── */
html.theme-quantum .orb-1 { background: radial-gradient(circle, rgba(57,255,122,0.12), transparent 65%); }
html.theme-quantum .orb-2 { background: radial-gradient(circle, rgba(196,136,58,0.10), transparent 65%); }
html.theme-quantum .orb-3 { background: radial-gradient(circle, rgba(57,255,122,0.06), transparent 65%); }

html.theme-quantum .cursor-spotlight {
  background: radial-gradient(circle, rgba(57,255,122,0.05) 0%, transparent 65%);
}

/* ── Nav ───────────────────────────────────────────────────────── */
html.theme-quantum .eyebrow   { color: rgba(57,255,122,0.75); }
html.theme-quantum .tag {
  background: rgba(57,255,122,0.08);
  border-color: rgba(57,255,122,0.22);
  color: var(--accent);
}
html.theme-quantum .nav-tagline { color: rgba(232,238,255,0.40); }

/* ── Hero widget ───────────────────────────────────────────────── */
html.theme-quantum .hw-ring-1 { border-color: rgba(57,255,122,0.06); }
html.theme-quantum .hw-ring-2 { border-color: rgba(57,255,122,0.04); }

html.theme-quantum .hero-widget {
  background: rgba(28,28,31,0.96);
  border-color: rgba(57,255,122,0.12);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 40px rgba(57,255,122,0.04);
}

html.theme-quantum .hw-price {
  background: linear-gradient(135deg, #C4883A 0%, #D4A060 50%, #E8C898 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Cinematic panel ───────────────────────────────────────────── */
html.theme-quantum .cine-panel {
  border-color: rgba(57,255,122,0.16);
  box-shadow: 0 0 60px rgba(57,255,122,0.04), 0 24px 64px rgba(0,0,0,0.6);
}
html.theme-quantum .cine-panel-badge {
  background: rgba(57,255,122,0.08);
  border-color: rgba(57,255,122,0.22);
  color: var(--accent);
}
html.theme-quantum .cine-panel-badge-dot {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(57,255,122,0.9);
}
html.theme-quantum .cine-panel-step-num   { color: var(--accent); opacity: 0.45; }
html.theme-quantum .cine-panel-vs-teaser  { background: rgba(57,255,122,0.04); border-color: rgba(57,255,122,0.12); }
html.theme-quantum .cine-panel-vs-title   { color: var(--accent); }
html.theme-quantum .cine-panel-vs-icon    { background: rgba(57,255,122,0.08); border-color: rgba(57,255,122,0.18); color: var(--accent); }

/* ── Statement ─────────────────────────────────────────────────── */
html.theme-quantum .statement-inner { border-color: var(--accent); }

/* ── Selected states ───────────────────────────────────────────── */
html.theme-quantum .copilot-selected,
html.theme-quantum .persona-selected,
html.theme-quantum .audience-selected {
  background: linear-gradient(140deg, rgba(57,255,122,0.07), rgba(196,136,58,0.04));
  border-color: rgba(57,255,122,0.28) !important;
  box-shadow: 0 0 40px rgba(57,255,122,0.05), 0 24px 60px rgba(0,0,0,0.5);
}

/* ── CTA section ───────────────────────────────────────────────── */
html.theme-quantum .cta {
  background: linear-gradient(130deg, rgba(57,255,122,0.08), rgba(196,136,58,0.06));
}

/* ── Diff cards ────────────────────────────────────────────────── */
html.theme-quantum .diff-card {
  background: transparent;
  border-bottom-color: rgba(57,255,122,0.08);
}
html.theme-quantum .diff-card:first-child { border-top-color: rgba(57,255,122,0.08); }
html.theme-quantum .diff-card:hover {
  background: rgba(36,36,40,0.3);
  box-shadow: inset 3px 0 0 rgba(57,255,122,0.4);
}

/* ── Timeline ──────────────────────────────────────────────────── */
html.theme-quantum .timeline-item {
  background: linear-gradient(140deg, rgba(36,36,40,0.75), rgba(28,28,31,0.5));
  border-color: rgba(57,255,122,0.08);
}
html.theme-quantum .timeline-item:hover {
  border-color: rgba(57,255,122,0.22);
  box-shadow: inset 3px 0 0 rgba(57,255,122,0.3);
}
html.theme-quantum .step { opacity: 1; color: var(--accent); }
html.theme-quantum .timeline-tag.active {
  background: rgba(57,255,122,0.10);
  border-color: rgba(57,255,122,0.24);
  color: var(--accent);
}

/* ── Copilot ───────────────────────────────────────────────────── */
html.theme-quantum .copilot-card {
  background: rgba(28,28,31,0.92);
  border-top-color: rgba(57,255,122,0.35);
}
html.theme-quantum .copilot-card::before {
  background: linear-gradient(90deg, transparent, rgba(57,255,122,0.5), transparent);
}
html.theme-quantum .copilot-card:hover {
  border-color: rgba(57,255,122,0.28);
  background: radial-gradient(ellipse at 50% -10%, rgba(57,255,122,0.08) 0%, transparent 62%), rgba(28,28,31,0.85);
  box-shadow: 0 0 0 1px rgba(57,255,122,0.08) inset, 0 6px 36px rgba(57,255,122,0.05);
}
html.theme-quantum .copilot-card.open {
  background: linear-gradient(160deg, rgba(57,255,122,0.05), rgba(36,36,40,0.85));
  border-color: rgba(57,255,122,0.28);
}
html.theme-quantum .copilot-msg-user p {
  background: rgba(57,255,122,0.08);
  border-color: rgba(57,255,122,0.16);
}
html.theme-quantum .copilot-typing p {
  background: rgba(36,36,40,0.7);
  border-color: rgba(57,255,122,0.08);
}
html.theme-quantum .copilot-chip {
  border-color: rgba(57,255,122,0.18);
  background: rgba(57,255,122,0.04);
  color: var(--accent);
}
html.theme-quantum .copilot-chip:hover {
  background: rgba(57,255,122,0.08);
  border-color: rgba(57,255,122,0.32);
}

/* ── Persona ───────────────────────────────────────────────────── */
html.theme-quantum .persona-track {
  background: linear-gradient(160deg, rgba(36,36,40,0.6), rgba(28,28,31,0.4));
  border-color: rgba(57,255,122,0.08);
  border-bottom-color: rgba(57,255,122,0.08);
}
html.theme-quantum .persona-track:first-child { border-top-color: rgba(57,255,122,0.08); }
html.theme-quantum .persona-grid::before {
  background: linear-gradient(to bottom, rgba(57,255,122,0.22) 0%, rgba(57,255,122,0.04) 100%);
}
html.theme-quantum .persona-track:hover {
  border-color: rgba(57,255,122,0.28);
  background: linear-gradient(90deg, rgba(57,255,122,0.06) 0%, transparent 55%),
              linear-gradient(160deg, rgba(36,36,40,0.6), rgba(28,28,31,0.4));
  box-shadow: none;
}
html.theme-quantum .persona-track:hover .persona-icon,
html.theme-quantum .persona-track.open  .persona-icon {
  background: rgba(57,255,122,0.12);
  border-color: rgba(57,255,122,0.28);
}
html.theme-quantum .persona-track:hover .persona-icon { transform: translateX(4px); }
html.theme-quantum .persona-track.open { border-color: rgba(57,255,122,0.28); }
html.theme-quantum .persona-icon { background: rgba(57,255,122,0.06); border-color: rgba(57,255,122,0.12); }
html.theme-quantum .persona-icon svg { stroke: var(--accent); }

/* ── Audience ──────────────────────────────────────────────────── */
html.theme-quantum .audience-grid .audience-card:nth-child(1) {
  background: linear-gradient(145deg, rgba(57,255,122,0.07) 0%, rgba(28,28,31,0.6) 55%);
  border-color: rgba(57,255,122,0.16);
}
html.theme-quantum .audience-grid .audience-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(196,136,58,0.07) 0%, rgba(28,28,31,0.6) 55%);
  border-color: rgba(196,136,58,0.16);
}
html.theme-quantum .audience-grid .audience-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(232,238,255,0.05) 0%, rgba(28,28,31,0.6) 55%);
  border-color: rgba(232,238,255,0.12);
}
html.theme-quantum .audience-card.open {
  border-color: rgba(57,255,122,0.28);
  background: rgba(36,36,40,0.7);
}
html.theme-quantum .card-detail-example {
  background: rgba(57,255,122,0.04);
  border-color: rgba(57,255,122,0.10);
}
html.theme-quantum .audience-grid .audience-card:nth-child(1):hover {
  border-color: rgba(57,255,122,0.32);
  background: linear-gradient(135deg, rgba(57,255,122,0.07) 0%, transparent 52%);
  box-shadow: inset 3px 0 0 rgba(57,255,122,0.35);
}
html.theme-quantum .audience-grid .audience-card:nth-child(2):hover {
  border-color: rgba(196,136,58,0.30);
  background: linear-gradient(135deg, rgba(196,136,58,0.06) 0%, transparent 52%);
  box-shadow: inset 3px 0 0 rgba(196,136,58,0.32);
}
html.theme-quantum .audience-grid .audience-card:nth-child(3):hover {
  border-color: rgba(232,238,255,0.20);
  background: linear-gradient(135deg, rgba(232,238,255,0.04) 0%, transparent 52%);
  box-shadow: inset 3px 0 0 rgba(232,238,255,0.20);
}
html.theme-quantum .audience-grid .audience-card:nth-child(1) .audience-tag { color: var(--accent); border-color: rgba(57,255,122,0.20); }
html.theme-quantum .audience-grid .audience-card:nth-child(2) .audience-tag { color: var(--accent-2); border-color: rgba(196,136,58,0.22); }
html.theme-quantum .audience-grid .audience-card:nth-child(3) .audience-tag { color: rgba(232,238,255,0.6); border-color: rgba(232,238,255,0.15); }

/* ── Badges / tools / listing ──────────────────────────────────── */
html.theme-quantum .tool-badge {
  background: rgba(57,255,122,0.07);
  border-color: rgba(57,255,122,0.20);
}
html.theme-quantum .tool-badge-soon {
  background: rgba(196,136,58,0.08);
  border-color: rgba(196,136,58,0.20);
  color: var(--accent-2);
}
html.theme-quantum .listing-tab.active {
  background: rgba(57,255,122,0.11);
  border-color: rgba(57,255,122,0.24);
}
html.theme-quantum .tool-featured {
  background: linear-gradient(140deg, rgba(57,255,122,0.07), rgba(28,28,31,0.18));
  border-color: rgba(57,255,122,0.22);
  box-shadow: 0 0 40px rgba(57,255,122,0.06), 0 24px 60px rgba(0,0,0,0.5);
}
html.theme-quantum .tool-selected {
  background: linear-gradient(140deg, rgba(196,136,58,0.07), rgba(57,255,122,0.04));
  border-color: rgba(196,136,58,0.26) !important;
  box-shadow: 0 0 40px rgba(196,136,58,0.06), 0 24px 60px rgba(0,0,0,0.5);
}
html.theme-quantum .listing-demo {
  background: rgba(28,28,31,0.96);
  border-color: rgba(57,255,122,0.12);
}
html.theme-quantum .listing-demo-dot { box-shadow: 0 0 8px rgba(57,255,122,0.65); }
html.theme-quantum .listing-copy-btn:hover {
  color: var(--accent);
  border-color: rgba(57,255,122,0.30);
  background: rgba(57,255,122,0.04);
}

/* ── Section headings ──────────────────────────────────────────── */
html.theme-quantum .section-head h2 {
  color: #E8EEFF;
  background: none;
  -webkit-text-fill-color: #E8EEFF;
}

/* ── Stack cards ───────────────────────────────────────────────── */
html.theme-quantum .stack-card {
  background: rgba(36,36,40,0.5);
  border-color: rgba(57,255,122,0.08);
}

/* ── Ticker ────────────────────────────────────────────────────── */
html.theme-quantum .ticker span:nth-child(8n+1),
html.theme-quantum .ticker span:nth-child(8n+3),
html.theme-quantum .ticker span:nth-child(8n+5),
html.theme-quantum .ticker span:nth-child(8n+7) {
  color: rgba(57,255,122,0.70);
}

/* ── Theme toggle ──────────────────────────────────────────────── */
html.theme-quantum .theme-toggle {
  background: rgba(28,28,31,0.9);
  border-color: rgba(57,255,122,0.26);
}


/* ════════════════════════════════════════════════════════════════
   THEME — LIGHT
   Brand palette spec. Colors only — no layout, spacing, or copy.
   ════════════════════════════════════════════════════════════════ */

/* ── Shimmer keyframe (light look only) ─────────────────────── */
@keyframes shimmer {
  0%, 100% { background-position: 100% 0; }
  50%       { background-position: 0% 0; }
}

html.theme-light {
  --bg:            #F5F5F5;
  --bg-elev:       #FFFFFF;
  --glass:         rgba(245, 245, 245, 0.95);
  --accent:        #3AD6C5;
  --accent-2:      #6B7A00;
  --accent-3:      #8A9E00;
  --text:          #0D0F0B;
  --muted:         rgba(13, 15, 11, 0.55);
  --stroke:        rgba(13, 15, 11, 0.10);
  --stroke-bright: rgba(13, 15, 11, 0.18);
  --shadow:        none;
}

/* ── Fonts ──────────────────────────────────────────────────────── */
/* Headlines, prices, large numbers → DM Serif Display 400 */
html.theme-light h1,
html.theme-light h2,
html.theme-light h3,
html.theme-light blockquote,
html.theme-light .hw-price,
html.theme-light .hw-metric-n,
html.theme-light .stat-big,
html.theme-light .stat-unit,
html.theme-light .stat-num,
html.theme-light .showcase-address,
html.theme-light .showcase-price,
html.theme-light .deck-card-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
}

/* ── SHOWCASE — light theme rebuild ──────────────────────────────── */

/* Hide new light-only elements in all other themes */
.showcase-bg-layer,
.showcase-live-badge,
.showcase-headline,
.showcase-stats-bar,
.showcase-ai-bubble,
.showcase-cta-new { display: none; }

/* In light theme: hide original dark content, show new elements */
html.theme-light .showcase-content { display: none; }
html.theme-light .showcase { background: none; background-color: #000; }

/* Overlay: top-to-bottom for full-width hero feel */
html.theme-light .showcase-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.75) 100%
  );
}

/* Animated background — outer handles parallax translateY, inner handles Ken Burns scale */
html.theme-light .showcase-bg-layer {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
html.theme-light .showcase-bg-inner {
  position: absolute;
  inset: -8%;
  background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1800&q=85') center/cover no-repeat;
  transform-origin: center center;
}

/* Top-left live badge */
html.theme-light .showcase-live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  position: absolute;
  top: 28px;
  left: clamp(24px, 4vw, 64px);
  z-index: 3;
  background: rgba(0,0,0,0.40);
  border: 0.5px solid rgba(58,214,197,0.30);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FFFFFF;
}
html.theme-light .showcase-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3AD6C5;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

/* Center headline block — CSS translate for centering, JS y for entrance */
html.theme-light .showcase-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 130px;
  left: 50%;
  translate: -50% 0;
  z-index: 3;
  width: max-content;
  max-width: min(680px, 88vw);
}
html.theme-light .sc-address {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.1;
  background: linear-gradient(105deg, #FFFFFF 0%, rgba(255,255,255,0.70) 30%, #FFFFFF 50%, rgba(190,205,215,0.85) 70%, #FFFFFF 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
html.theme-light .sc-location {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  margin-top: 6px;
  margin-bottom: 0;
}
html.theme-light .sc-price {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  margin-top: 16px;
  background: linear-gradient(105deg, #ffffff 30%, #3AD6C5 70%, #ffffff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
html.theme-light .sc-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.50);
}
html.theme-light .sc-sep { color: rgba(255,255,255,0.22); }

/* Live stats bar — centered, lower section */
html.theme-light .showcase-stats-bar {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 110px;
  left: 50%;
  translate: -50% 0;
  z-index: 3;
  background: rgba(0,0,0,0.45);
  border: 0.5px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 16px 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
html.theme-light .sc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 28px;
}
html.theme-light .sc-stat-num {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 28px;
  color: #FFFFFF;
  line-height: 1;
}
html.theme-light .sc-leads-pulse { color: #3AD6C5; }
html.theme-light .sc-stat-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.40);
  white-space: nowrap;
}
html.theme-light .sc-stat-div {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
}

/* AI insight bubble — bottom right */
html.theme-light .showcase-ai-bubble {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: absolute;
  bottom: 100px;
  right: clamp(24px, 4vw, 64px);
  z-index: 3;
  background: rgba(0,0,0,0.55);
  border: 0.5px solid rgba(58,214,197,0.25);
  border-radius: 8px;
  padding: 12px 16px;
  max-width: 320px;
}
html.theme-light .sc-ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
html.theme-light .sc-ai-header-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
html.theme-light .sc-ai-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #3AD6C5;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
html.theme-light .sc-ai-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3AD6C5;
}
html.theme-light .sc-ai-time {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
}
html.theme-light .sc-ai-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
html.theme-light .sc-ai-cursor {
  display: inline-block;
  width: 2px;
  height: 12px;
  background: #3AD6C5;
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

/* Lead notification toast — bottom left of section */
html.theme-light .sc-toast {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  bottom: 100px;
  left: clamp(24px, 4vw, 64px);
  z-index: 5;
  background: rgba(0,0,0,0.55);
  border: 0.5px solid rgba(58,214,197,0.25);
  border-radius: 8px;
  padding: 12px 16px;
  max-width: 260px;
  pointer-events: none;
  opacity: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
html.theme-light .sc-toast-dot {
  color: #3AD6C5;
  font-size: 8px;
  line-height: 1.8;
  flex-shrink: 0;
}
html.theme-light .sc-toast-msg {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
html.theme-light .sc-toast-via {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: rgba(255,255,255,0.30);
  margin-top: 3px;
}

/* CTA button — bottom center */
html.theme-light .showcase-cta-new {
  display: inline-block;
  position: absolute;
  bottom: 40px;
  left: 50%;
  translate: -50% 0;
  z-index: 3;
  background: linear-gradient(135deg, #1A9E8C 0%, #30CEBB 40%, #7AEDE0 60%, #30CEBB 80%, #1A9E8C 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  color: #07090f;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
}

/* All UI, body, nav, buttons, labels → DM Sans */
html.theme-light body,
html.theme-light button,
html.theme-light input,
html.theme-light .tagline-main,
html.theme-light .step,
html.theme-light .eyebrow,
html.theme-light .card-label,
html.theme-light .tool-badge,
html.theme-light .audience-tag,
html.theme-light .tag,
html.theme-light .form-note {
  font-family: "DM Sans", system-ui, sans-serif;
}

html.theme-light h1,
html.theme-light h2,
html.theme-light h3  { letter-spacing: -0.02em; }
html.theme-light blockquote { letter-spacing: -0.015em; }

/* Body / description text */
html.theme-light p,
html.theme-light li,
html.theme-light .subhead,
html.theme-light .card-detail,
html.theme-light .card-detail-example,
html.theme-light .cine-panel-step-body,
html.theme-light .cine-panel-vs-body {
  font-weight: 300;
  line-height: 1.7;
}

html.theme-light .grain { opacity: 0.012; }

/* ── Nav: Black bar ─────────────────────────────────────────────── */
html.theme-light header.nav {
  max-width: 100%;
  background: #0D0F0B;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Logo: DM Sans, matches nav/UI font family */
html.theme-light .logo {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  color: #FFFFFF;
  letter-spacing: 0.18em;
}

/* Nav logo volt-shimmer dot — reuses global shimmer keyframe */
.logo-dot {
  background-image: linear-gradient(90deg, #E5FF1F, #8A9E00, #E5FF1F);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav tagline — toned white shimmer on black bar */
html.theme-light .nav-tagline {
  background: linear-gradient(105deg, rgba(255,255,255,0.35) 25%, rgba(255,255,255,0.80) 60%, rgba(255,255,255,0.35) 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 1;
  animation: shimmer 4s ease-in-out infinite 1.4s;
}

/* "Launching soon" — volt shimmer text on dark nav, same rhythm as "faster" */
html.theme-light .tag {
  background: linear-gradient(105deg, rgba(255,255,255,0.45) 30%, #C8D820 70%, rgba(255,255,255,0.45) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-color: rgba(255, 255, 255, 0.14);
  animation: shimmer 4s ease-in-out infinite 0.8s;
}

/* Nav button: teal shimmer background */
html.theme-light header.nav .primary,
html.theme-light header.nav .primary--sm {
  background: linear-gradient(105deg, #1A9E8C 0%, #3AD6C5 45%, #7AEDE0 65%, #1A9E8C 100%);
  background-size: 200% 100%;
  color: #005151;
  font-weight: 700;
  box-shadow: none;
  animation: shimmer 4s ease-in-out infinite;
}
html.theme-light header.nav .primary:hover,
html.theme-light header.nav .primary--sm:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

/* ── Overlines (eyebrow) ────────────────────────────────────────── */
html.theme-light .eyebrow {
  color: #3AD6C5;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  background: none;
  -webkit-text-fill-color: initial;
}

/* ── THE SHIMMER — 1–2 accent words per h2, nowhere else ────────── */
/* Teal shimmer ("Three", "Properties", "chatbot.", "longer", "Five", "two") */
html.theme-light .word-teal {
  background: linear-gradient(105deg, #0D0F0B 30%, #3AD6C5 70%, #0D0F0B 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

/* Volt shimmer ("One", "sell.", "work.", "everything.", "indispensable", "once.") */
html.theme-light .word-volt {
  background: linear-gradient(105deg, #0D0F0B 30%, #8A9E00 70%, #0D0F0B 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite 0.8s;
}

html.theme-light .word-indigo {
  background: linear-gradient(105deg, #0D0F0B 30%, #89A6FF 70%, #0D0F0B 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite 0.4s;
  font-style: italic;
}

/* h1 em "faster." — volt shimmer, same family as "work." */
html.theme-light h1 em {
  background: linear-gradient(105deg, #0D0F0B 30%, #8A9E00 70%, #0D0F0B 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite 0.8s;
  font-style: italic;
}

/* "entire" — teal shimmer, same family as "Properties" */
html.theme-light .h1-purple {
  background: linear-gradient(105deg, #0D0F0B 30%, #3AD6C5 70%, #0D0F0B 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

/* Blockquote/statement plain text */
html.theme-light .highlight {
  background: none;
  -webkit-text-fill-color: #0D0F0B;
  color: #0D0F0B;
}

/* word-silver ("Nobody") — silver shimmer, same rhythm as "Every", italic */
html.theme-light .word-silver {
  background: linear-gradient(105deg, rgba(13,15,11,0.32) 25%, #C8C8E4 60%, rgba(13,15,11,0.32) 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
  font-style: italic;
}

/* ── Section h2 — plain, shimmer handled by child spans ─────────── */
html.theme-light h2,
html.theme-light .section-head h2 {
  color: #0D0F0B;
  background: none;
  -webkit-text-fill-color: #0D0F0B;
}

/* ── Stats ──────────────────────────────────────────────────────── */
html.theme-light .stat-big {
  background: none;
  -webkit-text-fill-color: #0D0F0B;
  color: #0D0F0B;
}

html.theme-light .stat-big--word {
  background: none;
  -webkit-text-fill-color: #1A9E8C;
  color: #1A9E8C;
}

html.theme-light .stat-unit { color: #3AD6C5; opacity: 1; }
html.theme-light .stat-num  { color: #3AD6C5; }

html.theme-light .stats-row {
  background: #FFFFFF;
  border: 0.5px solid #DFE1DF;
  box-shadow: none;
}
html.theme-light .stat-divider { background: #DFE1DF; }

/* Stat unit shimmer colors — teal / volt / gray / teal */
html.theme-light .stats-row .stat-block:nth-child(1) .stat-unit {
  background: linear-gradient(105deg, #1A9E8C 0%, #3AD6C5 45%, #7AEDE0 65%, #1A9E8C 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
html.theme-light .stats-row .stat-block:nth-child(3) .stat-unit {
  background: linear-gradient(105deg, #6B7A00 0%, #C8D820 45%, #E5FF4A 65%, #6B7A00 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  animation: shimmer 4s ease-in-out infinite;
  animation-delay: 0.6s;
}
html.theme-light .stats-row .stat-block:nth-child(5) .stat-unit {
  background: linear-gradient(105deg, #8A8E8A 0%, #C4C8C4 45%, #A8ACA8 65%, #8A8E8A 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
  animation-delay: 1.2s;
}
html.theme-light .stats-row .stat-block:nth-child(7) .stat-big--word {
  background: linear-gradient(105deg, #3A5FCC 0%, #89A6FF 45%, #B8CAFF 65%, #3A5FCC 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
  animation-delay: 1.8s;
}

/* ── Buttons (body context, not nav) ────────────────────────────── */
/* Teal shimmer background — same sweep as "Properties" text shimmer */
html.theme-light .primary {
  background: linear-gradient(105deg, #1A9E8C 0%, #3AD6C5 45%, #7AEDE0 65%, #1A9E8C 100%);
  background-size: 200% 100%;
  color: #005151;
  font-weight: 700;
  box-shadow: none;
  animation: shimmer 4s ease-in-out infinite;
}
html.theme-light .primary--volt {
  background: linear-gradient(105deg, #3A5FCC 0%, #89A6FF 45%, #B8CAFF 65%, #3A5FCC 100%);
  background-size: 200% 100%;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: none;
  animation: shimmer 4s ease-in-out infinite;
}
html.theme-light .primary:hover,
html.theme-light .primary--volt:hover {
  box-shadow: none;
}

html.theme-light .ghost {
  color: #0D0F0B;
  border-color: rgba(13, 15, 11, 0.18);
  box-shadow: none;
}
html.theme-light .ghost:hover {
  border-color: #3AD6C5;
  box-shadow: none;
}

/* Hero card View button — teal shimmer, display-only (non-interactive) */
html.theme-light .hw-view-btn {
  background: linear-gradient(105deg, #1A9E8C 0%, #3AD6C5 45%, #7AEDE0 65%, #1A9E8C 100%);
  background-size: 200% 100%;
  color: #005151;
  font-weight: 700;
  box-shadow: none;
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
  cursor: default;
}
html.theme-light .hw-view-btn:hover {
  box-shadow: none;
  transform: none;
}

/* Card expand trigger ("What's included", "See it in action") */
html.theme-light .card-expand-trigger,
html.theme-light .card-expand-trigger span {
  color: #6B7A00;
  font-weight: 600;
}

/* ── Orbs — very subtle on light bg ────────────────────────────── */
html.theme-light .orb-1 { background: radial-gradient(circle, rgba(58,214,197,0.08), transparent 65%); opacity: 0.35; }
html.theme-light .orb-2 { background: radial-gradient(circle, rgba(0,81,81,0.06), transparent 65%); opacity: 0.3; }
html.theme-light .orb-3 { background: radial-gradient(circle, rgba(58,214,197,0.05), transparent 65%); opacity: 0.3; }
html.theme-light .cursor-spotlight {
  background: radial-gradient(circle, rgba(58,214,197,0.04) 0%, transparent 65%);
}

/* ── Hero widget ────────────────────────────────────────────────── */
html.theme-light .hw-ring-1 { border-color: rgba(58,214,197,0.07); }
html.theme-light .hw-ring-2 { border-color: rgba(58,214,197,0.04); }

html.theme-light .hero-widget {
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
  box-shadow: none;
  height: 640px;
}

html.theme-light .hw-ai-panel {
  background: #F5F5F5;
  border: 0.5px solid #DFE1DF;
}

html.theme-light .hw-ai-text {
  color: rgba(13, 15, 11, 0.75);
}

html.theme-light .hw-ai-header {
  color: #1A9E8C;
  opacity: 1;
}

/* Price — plain near-black (word-silver handles muting) */
html.theme-light .hw-price {
  background: none;
  -webkit-text-fill-color: #0D0F0B;
  color: #0D0F0B;
}
/* Price — solid near-black, no shimmer, no italic */
html.theme-light .hw-price .word-silver {
  background: none;
  -webkit-text-fill-color: #0D0F0B;
  color: #0D0F0B;
  animation: none;
  font-style: normal;
}

/* ── Ticker ─────────────────────────────────────────────────────── */
html.theme-light .ticker-wrap {
  background: #DFE1DF;
  border-top: none;
  border-bottom: none;
}
html.theme-light .ticker-wrap::before { background: linear-gradient(to right, #DFE1DF, transparent); }
html.theme-light .ticker-wrap::after  { background: linear-gradient(to left,  #DFE1DF, transparent); }
html.theme-light .ticker { color: rgba(13, 15, 11, 0.45); }
html.theme-light .ticker span:nth-child(8n+1),
html.theme-light .ticker span:nth-child(8n+3),
html.theme-light .ticker span:nth-child(8n+5),
html.theme-light .ticker span:nth-child(8n+7) { color: #005151; }

/* ── Statement section ──────────────────────────────────────────── */
html.theme-light .statement-inner { border-color: #3AD6C5; }

/* ── Selected / active states ───────────────────────────────────── */
html.theme-light .copilot-selected,
html.theme-light .persona-selected,
html.theme-light .audience-selected {
  background: rgba(58, 214, 197, 0.05);
  border-color: rgba(58, 214, 197, 0.22) !important;
  box-shadow: none;
}

/* ── CTA section ─────────────────────────────────────────────────── */
html.theme-light .cta { background: #F5EBDC; }

/* ── Diff cards ──────────────────────────────────────────────────── */
html.theme-light .diff-card {
  background: transparent;
  border-bottom: 0.5px solid #DFE1DF;
  box-shadow: none;
}
html.theme-light .diff-card:first-child { border-top: 0.5px solid #DFE1DF; }
html.theme-light .diff-card:hover {
  background: #FFFFFF;
  box-shadow: inset 3px 0 0 rgba(58, 214, 197, 0.35);
}

/* ── Timeline ────────────────────────────────────────────────────── */
html.theme-light .timeline-item {
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
  box-shadow: none;
}
html.theme-light .timeline .timeline-item:nth-child(1) {
  background: linear-gradient(145deg, rgba(58,214,197,0.09) 0%, #FFFFFF 55%);
  border-color: rgba(58,214,197,0.22);
}
html.theme-light .timeline .timeline-item:nth-child(2) {
  background: linear-gradient(145deg, rgba(107,122,0,0.08) 0%, #FFFFFF 55%);
  border-color: rgba(107,122,0,0.18);
}
html.theme-light .timeline .timeline-item:nth-child(3) {
  background: linear-gradient(145deg, rgba(13,15,11,0.05) 0%, #FFFFFF 55%);
  border-color: rgba(13,15,11,0.14);
}
html.theme-light .timeline .timeline-item:nth-child(4) {
  background: linear-gradient(145deg, rgba(137,166,255,0.09) 0%, #FFFFFF 55%);
  border-color: rgba(137,166,255,0.20);
}
html.theme-light .timeline-item:hover {
  border-color: rgba(58, 214, 197, 0.28);
  box-shadow: inset 3px 0 0 rgba(58, 214, 197, 0.32);
}
html.theme-light .step { opacity: 1; color: #3AD6C5; }
html.theme-light .timeline-tag.active {
  background: rgba(13, 15, 11, 0.05);
  border-color: rgba(13, 15, 11, 0.15);
  color: rgba(13, 15, 11, 0.55);
}

/* ── Copilot ──────────────────────────────────────────────────────── */
html.theme-light .copilot-card {
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
  box-shadow: none;
}
html.theme-light .copilot-grid .copilot-card:nth-child(1) {
  background: linear-gradient(145deg, rgba(58,214,197,0.09) 0%, #FFFFFF 55%);
  border-color: rgba(58,214,197,0.22);
}
html.theme-light .copilot-grid .copilot-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(107,122,0,0.08) 0%, #FFFFFF 55%);
  border-color: rgba(107,122,0,0.18);
}
html.theme-light .copilot-grid .copilot-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(13,15,11,0.05) 0%, #FFFFFF 55%);
  border-color: rgba(13,15,11,0.14);
}
html.theme-light .copilot-grid .copilot-card:nth-child(4) {
  background: linear-gradient(145deg, rgba(137,166,255,0.09) 0%, #FFFFFF 55%);
  border-color: rgba(137,166,255,0.20);
}
html.theme-light .copilot-card::before {
  background: linear-gradient(90deg, transparent, rgba(58,214,197,0.35), transparent);
}
html.theme-light .copilot-card:hover {
  border-color: rgba(58, 214, 197, 0.28);
  background: #FFFFFF;
  box-shadow: inset 3px 0 0 rgba(58, 214, 197, 0.32);
}
html.theme-light .copilot-card.open {
  background: #FFFFFF;
  border-color: rgba(58, 214, 197, 0.28);
}
html.theme-light .copilot-msg-user p {
  background: rgba(58, 214, 197, 0.07);
  border-color: rgba(58, 214, 197, 0.15);
}
html.theme-light .copilot-typing p {
  background: #F5F5F5;
  border-color: #DFE1DF;
}
html.theme-light .copilot-chip {
  border-color: rgba(58, 214, 197, 0.22);
  background: transparent;
  color: #1A9E8C;
}
html.theme-light .copilot-chip:hover {
  background: rgba(58, 214, 197, 0.07);
  border-color: rgba(58, 214, 197, 0.32);
}

/* ── Persona ─────────────────────────────────────────────────────── */
html.theme-light .persona-track {
  background: #FFFFFF;
  border-color: #D5D6D2;
  border-bottom-color: #D5D6D2;
  box-shadow: none;
}
html.theme-light .persona-track:first-child { border-top-color: #D5D6D2; }
html.theme-light .persona-grid::before {
  background: linear-gradient(to bottom, rgba(58,214,197,0.18) 0%, transparent 100%);
}
html.theme-light .persona-track:hover {
  border-color: rgba(58, 214, 197, 0.28);
  background: #FFFFFF;
  box-shadow: inset 3px 0 0 rgba(58, 214, 197, 0.30);
}
html.theme-light .persona-track:hover .persona-icon,
html.theme-light .persona-track.open  .persona-icon {
  background: rgba(58, 214, 197, 0.08);
  border-color: rgba(58, 214, 197, 0.22);
}
html.theme-light .persona-track:hover .persona-icon { transform: translateX(4px); }
html.theme-light .persona-track.open { border-color: rgba(58, 214, 197, 0.25); }
html.theme-light .persona-icon { background: rgba(58, 214, 197, 0.06); border-color: rgba(58, 214, 197, 0.12); }
html.theme-light .persona-icon svg { stroke: #1A9E8C; }

/* ── Audience cards ──────────────────────────────────────────────── */
html.theme-light .audience-grid .audience-card {
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
  box-shadow: none;
}
html.theme-light .audience-grid .audience-card:nth-child(1) {
  background: linear-gradient(145deg, rgba(58,214,197,0.09) 0%, #FFFFFF 55%);
  border-color: rgba(58,214,197,0.22);
}
html.theme-light .audience-grid .audience-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(107,122,0,0.08) 0%, #FFFFFF 55%);
  border-color: rgba(107,122,0,0.18);
}
html.theme-light .audience-grid .audience-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(13,15,11,0.05) 0%, #FFFFFF 55%);
  border-color: rgba(13,15,11,0.14);
}
html.theme-light .audience-card.open {
  border-color: rgba(58, 214, 197, 0.25);
  background: #FFFFFF;
}
html.theme-light .card-detail-example {
  background: #F5EBDC;
  border: 0.5px solid #EBDCCD;
}
html.theme-light .audience-grid .audience-card:nth-child(1):hover {
  border-color: rgba(58, 214, 197, 0.30);
  background: #FFFFFF;
  box-shadow: inset 3px 0 0 rgba(58, 214, 197, 0.32);
}
html.theme-light .audience-grid .audience-card:nth-child(2):hover {
  border-color: rgba(107, 122, 0, 0.22);
  background: #FFFFFF;
  box-shadow: inset 3px 0 0 rgba(107, 122, 0, 0.25);
}
html.theme-light .audience-grid .audience-card:nth-child(3):hover {
  border-color: rgba(13, 15, 11, 0.15);
  background: #FFFFFF;
  box-shadow: inset 3px 0 0 rgba(13, 15, 11, 0.12);
}

/* Card tag pills — all audiences uniform */
html.theme-light .audience-tag,
html.theme-light .card-label {
  color: rgba(13, 15, 11, 0.40);
  border-color: rgba(13, 15, 11, 0.13);
  border-radius: 100px;
  background: transparent;
  -webkit-text-fill-color: initial;
}

html.theme-light .audience-price { color: #6B7A00; font-weight: 600; }

/* ── Tool cards / badges ─────────────────────────────────────────── */
html.theme-light .tool-badge {
  background: transparent;
  border-color: rgba(13, 15, 11, 0.13);
  color: rgba(13, 15, 11, 0.40);
  border-radius: 100px;
}

/* "Coming next" — volt shimmer text, same family as "until now" */
html.theme-light .tool-badge-soon {
  background: linear-gradient(105deg, #6B7A00 30%, #8A9E00 70%, #6B7A00 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-color: rgba(107, 122, 0, 0.22);
  border-radius: 100px;
  animation: shimmer 4s ease-in-out infinite 0.8s;
}
html.theme-light .listing-tab.active {
  background: rgba(58, 214, 197, 0.09);
  border-color: rgba(58, 214, 197, 0.22);
}
html.theme-light .tool-featured,
html.theme-light .tool-selected {
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2 !important;
  box-shadow: none;
}
html.theme-light .tool-card:nth-child(1) {
  background: linear-gradient(145deg, rgba(58,214,197,0.09) 0%, #FFFFFF 55%) !important;
  border-color: rgba(58,214,197,0.22) !important;
}
html.theme-light .tool-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(107,122,0,0.08) 0%, #FFFFFF 55%) !important;
  border-color: rgba(107,122,0,0.18) !important;
}
html.theme-light .listing-demo {
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
  box-shadow: none;
}
html.theme-light .listing-demo-dot { box-shadow: none; }
html.theme-light .listing-copy-btn:hover {
  color: #1A9E8C;
  border-color: rgba(58, 214, 197, 0.28);
  background: rgba(58, 214, 197, 0.04);
}

/* ── Cinematic panel ─────────────────────────────────────────────── */
html.theme-light .cine-panel {
  border: 0.5px solid #D5D6D2;
  box-shadow: none;
}
html.theme-light .cine-panel-badge {
  background: rgba(58, 214, 197, 0.07);
  border-color: rgba(58, 214, 197, 0.18);
  color: #1A9E8C;
}
html.theme-light .cine-panel-badge-dot { background: #3AD6C5; box-shadow: none; }
html.theme-light .cine-panel-step-num  { color: #3AD6C5; opacity: 0.55; }
html.theme-light .cine-panel-vs-teaser {
  background: #F5EBDC;
  border: 0.5px solid #EBDCCD;
}
html.theme-light .cine-panel-vs-title  { color: #1A9E8C; }
html.theme-light .cine-panel-vs-icon   { background: rgba(58,214,197,0.07); border-color: rgba(58,214,197,0.14); color: #1A9E8C; }

/* ── Listing Demo Panel (light theme only) ───────────────────────── */

/* Hide original cine-frame in light; hide LDP in all other themes */
.listing-demo-panel { display: none; }
html.theme-light .cine-frame { display: none; }
html.theme-light .listing-demo-panel {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 0.5px solid #D5D6D2;
  background: #0D0F0B;
  overflow: hidden;
  /* Fixed height — panel never resizes as the AI typewriter adds text.
     chrome (~36) + image (255) + data bar (~26) = 317px; ai-bar fills the rest. */
  height: 420px;
}

/* Browser chrome bar */
html.theme-light .ldp-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #1A1C1A;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
html.theme-light .ldp-dots { display: flex; gap: 5px; align-items: center; }
html.theme-light .ldp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}
html.theme-light .ldp-dot--red    { background: #FF5F57; }
html.theme-light .ldp-dot--yellow { background: #FFBD2E; }
html.theme-light .ldp-dot--green  { background: #28CA41; }
html.theme-light .ldp-url {
  flex: 1;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 3px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
html.theme-light .ldp-live {
  background: #3AD6C5;
  color: #005151;
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

/* Property image */
html.theme-light .ldp-image-wrap {
  position: relative;
  height: 255px;
  overflow: hidden;
  flex-shrink: 0;
}
html.theme-light .ldp-image {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600210492493-0946911123ea?w=1200&q=85') center/cover no-repeat;
  filter: brightness(0.82) saturate(1.08) contrast(1.04);
  transform-origin: center center;
}
html.theme-light .ldp-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.22) 0%, transparent 30%, transparent 55%, rgba(0,0,0,0.68) 100%);
  z-index: 1;
  pointer-events: none;
}
html.theme-light .ldp-img-top {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
}
html.theme-light .ldp-now-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  background: rgba(5,7,15,0.60);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(58,214,197,0.25);
}
html.theme-light .ldp-now-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #3AD6C5;
  box-shadow: 0 0 6px #3AD6C5;
  animation: blink 2s ease-in-out infinite;
}
html.theme-light .ldp-img-bottom {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
html.theme-light .ldp-address,
html.theme-light .ldp-price {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 15px;
  color: #FFFFFF;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}

/* Live data bar */
html.theme-light .ldp-data-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(58,214,197,0.08);
  border-top: 0.5px solid rgba(58,214,197,0.20);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.50);
  flex-shrink: 0;
}
html.theme-light .ldp-data-divider {
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* AI copilot bar */
html.theme-light .ldp-ai-bar {
  padding: 12px 16px;
  background: #111111;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-height: 0;   /* prevent flex blowout */
  overflow: hidden; /* clip text growth so panel never resizes */
}
html.theme-light .ldp-ai-label {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #3AD6C5;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
html.theme-light .ldp-ai-text {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
html.theme-light .ldp-cursor {
  display: inline-block;
  width: 2px;
  height: 13px;
  background: #3AD6C5;
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

/* ── Caption stats — left border + shimmer ───────────────────────── */
html.theme-light .caption-stats .stat {
  border-left: 2px solid #3AD6C5;
  padding-left: 16px;
}
/* 3× — teal shimmer */
/* 3× / AI / 0 — gray/silver gradient, static */
html.theme-light .caption-stats .stat:nth-child(1) .stat-num,
html.theme-light .caption-stats .stat:nth-child(2) .stat-num,
html.theme-light .caption-stats .stat:nth-child(3) .stat-num {
  background: linear-gradient(105deg, #0D0F0B 25%, #C8C8E4 60%, #0D0F0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: none;
}

/* ── Stack cards ─────────────────────────────────────────────────── */
html.theme-light .stack-card {
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
  box-shadow: none;
}

/* ── Footer ──────────────────────────────────────────────────────── */
html.theme-light .footer {
  background: #EBDCCD;
  border-top: 0.5px solid #DFE1DF;
  color: rgba(13, 15, 11, 0.45);
}

/* ── Theme toggle ─────────────────────────────────────────────────── */
html.theme-light .theme-toggle {
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
  color: #0D0F0B;
}
html.theme-light .theme-toggle:hover { border-color: #3AD6C5; }

/* ══════════════════════════════════════════════════════════════════════════════
   TOOLS SECTION REBUILD — FULL PLATFORM VIEW
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Section Header ─────────────────────────────────────────────────────────── */
.tools-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.tools-overline {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3AD6C5;
  margin: 0 0 14px;
}
.tools-headline {
  font-family: "DM Serif Display", serif;
  font-size: clamp(38px, 5.5vw, 52px);
  color: var(--text);
  letter-spacing: -0.5px;
  margin: 0 0 18px;
  line-height: 1.15;
}
.tools-sub {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgba(13,15,11,0.55);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Workflow Timeline ───────────────────────────────────────────────────────── */
.tools-timeline {
  position: relative;
  max-width: 620px;
  margin: 0 auto 64px;
  padding-left: 52px;
  display: flex;
  flex-direction: column;
}
.tools-tl-line {
  position: absolute;
  left: 14px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, #3AD6C5, rgba(58,214,197,0.05));
  border-radius: 2px;
}
.tools-step {
  position: relative;
  padding: 18px 0;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
/* connector dot on the line */
.tools-step::before {
  content: "";
  position: absolute;
  left: -44px;
  top: 26px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3AD6C5;
  box-shadow: 0 0 0 3px rgba(58,214,197,0.15);
}
.tools-step-num {
  position: absolute;
  left: -52px;
  top: 8px;
  font-family: "DM Serif Display", serif;
  font-size: 64px;
  color: #3AD6C5;
  opacity: 0.08;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.tools-step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tools-step-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tools-step-outcome {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(13,15,11,0.55);
  margin: 0;
  line-height: 1.6;
}
.tools-step-badge {
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 20px;
  text-transform: none;
  white-space: nowrap;
  vertical-align: middle;
}
.tools-step-badge--now {
  background: rgba(58,214,197,0.15);
  color: #1A9E8C;
}
.tools-step-badge--dev {
  background: rgba(13,15,11,0.08);
  color: rgba(13,15,11,0.45);
}
.tools-step-badge--indigo {
  background: rgba(137,166,255,0.18);
  color: #3A5FCC;
}
/* "Coming soon" — volt/gold tone */
.tools-step-badge--future {
  background: rgba(107,122,0,0.1);
  color: #6B7A00;
}

/* ── Pillar Cards Grid ───────────────────────────────────────────────────────── */
/* 6-column base — top row: 3 cards × 2 cols each; bottom row: 2 cards × 2 cols centered */
.tools-pillars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 52px;
}
.tools-pillar-card:nth-child(1) { grid-column: 1 / 3; }
.tools-pillar-card:nth-child(2) { grid-column: 3 / 5; }
.tools-pillar-card:nth-child(3) { grid-column: 5 / 7; }
.tools-pillar-card:nth-child(4) { grid-column: 2 / 4; }
.tools-pillar-card:nth-child(5) { grid-column: 4 / 6; }

.tools-pillar-card {
  background: var(--bg-elev);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: default;
  position: relative;
}
.pillar-num {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3AD6C5;
  margin: 0;
}
.pillar-name {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}
.pillar-outcome {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(13,15,11,0.55);
  margin: 0;
  line-height: 1.6;
}

/* ── Mini Demo: Dark panel (Card 1) ─────────────────────────────────────────── */
.pillar-demo {
  margin-top: 6px;
  border-radius: 6px;
  overflow: hidden;
}
.pillar-demo--dark {
  background: #0D0F0B;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pd-tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 7px;
  margin-bottom: 3px;
}
.pd-tab {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  cursor: default;
  padding-bottom: 4px;
}
.pd-tab--active {
  color: rgba(255,255,255,0.85);
  border-bottom: 1.5px solid #3AD6C5;
}
.pd-copy-line {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pd-gen-time {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #6B7A00;
  margin: 3px 0 0;
}

/* ── Mini Demo: Browser mockup (Card 2) ─────────────────────────────────────── */
.pillar-demo--browser {
  background: #0D0F0B;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.pd-chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pd-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pd-dot--r { background: #FF5F56; }
.pd-dot--y { background: #FFBD2E; }
.pd-dot--g { background: #27C93F; }
.pd-url {
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  margin-left: 4px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pd-live-badge {
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 600;
  background: #3AD6C5;
  color: #005151;
  padding: 2px 6px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.pd-thumbnail {
  background: linear-gradient(160deg, #1a2a2a 0%, #0D2020 100%);
  height: 70px;
  display: flex;
  align-items: flex-end;
  padding: 8px 10px;
}
.pd-prop-name {
  font-family: "DM Serif Display", serif;
  font-size: 13px;
  color: #ffffff;
}
.pd-engagement {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  margin: 8px 0 0;
  text-align: center;
}

/* ── Mini Demo: Video player (Card 3) ───────────────────────────────────────── */
.pillar-demo--video {
  background: #111;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pd-play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #3AD6C5;
  border: none;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-video-bar {
  position: absolute;
  bottom: 8px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pd-timecode {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 9px;
  color: rgba(255,255,255,0.35);
}
.pd-progress-track {
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.pd-progress-fill {
  height: 100%;
  width: 38%;
  background: linear-gradient(90deg, #3AD6C5, #8A9E00);
  border-radius: 2px;
}
.pd-voice-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: rgba(13,15,11,0.4);
  margin: 6px 0 0;
}

/* ── Mini Demo: Chat bubbles (Card 4) ───────────────────────────────────────── */
.pillar-demo--chat {
  background: rgba(13,15,11,0.03);
  border-radius: 6px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pd-bubble {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  padding: 6px 10px;
  max-width: 80%;
  line-height: 1.5;
}
.pd-bubble--buyer {
  background: #3AD6C5;
  color: #005151;
  font-weight: 400;
  border-radius: 10px 2px 10px 10px;
  max-width: 75%;
  margin-left: auto;
}
.pd-bubble--ai {
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
  font-weight: 300;
  color: #0D0F0B;
  border-radius: 2px 10px 10px 10px;
}
.pd-ai-label {
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: #1A9E8C;
  margin: 0 0 2px;
}

/* ── Mini Demo: Metric pills (Card 5) ───────────────────────────────────────── */
.pillar-demo--metrics {
  display: flex;
  gap: 8px;
}
.pd-metric-pill {
  flex: 1;
  background: rgba(13,15,11,0.04);
  border-radius: 6px;
  padding: 8px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}
.pd-metric-val {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: #0D0F0B;
  line-height: 1;
}
.pd-metric-val--leads {
  color: #3AD6C5;
  animation: livePulse 2s ease-in-out infinite;
}
.pd-metric-label {
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  color: rgba(13,15,11,0.4);
}
.pd-call-cta {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #6B7A00;
  margin: 6px 0 0;
}

/* ── Closing line ───────────────────────────────────────────────────────────── */
.tools-closing-line {
  font-family: "DM Serif Display", serif;
  font-style: normal;
  font-size: 36px;
  color: #0D0F0B;
  text-align: center;
  margin: 0 0 32px;
}
@keyframes tclShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.tcl-shimmer {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% auto;
  animation: tclShimmer 4s linear infinite;
}
.tcl-shimmer--indigo {
  background-image: linear-gradient(90deg, #89A6FF, #C4B5FD, #89A6FF, #6B8FFF, #89A6FF);
}
.tcl-shimmer--volt {
  background-image: linear-gradient(90deg, #6B7A00, #B8CC00, #E0F000, #B8CC00, #6B7A00);
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .tools-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .tools-pillar-card:nth-child(1),
  .tools-pillar-card:nth-child(2),
  .tools-pillar-card:nth-child(3),
  .tools-pillar-card:nth-child(4),
  .tools-pillar-card:nth-child(5) {
    grid-column: span 1;
  }
}
@media (max-width: 560px) {
  .tools-pillars {
    grid-template-columns: 1fr;
  }
  .tools-pillar-card:nth-child(1),
  .tools-pillar-card:nth-child(2),
  .tools-pillar-card:nth-child(3),
  .tools-pillar-card:nth-child(4),
  .tools-pillar-card:nth-child(5) {
    grid-column: span 1;
  }
  .tools-timeline {
    padding-left: 40px;
  }
}

/* ── Pillar card header row ──────────────────────────────────────────────────── */
.pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.pillar-header .pillar-num { margin: 0; }

/* ── Status badges (cards) ───────────────────────────────────────────────────── */
.pillar-badge {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pillar-badge--now {
  background: rgba(58,214,197,0.1);
  border: 0.5px solid rgba(58,214,197,0.35);
  color: #1A9E8C;
}
.pillar-badge--dev {
  background: rgba(13,15,11,0.05);
  border: 0.5px solid rgba(13,15,11,0.15);
  color: rgba(13,15,11,0.45);
}
.pillar-badge--coming {
  background: rgba(107,122,0,0.08);
  border: 0.5px solid rgba(107,122,0,0.2);
  color: #6B7A00;
}

/* ── Card 1: single copy-text element + Try it link ─────────────────────────── */
.pd-copy-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.6;
}
.pd-tab { cursor: pointer; }
.pd-try-link {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: #1A9E8C;
  text-decoration: none;
  display: inline-block;
  margin-top: 2px;
  transition: color 0.15s;
}
.pd-try-link:hover { color: #3AD6C5; }

/* ── Card 2: coming-soon thumbnail ──────────────────────────────────────────── */
.pd-thumbnail--coming {
  background: linear-gradient(160deg, #0D2020, #1a1a2e) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  position: relative;
  overflow: hidden;
}
.pd-cs-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.pd-cs-title {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.pd-cs-sub {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  margin: 0;
  text-align: center;
}
.pd-shimmer-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3AD6C5, transparent);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  opacity: 0.7;
}
.pd-be-first {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: #6B7A00;
  text-align: center;
  margin: 8px 0 0;
}

/* ── Card 3: coming-soon video state ─────────────────────────────────────────── */
.pillar-demo--video {
  position: relative;
  overflow: hidden;
  gap: 8px;
}
.pd-vs-ring-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-vs-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(58,214,197,0.3);
}
.pd-vs-inner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(58,214,197,0.08);
}
.pd-cs-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding: 0 12px;
}
.pd-thin-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #3AD6C5, rgba(58,214,197,0.1));
  opacity: 0.3;
}

/* ── Card 4: typing dots + extra labels ─────────────────────────────────────── */
.pd-typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 2px 0 4px;
}
.pd-typing-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(13,15,11,0.25);
  opacity: 0.25;
}
.pd-copilot-sub {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: rgba(13,15,11,0.4);
  margin: 8px 0 4px;
}
.pd-copilot-tag {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(13,15,11,0.4);
  border: 0.5px solid rgba(13,15,11,0.13);
  border-radius: 100px;
  padding: 2px 8px;
  display: inline-block;
}

/* ── Card 5: dashboard extras + typewriter ───────────────────────────────────── */
.pd-dashboard-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: rgba(13,15,11,0.35);
  text-align: center;
  margin: 8px 0 0;
}
.pd-rec-typewriter {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: #0D0F0B;
  margin: 8px 0 0;
  min-height: 1.4em;
}
.pd-send-followup {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #6B7A00;
  margin: 4px 0 0;
  opacity: 0;
}

/* word-silver in tools headline — no italic (reuse shimmer, drop italic) */
html.theme-light .tools-headline .word-silver {
  font-style: normal;
}

/* ── Light-theme overrides ──────────────────────────────────────────────────── */
html.theme-light .tools-sub {
  color: rgba(13,15,11,0.55);
}
html.theme-light .tools-step-outcome {
  color: rgba(13,15,11,0.55);
}
html.theme-light .tools-pillar-card {
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
}
html.theme-light .tools-pillar-card:nth-child(1) {
  background: linear-gradient(145deg, rgba(58,214,197,0.09) 0%, #FFFFFF 55%);
  border-color: rgba(58,214,197,0.22);
}
html.theme-light .tools-pillar-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(107,122,0,0.08) 0%, #FFFFFF 55%);
  border-color: rgba(107,122,0,0.18);
}
html.theme-light .tools-pillar-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(13,15,11,0.04) 0%, #FFFFFF 55%);
  border-color: rgba(13,15,11,0.08);
}
html.theme-light .tools-pillar-card:nth-child(4) {
  background: linear-gradient(145deg, rgba(137,166,255,0.09) 0%, #FFFFFF 55%);
  border-color: rgba(137,166,255,0.20);
}
html.theme-light .tools-pillar-card:nth-child(5) {
  background: linear-gradient(145deg, rgba(58,214,197,0.07) 0%, #FFFFFF 55%);
  border-color: rgba(58,214,197,0.15);
}
html.theme-light .pillar-demo--chat {
  background: rgba(13,15,11,0.03);
}
html.theme-light .pd-metric-pill {
  background: rgba(13,15,11,0.04);
}
html.theme-light .tools-closing-line {
  color: #0D0F0B;
}
/* Teal shimmer on "87%" metric value */
html.theme-light .pd-metric-val--teal {
  background: linear-gradient(105deg, #1A9E8C 0%, #3AD6C5 50%, #1A9E8C 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════════════════════
   INTELLIGENCE DASHBOARD CARD — RICH EMULATION
   ══════════════════════════════════════════════════════════════════════════════ */

/* Dashboard card override — no gap between layers, tighter */
.tools-pillar-card--dashboard { gap: 8px; }

/* ── KPI grid ──────────────────────────────────────────────────────────────── */
.pd-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.pd-kpi-tile {
  background: rgba(13,15,11,0.03);
  border: 0.5px solid rgba(13,15,11,0.07);
  border-radius: 6px;
  padding: 7px 9px;
}
.pd-kpi-val {
  font-family: "DM Serif Display", serif;
  font-size: 17px;
  color: #0D0F0B;
  margin: 0 0 1px;
  line-height: 1;
}
.pd-kpi-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(13,15,11,0.4);
  margin: 0 0 2px;
}
.pd-kpi-delta {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 9px;
  margin: 0;
}
.pd-kpi-delta--up   { color: #1A9E8C; }
.pd-kpi-delta--down { color: #C0392B; }

/* ── Sparkline ─────────────────────────────────────────────────────────────── */
.pd-spark-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(13,15,11,0.3);
  margin: 4px 0 2px;
}
.pd-sparkline-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 2px;
}

/* ── Lead rows ─────────────────────────────────────────────────────────────── */
.pd-leads {
  display: flex;
  flex-direction: column;
  border: 0.5px solid rgba(13,15,11,0.06);
  border-radius: 6px;
  overflow: hidden;
}
.pd-lead-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border-bottom: 0.5px solid rgba(13,15,11,0.05);
}
.pd-lead-row--last { border-bottom: none; }
.pd-lead-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 8px;
  flex-shrink: 0;
}
.pd-lead-avatar--sk { background: #3AD6C5; color: #005151; }
.pd-lead-avatar--jt { background: rgba(13,15,11,0.08); color: rgba(13,15,11,0.5); }
.pd-lead-avatar--ml { background: rgba(107,122,0,0.15); color: #6B7A00; }
.pd-lead-info {
  flex: 1;
  min-width: 0;
}
.pd-lead-name {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: #0D0F0B;
  margin: 0 0 1px;
}
.pd-lead-rec {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 9px;
  font-style: italic;
  color: rgba(13,15,11,0.4);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pd-lead-rec--priority { color: #1A9E8C; }
.pd-reach {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 9px;
  color: rgba(13,15,11,0.28);
  white-space: nowrap;
  flex-shrink: 0;
}
.pd-reach--priority { color: #1A9E8C; }

/* ── Generate Summary button ───────────────────────────────────────────────── */
.pd-gen-summary-btn {
  width: 100%;
  padding: 8px 14px;
  background: rgba(13,15,11,0.04);
  border: 0.5px solid rgba(13,15,11,0.12);
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: #0D0F0B;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.pd-gen-summary-btn:hover {
  background: rgba(58,214,197,0.08);
  border-color: rgba(58,214,197,0.3);
  color: #1A9E8C;
}

/* ── In-card summary modal ─────────────────────────────────────────────────── */
.pd-summary-modal {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
  border-radius: var(--radius-lg);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.pd-modal-title {
  font-family: "DM Serif Display", serif;
  font-size: 15px;
  color: #0D0F0B;
  margin: 0;
}
.pd-modal-close {
  background: none;
  border: none;
  font-size: 18px;
  color: rgba(13,15,11,0.3);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}
.pd-modal-close:hover { color: #0D0F0B; }
.pd-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  flex: 1;
}
.pd-modal-option {
  background: rgba(13,15,11,0.03);
  border: 0.5px solid rgba(13,15,11,0.08);
  border-radius: 6px;
  padding: 9px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.pd-modal-option:hover {
  background: rgba(58,214,197,0.04);
  border-color: rgba(58,214,197,0.3);
}
.pd-modal-icon {
  font-size: 11px;
  color: #3AD6C5;
  line-height: 1;
  margin-bottom: 3px;
}
.pd-modal-opt-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 10px;
  color: #0D0F0B;
  margin: 0;
}
.pd-modal-opt-desc {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 9px;
  color: rgba(13,15,11,0.45);
  margin: 0;
  line-height: 1.4;
}
.pd-audio-tag {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: rgba(58,214,197,0.1);
  border: 0.5px solid rgba(58,214,197,0.3);
  color: #1A9E8C;
  border-radius: 100px;
  padding: 2px 7px;
  margin-top: 4px;
}
.pd-modal-footer {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 9px;
  color: rgba(13,15,11,0.3);
  text-align: center;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════════════
   TOOLS PRODUCT CAROUSEL
   ══════════════════════════════════════════════════════════════════════════════ */

.tools-carousel {
  position: relative;
  max-width: 680px;
  margin: 0 auto 56px;
  padding: 0 36px;
}

/* Step counter */
.tc-counter {
  position: absolute;
  top: 0;
  right: 36px;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(13,15,11,0.35);
  letter-spacing: 0.5px;
  z-index: 2;
  margin: 0;
}

/* Arrows */
.tc-arrow {
  position: absolute;
  top: 196px;
  transform: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
  color: #0D0F0B;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  font-family: inherit;
  transition: opacity 0.2s;
}
.tc-arrow--prev { left: -8px; }
.tc-arrow--next { right: -8px; }
.tc-arrow:disabled { opacity: 0.3; pointer-events: none; }

/* Viewport */
.tc-viewport {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

/* Each step */
.tc-step {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.tc-step--active {
  display: flex;
}

/* Step header */
.tc-step-header { display: flex; flex-direction: column; gap: 6px; }
.tc-step-meta   { display: flex; align-items: center; gap: 10px; }

.tc-step-num {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(13,15,11,0.35);
}

/* Step badges */
.tc-step-badge {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.tc-step-badge--now    { background: rgba(58,214,197,0.1);    border: 0.5px solid rgba(58,214,197,0.35);  color: #1A9E8C; }
.tc-step-badge--dev    { background: rgba(137,166,255,0.12);  border: 0.5px solid rgba(137,166,255,0.3);  color: #3A5FCC; }
.tc-step-badge--coming { background: rgba(107,122,0,0.08);    border: 0.5px solid rgba(107,122,0,0.2);    color: #6B7A00; }

.tc-step-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(22px, 4vw, 30px);
  color: #0D0F0B;
  margin: 0;
  line-height: 1.15;
}
.tc-step-sub {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(13,15,11,0.5);
  margin: 0;
}

/* Panel shell */
.tc-panel {
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tc-panel--dark {
  background: #111311;
  border-color: rgba(255,255,255,0.08);
}

/* Coming-soon panel — centered placeholder, no background content */
.tc-panel--coming {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 180px;
  opacity: 0.5;
  background: rgba(13,15,11,0.02);
  border-style: dashed;
}

/* Spinner */
.tc-spinner {
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(58,214,197,0.25);
  border-top-color: #3AD6C5;
  border-radius: 50%;
  animation: tcSpin 0.65s linear infinite;
  flex-shrink: 0;
}
.tc-spinner--wave {
  width: 16px;
  height: 16px;
  border-width: 1.5px;
}
@keyframes tcSpin {
  to { transform: rotate(360deg); }
}

/* ── Step 01: Input ────────────────────────────────────────────────────────── */
.tc-import-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tc-toggle {
  width: 32px;
  height: 18px;
  border-radius: 100px;
  background: rgba(13,15,11,0.12);
  position: relative;
  flex-shrink: 0;
}
.tc-toggle--on { background: #3AD6C5; }
.tc-toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FFFFFF;
}
.tc-toggle--on .tc-toggle-knob { left: 16px; }
.tc-import-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(13,15,11,0.5);
  margin: 0;
}
.tc-fields-grid {
  display: grid;
  gap: 8px;
}
.tc-fields-grid--2 { grid-template-columns: 1fr 1fr; }
.tc-fields-grid--4 { grid-template-columns: repeat(4, 1fr); }
.tc-field { display: flex; flex-direction: column; gap: 3px; }
.tc-field-label {
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(13,15,11,0.4);
  margin: 0;
}
.tc-input {
  background: #FAFAFA;
  border: 0.5px solid #D5D6D2;
  border-radius: 6px;
  padding: 8px 12px;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #0D0F0B;
  width: 100%;
  box-sizing: border-box;
}
.tc-select { appearance: none; }
.tc-features-row { display: flex; flex-direction: column; gap: 6px; }
.tc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tc-tag {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #1A9E8C;
  background: rgba(58,214,197,0.08);
  border: 0.5px solid rgba(58,214,197,0.2);
  border-radius: 100px;
  padding: 3px 10px;
}
.tc-continue-row { display: flex; justify-content: flex-end; margin-top: 4px; }
.tc-continue-btn {
  background: #005151;
  color: #3AD6C5;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

/* ── Step 02: AI Listing Copy ──────────────────────────────────────────────── */
.tc-copilot-row { display: flex; align-items: center; gap: 6px; }
.tc-copilot-dot {
  font-size: 8px;
  color: #3AD6C5;
}
.tc-copilot-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 10px;
  color: #3AD6C5;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tc-buyer-row { display: flex; align-items: center; gap: 8px; }
.tc-buyer-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}
.tc-buyer-pills { display: flex; gap: 6px; }
.tc-buyer-pill {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  border: 0.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
}
.tc-buyer-pill--active {
  background: rgba(58,214,197,0.1);
  border-color: rgba(58,214,197,0.3);
  color: #3AD6C5;
}
.tc-tabs { display: flex; gap: 8px; }
.tc-tab {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  padding: 3px 10px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.tc-tab--active {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}
.tc-copy-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0;
}
.tc-gen-time {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  color: rgba(107,122,0,0.8);
  margin: 0;
}

/* ── Step 03: Script ───────────────────────────────────────────────────────── */
.tc-script-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tc-script-label {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(13,15,11,0.4);
}
.tc-script-time {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: #1A9E8C;
}
.tc-script-area {
  background: rgba(13,15,11,0.02);
  border-radius: 6px;
  padding: 14px;
  min-height: 110px;
}
.tc-script-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(13,15,11,0.7);
  line-height: 1.75;
  margin: 0;
  display: inline;
}
.tc-script-cursor {
  display: inline-block;
  width: 2px;
  height: 13px;
  background: #3AD6C5;
  vertical-align: middle;
  margin-left: 2px;
  animation: cursorBlink 0.8s ease-in-out infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.tc-word-count {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: rgba(13,15,11,0.35);
  margin: 0;
}

/* ── Step 04: Voice Synthesis ──────────────────────────────────────────────── */
.tc-voice-select-label {
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(13,15,11,0.35);
  margin: 0;
}
.tc-voice-options { display: flex; gap: 10px; }
.tc-voice-option {
  flex: 1;
  border: 0.5px solid #D5D6D2;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tc-voice-option--active {
  border-color: #3AD6C5;
  background: rgba(58,214,197,0.06);
}
.tc-voice-option svg { color: rgba(13,15,11,0.35); margin-bottom: 2px; }
.tc-voice-option--active svg { color: #3AD6C5; }
.tc-voice-name {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #0D0F0B;
  margin: 0;
}
.tc-voice-desc {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(13,15,11,0.5);
  margin: 0;
}
.tc-waveform-wrap {
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
}
.tc-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 32px;
  width: 100%;
}
.tc-wave-processing {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.9);
  border-radius: 4px;
}
.tc-wave-proc-label {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(13,15,11,0.5);
}
.tc-wave-bar {
  flex: 1;
  min-width: 1px;
  border-radius: 2px;
  transform-origin: bottom center;
}
.tc-wave-bar--played   { background: #3AD6C5; }
.tc-wave-bar--unplayed { background: rgba(13,15,11,0.1); }
.tc-playback { display: flex; justify-content: space-between; }
.tc-playback-time,
.tc-playback-total {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(13,15,11,0.4);
}
.tc-synth-status {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #1A9E8C;
  margin: 0;
}

/* ── Steps 05 & 06: Coming-soon ring/text (flat, no overlay) ───────────────── */
.tc-coming-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(58,214,197,0.5);
  margin-bottom: 4px;
}
.tc-coming-title {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(13,15,11,0.45);
  margin: 0;
}
.tc-coming-sub {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(13,15,11,0.3);
  margin: 0;
}
.tc-video-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  gap: 12px;
}
.tc-video-meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  color: rgba(13,15,11,0.4);
}
.tc-browser-inner {
  display: flex;
  flex-direction: column;
}

/* ── Step 07: Compact dashboard panel ──────────────────────────────────────── */
.tc-dashboard-panel {
  gap: 6px;
  padding: 14px;
}
.tc-dashboard-panel .pd-kpi-grid { gap: 4px; }
.tc-dashboard-panel .pd-kpi-tile { padding: 5px 8px; }
.tc-dashboard-panel .pd-kpi-val  { font-size: 15px; }
.tc-dashboard-panel .pd-kpi-label { font-size: 7px; }
.tc-dashboard-panel .pd-kpi-delta { font-size: 8px; }
.tc-dashboard-panel .pd-spark-label { font-size: 8px; margin: 0; }
.tc-dashboard-panel .pd-sparkline-wrap { margin: 0; }
.tc-dashboard-panel .pd-lead-row { padding: 4px 7px; gap: 6px; }
.tc-dashboard-panel .pd-lead-name { font-size: 10px; margin: 0; }
.tc-dashboard-panel .pd-lead-rec  { font-size: 9px;  margin: 0; }
.tc-dashboard-panel .pd-reach     { font-size: 9px; }
.tc-dashboard-panel .pd-gen-summary-btn { padding: 6px 10px; font-size: 11px; }

/* ── Dot indicators ────────────────────────────────────────────────────────── */
.tc-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}
.tc-dot {
  height: 4px;
  width: 4px;
  border-radius: 100px;
  background: rgba(13,15,11,0.15);
  transition: width 0.3s ease, background 0.2s;
  cursor: pointer;
}
.tc-dot--active  { width: 20px; background: #3AD6C5; }
.tc-dot--coming  { background: rgba(107,122,0,0.25); }
.tc-dot--coming.tc-dot--active { background: rgba(107,122,0,0.55); width: 20px; }

/* Step name label below dots */
.tc-step-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: rgba(13,15,11,0.4);
  letter-spacing: 0.5px;
  text-align: center;
  margin: 6px 0 0;
}

/* ── Modal result view ──────────────────────────────────────────────────────── */
.tc-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.tc-result-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #0D0F0B;
  margin: 0;
}
.tc-result-body {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  line-height: 1.7;
  color: rgba(13,15,11,0.75);
  flex: 1;
  overflow-y: auto;
}

/* Summary content helpers */
.tc-sum-metric-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.tc-sum-metric {
  flex: 1;
  background: rgba(13,15,11,0.03);
  border: 0.5px solid rgba(13,15,11,0.07);
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tc-sum-val  { font-family: "DM Serif Display", serif; font-size: 15px; color: #0D0F0B; }
.tc-sum-lbl  { font-size: 8px; text-transform: uppercase; letter-spacing: 1px; color: rgba(13,15,11,0.4); }
.tc-sum-delta--up   { font-size: 8px; color: #1A9E8C; }
.tc-sum-delta--down { font-size: 8px; color: #C0392B; }
.tc-sum-text { font-weight: 300; font-size: 11px; color: rgba(13,15,11,0.7); margin: 4px 0; line-height: 1.7; }
.tc-sum-footer { font-size: 8px; color: rgba(13,15,11,0.3); margin-top: 8px; }
.tc-sum-bar-row { display: flex; align-items: center; gap: 8px; margin: 8px 0 4px; }
.tc-sum-bar {
  height: 6px;
  background: linear-gradient(90deg, #3AD6C5, rgba(58,214,197,0.3));
  border-radius: 3px;
}
.tc-sum-bar-label { font-size: 9px; color: rgba(13,15,11,0.4); white-space: nowrap; }
.tc-sum-audio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13,15,11,0.03);
  border: 0.5px solid rgba(13,15,11,0.08);
  border-radius: 8px;
  padding: 9px 11px;
  margin-bottom: 10px;
}
.tc-sum-audio-icon { font-size: 14px; color: #3AD6C5; }
.tc-sum-audio-label { font-size: 11px; font-weight: 500; color: #0D0F0B; margin: 0; }
.tc-sum-audio-sub   { font-size: 9px; color: rgba(13,15,11,0.4); font-weight: 300; margin: 0; }
.tc-audio-playing-tag {
  margin-left: auto;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #1A9E8C;
  background: rgba(58,214,197,0.1);
  border: 0.5px solid rgba(58,214,197,0.3);
  border-radius: 100px;
  padding: 2px 7px;
}

/* Light-theme overrides */
html.theme-light .tc-panel      { background: #FFFFFF; }
html.theme-light .tc-panel--dark { background: #111311; }
html.theme-light .tc-arrow      { background: #FFFFFF; border-color: #D5D6D2; }
html.theme-light .tc-input      { background: #FAFAFA; }

/* ══ COPILOT AI — INTERACTIVE CARD TABS + LIVE DEMO ═════════════════════════ */

/* Connector line between card grid and demo panel */
.cp-connector {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(58,214,197,0.3), rgba(58,214,197,0));
  margin: 0 auto;
}

/* Active card — light theme */
html.theme-light .copilot-card--active {
  border: 1px solid rgba(58,214,197,0.4) !important;
  background: rgba(58,214,197,0.04) !important;
  box-shadow: none !important;
}
html.theme-light .copilot-card--active .card-label {
  color: #1A9E8C;
}
html.theme-light .copilot-card--active .card-expand-trigger span {
  color: #1A9E8C;
}
html.theme-light .copilot-card--active .card-expand-trigger i,
html.theme-light .copilot-card--active .card-expand-trigger svg {
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}
/* Inactive trigger label + chevron muted */
html.theme-light .copilot-card:not(.copilot-card--active) .card-expand-trigger span {
  color: rgba(13,15,11,0.35);
}
html.theme-light .copilot-card:not(.copilot-card--active) .card-expand-trigger i,
html.theme-light .copilot-card:not(.copilot-card--active) .card-expand-trigger svg {
  color: rgba(13,15,11,0.25);
}

/* Active chip */
.cp-chip--active {
  background: #3AD6C5 !important;
  color: #005151 !important;
  border-color: #3AD6C5 !important;
  transform: none !important;
}

/* User bubble (inside dark demo panel) */
.cp-bubble-user {
  display: flex;
  justify-content: flex-end;
  animation: msgSlideIn 0.3s ease both;
}
.cp-bubble-user p {
  background: rgba(58,214,197,0.15);
  border: 0.5px solid rgba(58,214,197,0.3);
  color: rgba(240,240,244,0.9);
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  border-radius: 12px 2px 12px 12px;
  padding: 8px 12px;
  margin: 0;
  max-width: 82%;
  line-height: 1.5;
}

/* AI response bubble */
.cp-bubble-ai {
  display: flex;
  flex-direction: column;
  gap: 3px;
  animation: msgSlideIn 0.3s ease both;
}
.cp-bubble-ai-label {
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: #1A9E8C;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cp-bubble-ai p {
  background: rgba(137,166,255,0.07);
  border: 0.5px solid rgba(137,166,255,0.18);
  color: rgba(240,240,244,0.8);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  border-radius: 2px 12px 12px 12px;
  padding: 8px 12px;
  margin: 0;
  max-width: 82%;
  line-height: 1.6;
}

/* Typing indicator */
.cp-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 14px;
  background: rgba(137,166,255,0.07);
  border: 0.5px solid rgba(137,166,255,0.18);
  border-radius: 2px 12px 12px 12px;
  width: fit-content;
  animation: msgSlideIn 0.3s ease both;
}
.cp-typing-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(240,240,244,0.4);
  animation: cpTypingPulse 1.2s ease-in-out infinite;
}
.cp-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.cp-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes cpTypingPulse {
  0%,100% { opacity: 0.3; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.1); }
}

/* Reset button */
.cp-reset {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(200,200,210,0.5);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.2s;
}
.cp-reset:hover { color: rgba(200,200,210,0.8); }

/* Waitlist link (inside dark panel) */
.cp-waitlist-link {
  color: #3AD6C5;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 11px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
}
.cp-waitlist-link:hover { text-decoration: underline; }

/* ── Copilot cards — always-visible body text ────────────────────────────── */
#copilot .copilot-card { cursor: pointer; }
html.theme-light #copilot .copilot-card:hover {
  border-color: rgba(58,214,197,0.25) !important;
  transition: border-color 0.15s ease, background 0.15s ease;
}
html.theme-light #copilot .copilot-card--active {
  border: 1px solid rgba(58,214,197,0.4) !important;
  background: rgba(58,214,197,0.04) !important;
  box-shadow: none !important;
}
html.theme-light #copilot .copilot-card--active .card-label {
  color: #1A9E8C;
}
#copilot .copilot-card .card-detail {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}
#copilot .copilot-card .card-detail-example {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.7;
  font-style: italic;
  margin-top: 6px;
  line-height: 1.5;
}
html.theme-light #copilot .copilot-card .card-detail,
html.theme-light #copilot .copilot-card .card-detail-example {
  color: rgba(13,15,11,0.5);
}

/* ══ CP DEMO PANEL — Light Look ═════════════════════════════════════════════ */
.cp-demo-panel {
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
  border-radius: 16px;
  padding: 24px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Fixed height — panel never resizes regardless of chip count or response rows */
  height: 420px;
  display: flex;
  flex-direction: column;
}
/* Header */
.cp-demo-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cp-demo-hdr-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cp-dot-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3AD6C5;
  flex-shrink: 0;
}
.cp-demo-name {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0D0F0B;
}
.cp-live-badge {
  background: rgba(58,214,197,0.1);
  border: 0.5px solid rgba(58,214,197,0.3);
  color: #1A9E8C;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  padding: 3px 10px;
}
/* Body / message area — grows to fill available space, scrolls internally */
.cp-demo-body {
  background: rgba(13,15,11,0.02);
  border-radius: 8px;
  padding: 16px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
}
.cp-demo-body::-webkit-scrollbar { display: none; } /* Chrome/Safari */
/* Context label */
.cp-ctx-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: rgba(13,15,11,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
/* "Quantum's AI" label above opening bubble */
.cp-ai-label-above {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 9px;
  color: #1A9E8C;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
/* Opening AI bubble */
.cp-ai-bubble {
  display: inline-block;
  max-width: 90%;
}
.cp-ai-bubble p {
  background: #F5F5F5;
  border: 0.5px solid #D5D6D2;
  border-radius: 2px 12px 12px 12px;
  padding: 10px 14px;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #0D0F0B;
  line-height: 1.6;
  margin: 0;
  /* Fixed height — prevents layout shift as typewriter fills in text */
  height: 84px;
  overflow: hidden;
  box-sizing: border-box;
}
/* Chips area — fixed height so different chip sets never shift the panel */
.cp-chips-area {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  flex-shrink: 0;
  height: 76px;
  align-content: flex-start;
  overflow: hidden;
}
/* Chip buttons — light look */
.cp-chip-btn {
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
  border-radius: 100px;
  padding: 6px 14px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #0D0F0B;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.cp-chip-btn:hover {
  border-color: rgba(58,214,197,0.4);
  background: rgba(58,214,197,0.04);
  color: #1A9E8C;
}
.cp-chip-btn--active {
  background: #3AD6C5 !important;
  color: #005151 !important;
  border-color: #3AD6C5 !important;
  cursor: default;
}
/* User message row */
.cp-user-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
  animation: msgSlideIn 0.3s ease both;
}
.cp-user-bubble {
  background: rgba(58,214,197,0.1);
  border: 0.5px solid rgba(58,214,197,0.25);
  border-radius: 12px 2px 12px 12px;
  padding: 8px 12px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #0D0F0B;
  max-width: 82%;
  line-height: 1.5;
}
/* AI response row */
.cp-resp-row {
  margin-top: 12px;
  animation: msgSlideIn 0.3s ease both;
}
.cp-resp-label {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 9px;
  color: #1A9E8C;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.cp-resp-bubble {
  display: inline-block;
  max-width: 90%;
  background: #F5F5F5;
  border: 0.5px solid #D5D6D2;
  border-radius: 2px 12px 12px 12px;
  padding: 10px 14px;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #0D0F0B;
  line-height: 1.6;
}
/* Typing indicator — light version */
.cp-typing-row {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 14px;
  background: #F5F5F5;
  border: 0.5px solid #D5D6D2;
  border-radius: 2px 12px 12px 12px;
  width: fit-content;
  margin-top: 12px;
  animation: msgSlideIn 0.3s ease both;
}
.cp-typing-dot-l {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(13,15,11,0.2);
  animation: cpTypingLight 1s ease-in-out infinite;
}
.cp-typing-dot-l:nth-child(2) { animation-delay: 0.2s; }
.cp-typing-dot-l:nth-child(3) { animation-delay: 0.4s; }
@keyframes cpTypingLight {
  0%,100% { opacity: 0.2; transform: scale(0.85); }
  50%      { opacity: 0.7; transform: scale(1.1); }
}
/* Progress bar */
.cp-progress-track {
  height: 2px;
  border-radius: 1px;
  background: rgba(13,15,11,0.06);
  margin-top: 20px;
  overflow: hidden;
}
.cp-progress-fill {
  height: 100%;
  width: 100%;
  background: #3AD6C5;
  border-radius: 1px;
  transform-origin: left center;
}
/* Scenario dots */
.cp-sdots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}
.cp-sdot {
  width: 4px;
  height: 4px;
  border-radius: 100px;
  background: rgba(13,15,11,0.15);
  transition: width 0.3s ease, background 0.3s ease;
}
.cp-sdot--active {
  width: 16px;
  background: #3AD6C5;
}
/* Bottom note */
.cp-bottom-note {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(13,15,11,0.3);
  margin-top: 10px;
  margin-bottom: 0;
}
/* Reset button — light version */
.cp-reset-btn {
  background: none;
  border: none;
  color: rgba(13,15,11,0.35);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.15s;
}
.cp-reset-btn:hover { color: rgba(13,15,11,0.6); }
/* Waitlist link — light version */
.cp-waitlist-link-l {
  color: #1A9E8C;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
}
.cp-waitlist-link-l:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   WAITLIST CTA SECTION  (wl-*)
   ═══════════════════════════════════════════ */

/* Section override — subtle teal tint gradient */
.wl-section {
  background: linear-gradient(to bottom, #F5F5F5 0%, #EDF7F5 100%) !important;
  padding: 80px 0 !important;
  contain: layout paint;
  isolation: isolate;
}

/* Two-column inner */
.wl-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
}

/* Entrance animation initial states */
#wl-left, #wl-right { opacity: 0; }

/* ── Left column ── */
.wl-overline {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #3AD6C5;
  margin: 0 0 16px;
}

.wl-headline {
  font-family: "DM Serif Display", serif;
  font-style: normal;
  font-size: 48px;
  color: #0D0F0B;
  letter-spacing: -0.5px;
  line-height: 1.08;
  margin: 0;
}

.wl-sub {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgba(13,15,11,0.55);
  line-height: 1.75;
  max-width: 400px;
  margin: 16px 0 0;
}

.wl-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wl-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #0D0F0B;
}

.wl-check {
  color: #3AD6C5;
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
}

/* ── Right column — form card ── */
.wl-card {
  background: #FFFFFF;
  border: 0.5px solid #D5D6D2;
  border-radius: 16px;
  padding: 28px;
  min-height: 380px;
  box-sizing: border-box;
}

.wl-form-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(13,15,11,0.45);
  margin: 0 0 10px;
}

.wl-input {
  width: 100%;
  box-sizing: border-box;
  background: #F5F5F5;
  border: 0.5px solid #D5D6D2;
  border-radius: 8px;
  padding: 13px 16px;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #0D0F0B;
  margin-bottom: 0;
  outline: none;
  transition: background 0.2s ease;
  display: block;
}
.wl-input::placeholder { color: rgba(13,15,11,0.3); }
.wl-input:focus {
  background: #FFFFFF;
}

.wl-btn {
  width: 100%;
  background: linear-gradient(135deg, #1A9E8C 0%, #30CEBB 50%, #7AEDE0 100%);
  color: #07090f;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
  box-shadow: 0 0 30px rgba(48,206,187,0.15);
}
.wl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(48,206,187,0.35);
}

.wl-privacy {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  min-height: 2em;
  color: rgba(13,15,11,0.3);
  text-align: center;
  margin: 8px 0 0;
}

.wl-divider {
  border: none;
  border-top: 0.5px solid rgba(13,15,11,0.06);
  margin: 16px 0;
}

.wl-proof-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.wl-avatars {
  display: flex;
  flex-shrink: 0;
  visibility: hidden;
}

.wl-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 9px;
  line-height: 1;
}
.wl-avatar + .wl-avatar { margin-left: -8px; }
.wl-avatar:nth-child(1) { background: #B8D4D0; color: #005151; }
.wl-avatar:nth-child(2) { background: #C4D4C0; color: rgba(13,15,11,0.6); }
.wl-avatar:nth-child(3) { background: #D0C8BC; color: rgba(13,15,11,0.6); }
.wl-avatar:nth-child(4) { background: #C0C4D0; color: rgba(13,15,11,0.6); }

.wl-proof-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(13,15,11,0.45);
  margin: 0;
  line-height: 1.4;
}

.wl-bar { margin-top: 0; }

.wl-bar-track {
  height: 4px;
  background: rgba(13,15,11,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.wl-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #9CA3AF 0%, #C4CAD4 38%, #E2E6EC 52%, #C4CAD4 66%, #9CA3AF 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  border-radius: 2px;
}

.wl-bar-label {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: rgba(13,15,11,0.35);
  margin-top: 5px;
}

/* Mobile */
@media (max-width: 768px) {
  .wl-section { padding: 60px 0 !important; }
  .wl-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wl-left { text-align: center; }
  .wl-sub { margin-left: auto; margin-right: auto; }
  .wl-benefits { align-items: flex-start; }
  .wl-headline { font-size: 36px; }
}

/* ═══════════════════════════════════════════
   FOOTER BAR  (ftr-*)
   ═══════════════════════════════════════════ */

.ftr-bar {
  background: #000000 !important;
  display: grid !important;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 10px clamp(24px, 4vw, 64px) !important;
  border-top: none !important;
  width: 100%;
  box-sizing: border-box;
}

.ftr-logo {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
  text-transform: uppercase;
  margin: 0;
}

.ftr-dot {
  background-image: linear-gradient(90deg, #E5FF1F, #8A9E00, #E5FF1F);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ftr-center {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 1px;
  text-align: center;
  background-image: linear-gradient(
    105deg,
    rgba(255,255,255,0.4) 0%,
    rgba(255,255,255,0.9) 30%,
    #3AD6C5 50%,
    rgba(255,255,255,0.9) 70%,
    rgba(255,255,255,0.4) 100%
  );
  background-size: 300% 100%;
  animation: shimmer 4s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.ftr-right {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-align: right;
  margin: 0;
}

@media (max-width: 640px) {
  .ftr-bar {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px clamp(24px, 4vw, 48px) !important;
    text-align: center;
  }
  .ftr-right { text-align: center; }
}

/* ═══════════════════════════════════════════
   TIMELINE — roadmap helper classes  (tm-*)
   ═══════════════════════════════════════════ */

/* Deliverable / commitment line */
.tm-deliverable {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1A9E8C;
  margin: 10px 0 0;
  line-height: 1.5;
}

/* Progress bar (Stage 01) */
.tm-progress { margin: 12px 0 0; }

.tm-progress-track {
  height: 3px;
  border-radius: 2px;
  background: rgba(13,15,11,0.07);
  overflow: hidden;
}
html:not(.theme-light) .tm-progress-track { background: rgba(240,240,236,0.08); }

.tm-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #9CA3AF 0%, #C4CAD4 38%, #E2E6EC 52%, #C4CAD4 66%, #9CA3AF 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  border-radius: 2px;
}

.tm-progress-label {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: rgba(13,15,11,0.4);
  margin: 5px 0 0;
}
html:not(.theme-light) .tm-progress-label { color: rgba(240,240,236,0.35); }

/* Italic future-stage note */
.tm-note {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  font-style: italic;
  color: rgba(13,15,11,0.4);
  margin: 10px 0 0;
  line-height: 1.5;
}
html:not(.theme-light) .tm-note { color: rgba(240,240,236,0.35); }

/* Feature tag pills (Stage 04) */
.tm-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 0;
}

.tm-pill {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--stroke);
  color: var(--muted);
}
html.theme-light .tm-pill {
  background: rgba(13,15,11,0.04);
  border-color: rgba(13,15,11,0.1);
  color: rgba(13,15,11,0.45);
}

/* ═══════════════════════════════════════════
   DIFFERENTIATORS — statement blocks  (dqs-*)
   ═══════════════════════════════════════════ */

/* Container */
.dqs-list {
  width: 100%;
  margin: 0 auto;
  max-width: 1040px;
}

/* Initial state — JS animates in */
#experience .dqs-block { opacity: 0; }

/* Each statement block */
.dqs-block {
  width: 100%;
  padding: 28px 0;
  border-bottom: 0.5px solid rgba(13,15,11,0.07);
  position: relative;
  overflow: hidden;
  cursor: default;
}
html:not(.theme-light) .dqs-block {
  border-bottom-color: rgba(240,240,236,0.06);
}

/* Watermark number */
.dqs-watermark {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "DM Serif Display", serif;
  font-size: 120px;
  font-weight: 400;
  color: rgba(13,15,11,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
html:not(.theme-light) .dqs-watermark {
  color: rgba(240,240,236,0.04);
}

/* Two-column content layout */
.dqs-content {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 0 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ── Left column ── */
.dqs-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dqs-num {
  display: block;
  font-family: "DM Serif Display", serif;
  font-size: 13px;
  color: #3AD6C5;
  opacity: 0.6;
  margin-bottom: 6px;
  line-height: 1;
}

.dqs-title {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin: 0;
  /* Shimmer gradient — stays at right (invisible) until hover */
  background-image: linear-gradient(90deg, #0D0F0B 0%, #3AD6C5 50%, #0D0F0B 100%);
  background-size: 300% auto;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
html:not(.theme-light) .dqs-title {
  background-image: linear-gradient(90deg, #F0F0EC 0%, #3AD6C5 50%, #F0F0EC 100%);
}

/* ── Right column ── */
.dqs-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 4px;
}

.dqs-desc {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(13,15,11,0.6);
  line-height: 1.7;
  margin: 0 0 14px;
}
html:not(.theme-light) .dqs-desc { color: rgba(240,240,236,0.55); }

/* ── Teal callout line (items 02–04) ── */
.dqs-callout {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #0D0F0B;
  border-left: 2px solid #3AD6C5;
  padding-left: 10px;
  margin-top: 10px;
  line-height: 1.5;
}
html:not(.theme-light) .dqs-callout { color: #F0F0EC; }

/* ── Contrast block (items 01 and 05) ── */
.dqs-contrast {
  border: 0.5px solid rgba(13,15,11,0.07);
  border-radius: 8px;
  overflow: hidden;
}
html:not(.theme-light) .dqs-contrast {
  border-color: rgba(240,240,236,0.06);
}

.dqs-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 12px;
}
.dqs-row + .dqs-row {
  border-top: 0.5px solid rgba(13,15,11,0.06);
}
html:not(.theme-light) .dqs-row + .dqs-row {
  border-top-color: rgba(240,240,236,0.05);
}

.dqs-row-brand {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1A9E8C;
  white-space: nowrap;
  flex-shrink: 0;
}

.dqs-row-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #0D0F0B;
}
html:not(.theme-light) .dqs-row-text { color: #F0F0EC; }

.dqs-row-other-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: rgba(13,15,11,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}
html:not(.theme-light) .dqs-row-other-label { color: rgba(240,240,236,0.25); }

.dqs-row-other-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-style: italic;
  color: rgba(13,15,11,0.35);
}
html:not(.theme-light) .dqs-row-other-text { color: rgba(240,240,236,0.3); }

/* ── Closing statement ── */
.dqs-close {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 26px;
  color: #0D0F0B;
  text-align: center;
  margin: 40px auto 0;
  max-width: 480px;
  line-height: 1.4;
}
html:not(.theme-light) .dqs-close { color: #F0F0EC; }

/* Shimmer variants for dqs-close — reuse global shimmer keyframe */
.shimmer-indigo {
  background: linear-gradient(105deg, #4338CA 0%, #818CF8 40%, #C7D2FE 70%, #4338CA 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

.shimmer-silver {
  background: linear-gradient(105deg, #6B7280 0%, #D1D5DB 40%, #9CA3AF 70%, #6B7280 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite 0.5s;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .dqs-watermark { font-size: 80px; }

  .dqs-content {
    grid-template-columns: 1fr;
    gap: 16px 0;
  }

  .dqs-title { font-size: 22px; }
}

/* ═══════════════════════════════════════════
   AUDIENCE CARDS — upgraded  (aud-*)
   ═══════════════════════════════════════════ */

/* Initial state for scroll entrance (set by motion.js once handler) */
#audience .audience-card { opacity: 0; transform: translateY(20px); }

/* ── Differentiator line ── */
.aud-diff {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F0F0EC;
  border-left: 2px solid #3AD6C5;
  padding-left: 12px;
  margin: 14px 0;
  line-height: 1.5;
  margin-top: auto;
}
html.theme-light .aud-diff { color: #0D0F0B; }

/* ── Pricing badges ── */
.aud-badge {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  padding: 3px 10px;
  border: 0.5px solid transparent;
}

.aud-badge--teal {
  background: rgba(58,214,197,0.08);
  border-color: rgba(58,214,197,0.2);
  color: #1A9E8C;
}

.aud-badge--volt {
  background: rgba(107,122,0,0.06);
  border-color: rgba(107,122,0,0.2);
  color: #6B7A00;
}
html.theme-light .aud-badge--volt { color: #6B7A00; }
html:not(.theme-light) .aud-badge--volt { color: #B8CC00; }

.aud-badge--neutral {
  background: rgba(13,15,11,0.04);
  border-color: rgba(13,15,11,0.12);
  color: rgba(13,15,11,0.5);
}
html:not(.theme-light) .aud-badge--neutral {
  background: rgba(240,240,236,0.05);
  border-color: rgba(240,240,236,0.12);
  color: rgba(240,240,236,0.4);
}

/* ── CTA links ── */
.aud-cta {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
  margin-top: 10px;
  transition: opacity 0.15s ease;
}
.aud-cta:hover { opacity: 0.75; }

.aud-cta--teal { color: #1A9E8C; }
.aud-cta--volt  { color: #6B7A00; }
html:not(.theme-light) .aud-cta--volt { color: #B8CC00; }

/* ═══════════════════════════════════════════
   PERSONALIZATION TIMELINE  (ptl-*)
   ═══════════════════════════════════════════ */

/* Outer wrapper — provides positioning context for the connector line */
.ptl-outer {
  position: relative;
  margin: 64px auto 0;
  max-width: 1120px;
  padding: 0 24px;
}

/* ── Connector line ── */
.ptl-line-wrap {
  position: absolute;
  top: 46px;               /* ptl-time height (36px) + half node height (10px) */
  left: calc(24px + 12.5%); /* align with centre of first node */
  right: calc(24px + 12.5%);
  height: 2px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.ptl-line {
  height: 100%;
  width: 0%;               /* animated to 100% on scroll */
  background: linear-gradient(90deg, #3AD6C5 0%, rgba(58,214,197,0.3) 100%);
  border-radius: 1px;
}

/* ── 4-column grid ── */
.ptl-stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Each column */
.ptl-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
  position: relative;
  opacity: 0;             /* stagger-in from motion.js */
}

/* Time label above node */
.ptl-time {
  height: 36px;
  display: flex;
  align-items: flex-end;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(13,15,11,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0;
}

/* Node row — fixed height so line top is predictable */
.ptl-node-wrap {
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.ptl-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(58,214,197,0.35);
  border: 1.5px solid #3AD6C5;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* Stage 3 highlighted node */
.ptl-node--hl {
  width: 14px;
  height: 14px;
  background: #3AD6C5;
  border-color: #1A9E8C;
  box-shadow: 0 0 0 4px rgba(58,214,197,0.15);
}

/* ── Cards ── */
.ptl-card {
  margin-top: 20px;
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(213,214,210,0.18);
  border-radius: 12px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Stage 3 highlighted card */
.ptl-card--hl {
  background: rgba(58,214,197,0.04);
  border-color: rgba(58,214,197,0.3);
  box-shadow: 0 0 0 1px rgba(58,214,197,0.08) inset;
}

/* "Most impactful" badge */
.ptl-impactful {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1A9E8C;
  background: rgba(58,214,197,0.12);
  border: 0.5px solid rgba(58,214,197,0.3);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 10px;
  width: fit-content;
}

/* Card title */
.ptl-card-title {
  font-family: "DM Serif Display", serif;
  font-style: normal;
  font-size: 17px;
  color: #F0F0EC;
  line-height: 1.3;
  margin: 0 0 8px;
}
html.theme-light .ptl-card-title { color: #0D0F0B; }

/* Body copy */
.ptl-body {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(240,240,236,0.55);
  line-height: 1.65;
  margin: 0;
}
html.theme-light .ptl-body { color: rgba(13,15,11,0.55); }

.ptl-callout {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  margin: 10px 0;
}

.ptl-body--gap {
  margin-top: 10px;
  font-size: 11px;
  color: rgba(240,240,236,0.35);
}
html.theme-light .ptl-body--gap { color: rgba(13,15,11,0.35); }

.ptl-closing-arg {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 12px;
  color: rgba(240,240,236,0.6);
  margin: 10px 0 0;
}
html.theme-light .ptl-closing-arg { color: rgba(13,15,11,0.6); }

/* ── Stage 1 mini visual: pills ── */
.ptl-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.ptl-pill {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(213,214,210,0.2);
  color: rgba(240,240,236,0.5);
}
html.theme-light .ptl-pill {
  background: rgba(13,15,11,0.04);
  border-color: rgba(13,15,11,0.12);
  color: rgba(13,15,11,0.45);
}

/* ── Stage 2 mini visual: taste columns ── */
.ptl-taste-cols {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.ptl-taste-col { flex: 1; }

.ptl-taste-lbl {
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(240,240,236,0.3);
  margin: 0 0 6px;
}
html.theme-light .ptl-taste-lbl { color: rgba(13,15,11,0.3); }

.ptl-taste-tags { display: flex; flex-direction: column; gap: 5px; }

.ptl-taste-tag {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  text-align: center;
}

.ptl-taste-tag--on {
  background: rgba(58,214,197,0.1);
  border: 0.5px solid rgba(58,214,197,0.3);
  color: #3AD6C5;
}

.ptl-taste-tag--off {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(213,214,210,0.1);
  color: rgba(240,240,236,0.25);
  text-decoration: line-through;
}
html.theme-light .ptl-taste-tag--off {
  background: rgba(13,15,11,0.03);
  border-color: rgba(13,15,11,0.08);
  color: rgba(13,15,11,0.25);
}

/* ── Stage 3 mini visual: urgency meter ── */
.ptl-meter { margin-top: 14px; }

.ptl-meter-lbl {
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(240,240,236,0.35);
  margin: 0 0 6px;
}
html.theme-light .ptl-meter-lbl { color: rgba(13,15,11,0.35); }

.ptl-meter-track {
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}
html.theme-light .ptl-meter-track { background: rgba(13,15,11,0.07); }

.ptl-meter-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, #1A9E8C, #3AD6C5);
  border-radius: 2px;
}

.ptl-meter-val {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #3AD6C5;
  margin: 5px 0 0;
}

/* ── Stage 4 mini visual: switching cost ── */
.ptl-switch {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.ptl-switch-item { flex: 1; }

.ptl-switch-lbl {
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
}

.ptl-switch-lbl--teal { color: #3AD6C5; }
.ptl-switch-lbl--muted { color: rgba(240,240,236,0.3); }
html.theme-light .ptl-switch-lbl--muted { color: rgba(13,15,11,0.3); }

.ptl-switch-val {
  font-family: "DM Serif Display", serif;
  font-style: normal;
  font-size: 15px;
  color: #F0F0EC;
  margin: 0;
}
html.theme-light .ptl-switch-val { color: #0D0F0B; }

.ptl-switch-val--zero {
  font-size: 22px;
  background-image: linear-gradient(90deg, #4A4A5A, #9090A8, #C8C8DC, #9090A8, #4A4A5A);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: tclShimmer 4s linear infinite;
}

/* ── Closing statement ── */
.ptl-close-wrap {
  text-align: center;
  margin: 64px auto 0;
  max-width: 800px;
  padding: 0 24px;
}

.ptl-close-headline {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 36px;
  color: #F0F0EC;
  line-height: 1.3;
  margin: 0 0 12px;
  white-space: nowrap;
}
html.theme-light .ptl-close-headline { color: #0D0F0B; }

.ptl-close-sub {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(240,240,236,0.45);
  line-height: 1.8;
  margin: 0 0 24px;
  white-space: nowrap;
}
html.theme-light .ptl-close-sub { color: rgba(13,15,11,0.45); }

.ptl-close-cta {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #3AD6C5;
  text-decoration: none;
  border-bottom: 1px solid rgba(58,214,197,0.35);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.ptl-close-cta:hover {
  color: #1A9E8C;
  border-color: #1A9E8C;
}

/* ── Mobile: vertical timeline ── */
@media (max-width: 768px) {
  .ptl-line-wrap { display: none; }

  .ptl-stages {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 32px;
    position: relative;
  }

  /* Vertical connector via pseudo-element */
  .ptl-stages::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 46px;
    bottom: 46px;
    width: 2px;
    background: linear-gradient(180deg, #3AD6C5 0%, rgba(58,214,197,0.2) 100%);
    border-radius: 1px;
  }

  .ptl-stage {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 0 0 32px;
  }

  .ptl-time {
    display: none;
  }

  .ptl-node-wrap {
    flex-shrink: 0;
    width: 10px;
    height: auto;
    padding-top: 4px;
    position: absolute;
    left: 0;
    margin-top: 4px;
  }

  .ptl-card {
    margin-top: 0;
    flex: 1;
  }

  /* Show time inline above card title on mobile */
  .ptl-stage::before {
    content: attr(data-time);
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: rgba(240,240,236,0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 6px;
  }
  html.theme-light .ptl-stage::before { color: rgba(13,15,11,0.35); }

  /* Closing statement — allow wrapping and reduce sizes on mobile */
  .ptl-close-headline { white-space: normal; font-size: 26px; }
  .ptl-close-sub { white-space: normal; font-size: 14px; }
}
