/* ============================================================
   FONTS (self-hosted)
   ============================================================ */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/geist-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/geist-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --teal-bg: #133028;
  --teal-border: #2D5249;
  /* Tokens for adapt / persona demo (match ai-voice-agent) */
  --bg: var(--cream);
  --bg-elevated: #1B1814;
  --sh-2: var(--shadow-md);
}

/* ============================================================
   UTILITIES (consolidated from repeated inline styles)
   ============================================================ */
.u-mt-18 { margin-top: 18px; }
.u-mt-3 { margin-top: 3px; }
.u-ink { color: var(--ink); }
.price-unit { font-size: 14px; color: var(--soft); }
.noscript-cell {
  padding: 16px;
  text-align: center;
  color: var(--muted);
  font-style: italic;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: #120E0A;
}

html, body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  background:
    /* Big diagonal warm wash from bottom-right + smaller top-left wash.
       Slightly pulled back from v9 (0.28 → 0.25) to balance the slightly
       lighter base. */
    radial-gradient(ellipse 120% 100% at 90% 90%, rgba(244, 117, 36, 0.25) 0%, rgba(244, 117, 36, 0.11) 30%, rgba(244, 117, 36, 0.035) 55%, transparent 78%),
    radial-gradient(ellipse 80% 60% at 10% 5%, rgba(244, 117, 36, 0.09) 0%, transparent 60%),
    /* Halfway between v9 (#0A0807 → #1F140C) and v10 (#1A1410 → #2E2218):
       slightly lifted blacks, still distinctly dark/warm */
    linear-gradient(135deg, #120E0A 0%, #1B140E 50%, #261A10 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Diagonal stripe texture overlay — fixed to viewport, reads as brushed
   carbon-fiber finish. Wider spacing than v9 (8px vs 6px) for slightly
   more visible stripes without going to a full weave pattern. */
body::before {
  content: "";
  display: block;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.026) 0px,
    rgba(255, 255, 255, 0.026) 1px,
    transparent 1px,
    transparent 8px
  );
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: relative;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.078);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav.is-pinned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.nav-spacer {
  height: 0;
  pointer-events: none;
}

header.has-pinned-nav .nav-spacer {
  height: var(--nav-height, 64px);
}

.nav.scrolled,
.nav.is-pinned {
  border-bottom-color: var(--line);
}

/* Keep header (and burger→close control) above the fullscreen mobile overlay */
body.menu-open .nav {
  z-index: 200;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; }
.brand img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--orange); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #FFF !important;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(244, 117, 36, 0.28);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  color: #FFF !important;
}

/* Quiet ghost-style Login link in the nav. Sits next to the primary
   CTA without competing for attention. Hidden on mobile (shown in drawer). */
.nav-login {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-login:hover { color: var(--orange); background: var(--orange-soft); }

@media (max-width: 900px) {
  .nav-login { display: none; }
}

/* .nav-burger CSS moved to bottom of stylesheet (with full mobile menu) */

/* ============================================================
   GENERIC SECTION TITLES
   ============================================================ */
.section { padding: 80px 0; }

.section-eyebrow {
  display: inline-block;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 3.6vw, 46px);
  letter-spacing: -0.04em;
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink);
  max-width: 900px;
}

.section-title .accent { color: var(--orange); }

.section-sub {
  margin-top: 14px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 760px;
  font-weight: 400;
}

.section-sub strong { color: var(--ink); font-weight: 600; }

.section-head { margin-bottom: 40px; }
.section-head--center { text-align: center; }
.section-head--center .section-title,
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Geist', sans-serif;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: #FFF;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 12px 30px rgba(244, 117, 36, 0.30);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 16px 36px rgba(244, 117, 36, 0.38);
  color: #FFF;
}

.btn-primary .arrow { transition: transform 0.2s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-secondary {
  background: #1B1814;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  color: var(--ink);
}

.btn-lg { padding: 17px 28px; font-size: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 36px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(244, 117, 36, 0.22);
  background: rgba(255, 255, 255, 0.072);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  margin-bottom: 28px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 26px rgba(30, 20, 10, 0.06);
  position: relative;
  animation: hero-eyebrow-glow 2.4s ease-in-out infinite;
}

.eyebrow-pill::before,
.eyebrow-pill::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  border: 1.5px solid rgba(244, 117, 36, 0.55);
  pointer-events: none;
  animation: hero-eyebrow-ping 2.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.eyebrow-pill::after {
  animation-delay: 1.3s;
}

@keyframes hero-eyebrow-glow {
  0%, 100% {
    background: rgba(255, 255, 255, 0.072);
    box-shadow: 0 8px 26px rgba(30, 20, 10, 0.06);
  }
  50% {
    background: rgba(244, 117, 36, 0.12);
    box-shadow: 0 8px 26px rgba(30, 20, 10, 0.06), 0 0 22px rgba(244, 117, 36, 0.42);
  }
}

@keyframes hero-eyebrow-ping {
  0% { transform: scale(1); opacity: 0.55; }
  85%, 100% { transform: scale(1.18); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow-pill,
  .eyebrow-pill::before,
  .eyebrow-pill::after { animation: none; }
}

.eyebrow-pill .tag {
  background: var(--orange);
  color: #FFF;
  border-radius: 999px;
  padding: 4px 10px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}

h1.hero-h1 {
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--ink);
}

h1.hero-h1 .accent { color: var(--orange); }

.hero-lede {
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ink);
  max-width: 640px;
  margin: 0 0 18px;
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-sub strong { color: var(--ink); font-weight: 600; }

.diff-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.diff-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #1B1814;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  font-family: 'Geist Mono', ui-monospace, monospace;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-sm);
}

.diff-chip svg { color: var(--teal); flex-shrink: 0; }

.guarantee {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--teal-bg);
  border: 1px solid var(--teal-border);
  color: var(--teal);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 14px;
  position: relative;
  text-shadow: 0 0 8px rgba(79, 191, 168, 0.38);
  animation: guarantee-glow 2.6s ease-in-out infinite;
}

.guarantee::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  border: 1.25px solid rgba(79, 191, 168, 0.45);
  pointer-events: none;
  animation: guarantee-ping 2.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes guarantee-glow {
  0%, 100% {
    background: var(--teal-bg);
    text-shadow: 0 0 8px rgba(79, 191, 168, 0.30);
  }
  50% {
    background: rgba(79, 191, 168, 0.17);
    text-shadow: 0 0 13px rgba(79, 191, 168, 0.66);
  }
}

@keyframes guarantee-ping {
  0% { transform: scale(1); opacity: 0.50; }
  85%, 100% { transform: scale(1.27); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .guarantee,
  .guarantee::before { animation: none; }
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 14px;
}

.micro {
  color: var(--soft);
  font-size: 13px;
  font-weight: 500;
  font-family: 'Geist Mono', ui-monospace, monospace;
  letter-spacing: -0.01em;
}

/* Hero phone card */
.phone-card {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 15% 5%, rgba(244, 117, 36, 0.22), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(46, 138, 124, 0.16), transparent 34%);
  pointer-events: none;
}

.panel {
  position: relative;
  background: #1B1814;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 12px;
}

.call-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
}

.status .dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--teal);
  position: relative;
  box-shadow: 0 0 10px rgba(79, 191, 168, 0.65);
  animation: dot-glow 1.6s ease-in-out infinite;
}

.status .dot::before,
.status .dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 99px;
  background: rgba(79, 191, 168, 0.55);
  pointer-events: none;
  animation: dot-ping 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.status .dot::after {
  animation-delay: 1s;
}

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

@keyframes dot-glow {
  0%, 100% {
    background: var(--teal);
    box-shadow: 0 0 10px rgba(79, 191, 168, 0.55);
  }
  50% {
    background: #6BD0BA;
    box-shadow: 0 0 18px rgba(79, 191, 168, 0.95), 0 0 4px rgba(255, 255, 255, 0.35);
  }
}

@keyframes dot-ping {
  0% { transform: scale(1); opacity: 0.55; }
  80% { transform: scale(3.6); opacity: 0; }
  100% { transform: scale(3.6); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .status .dot,
  .status .dot::before,
  .status .dot::after { animation: none; }
}

.timer {
  font-family: 'Geist Mono', monospace;
  color: var(--soft);
  font-size: 12px;
  font-weight: 500;
}

.caller {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.avatar {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #FFF;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 4px 12px rgba(244, 117, 36, 0.22);
}

.hero .avatar .avatar-initials {
  position: relative;
  z-index: 1;
}

.hero .avatar .avatar-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: inherit;
}

.caller h3 {
  font-size: 18px;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink);
}

.caller p {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  margin-top: 3px;
}

.signals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.signal {
  background: var(--cream-2);
  border: 1px solid rgba(244, 117, 36, 0.14);
  border-radius: 13px;
  padding: 10px 12px;
}

.signal small {
  display: block;
  color: var(--soft);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
  font-family: 'Geist Mono', monospace;
}

.signal b {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.quote {
  background: #221E18;
  color: #F4F1EC;
  border-radius: 20px;
  padding: 18px 20px;
  position: relative;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.quote small {
  display: block;
  color: #FFBE94;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 10px;
  margin-bottom: 6px;
  font-family: 'Geist Mono', monospace;
}

.quote p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.route {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 12px;
  background: var(--teal-bg);
  border: 1px solid var(--teal-border);
  border-radius: 16px;
  padding: 12px 14px;
}

.route-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--teal);
  color: #FFF;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

.route b {
  display: block;
  color: #A8DFD2;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.route span {
  font-size: 12px;
  color: #88B5AB;
  font-weight: 500;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .visual { order: 2; }
  h1.hero-h1 { letter-spacing: -0.04em; }
}

@media (max-width: 640px) {
  .hero { padding: 24px 0 70px; }
  .signals { grid-template-columns: 1fr; }
  .phone-card { border-radius: 22px; padding: 14px; }
  .panel { padding: 16px; border-radius: 18px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  padding: 60px 0;
}

.video-frame {
  background: #221E18;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  display: block;
  background: #000;
  object-fit: contain;
}

.video-caption {
  text-align: center;
  margin-top: 18px;
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  color: var(--soft);
  font-weight: 500;
}

.transcript-card {
  max-width: 860px;
  margin: 14px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.160);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.072);
  box-shadow: none;
  overflow: hidden;
}

.transcript-card summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.transcript-card summary::-webkit-details-marker { display: none; }

.transcript-card summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  color: rgba(186, 78, 40, 0.8);
}

.transcript-card[open] summary::after {
  content: "−";
}

.transcript-summary-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.transcript-summary-sub {
  font-size: 11px;
  color: var(--muted);
  font-family: 'Geist Mono', monospace;
}

.transcript-body {
  padding: 0 16px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.140);
}

.transcript-body p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.64;
  font-size: 14px;
}

.transcript-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .video-section { padding: 40px 0; }
  .video-frame { padding: 8px; border-radius: 18px; }
  .video-frame video { border-radius: 12px; }
  .transcript-card { margin-top: 10px; }
  .transcript-card summary { padding: 11px 14px; }
  .transcript-card summary::after { right: 12px; top: 8px; }
  .transcript-body { padding: 0 16px 16px; }
}

/* ============================================================
   DATABASE SECTION (Industry's largest demographic database)
   ============================================================ */
.database {
  padding: 70px 0 60px;
}

.database-card {
  background: #1B1814;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px 48px 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.database-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 50% -10%, rgba(244, 117, 36, 0.10), transparent 55%);
  pointer-events: none;
}

.database-head {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
}

.database-head .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-soft);
  border: 1px solid rgba(244, 117, 36, 0.22);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
  position: relative;
  text-shadow: 0 0 12px rgba(244, 117, 36, 0.55);
  animation:
    db-eyebrow-glow 2.2s ease-in-out infinite,
    db-eyebrow-ping-shadow 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.database-head .section-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(244, 117, 36, 0.15);
  flex-shrink: 0;
}

/* Second ring (staggered) via ::after pseudo-element border */
.database-head .section-eyebrow::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  border: 1.5px solid rgba(244, 117, 36, 0.55);
  pointer-events: none;
  animation: db-eyebrow-ping-ring 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite 1.2s;
}

@keyframes db-eyebrow-glow {
  0%, 100% {
    background: rgba(244, 117, 36, 0.10);
    text-shadow: 0 0 10px rgba(244, 117, 36, 0.45);
  }
  50% {
    background: rgba(244, 117, 36, 0.22);
    text-shadow: 0 0 18px rgba(244, 117, 36, 0.95), 0 0 4px rgba(255, 200, 140, 0.4);
  }
}

/* First ring — expanding box-shadow on the parent */
@keyframes db-eyebrow-ping-shadow {
  0% { box-shadow: 0 0 0 0 rgba(244, 117, 36, 0.55); }
  85%, 100% { box-shadow: 0 0 0 14px rgba(244, 117, 36, 0); }
}

/* Second ring — scaling pseudo-element border, offset by half-cycle */
@keyframes db-eyebrow-ping-ring {
  0% { transform: scale(1); opacity: 0.55; }
  85%, 100% { transform: scale(1.45); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .database-head .section-eyebrow,
  .database-head .section-eyebrow::after { animation: none; }
}

.database-title {
  font-size: clamp(28px, 3.8vw, 46px);
  letter-spacing: -0.04em;
  font-weight: 800;
  line-height: 1.05;
  max-width: 820px;
  margin: 0 auto 14px;
  color: var(--ink);
}

.database-title .accent { color: var(--orange); }

.database-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

.database-sub strong { color: var(--ink); font-weight: 600; }

.database-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  position: relative;
}

.db-stat {
  text-align: center;
  padding: 32px 20px 16px;
  border-right: 1px solid var(--line);
}

.db-stat:last-child { border-right: none; }

.db-num {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--orange-dark);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.db-lbl {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.db-lbl strong { color: var(--ink); font-weight: 700; }

@media (max-width: 880px) {
  .database-card { padding: 40px 28px 28px; }
  .database-stats { grid-template-columns: 1fr; }
  .db-stat { border-right: none; border-bottom: 1px solid var(--line); padding: 24px 20px; }
  .db-stat:last-child { border-bottom: none; }
}

/* ----- 7 of 150+ caller signals (icon row) — no pill header ----- */
.db-signals {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.db-signal {
  position: relative;            /* lets the light <img> stack on the dark */
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.db-signal:hover {
  transform: translateY(-2px);
  background: rgba(244, 117, 36, 0.05);
  border-color: rgba(244, 117, 36, 0.30);
}
.db-signal-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 250 / 180;
}
/* Dark theme = default: show dark variant, hide light */
.db-signal-img--light { display: none; }

@media (max-width: 1100px) {
  .db-signals { grid-template-columns: repeat(4, 1fr); gap: 10px; }
}
@media (max-width: 880px) {
  .db-signals { grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 24px; }
}
@media (max-width: 520px) {
  .db-signals { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PROBLEM SECTION — pain cards only (section uses default page BG)
   ============================================================ */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.pain-card {
  background: #1B1814;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pain-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.pain-card-icon {
  width: 36px;
  height: 36px;
  background: var(--orange-soft);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--orange-dark);
}

.pain-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.pain-card-top .pain-card-icon {
  margin-bottom: 0;
}

.pain-card-top .pain-stat {
  margin: 0;
}

.pain-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink);
}

.pain-stat {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--orange-dark);
  display: block;
  margin: 0 0 10px;
}

.pain-card p {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.55;
  margin-bottom: 0;
}

.pain-card > p:not(.pain-card-fix) {
  flex: 1;
  margin-bottom: 18px;
}

.pain-card-fix {
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: -24px;
  padding: 16px 24px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(244, 117, 36, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.pain-card-fix-desc {
  color: rgb(210 210 210 / 85%);
}

.pain-card-fix svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-card-fix strong { color: var(--ink); font-weight: 600; }

.pain-card-arrow { color: var(--orange); }

/* ============================================================
   ROI CALCULATOR
   ============================================================ */
.roi {
  background: linear-gradient(180deg, #0C0B09 0%, #100E0B 100%);
  color: #FFF;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.roi::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 15% 0%, rgba(244, 117, 36, 0.16), transparent 50%);
  pointer-events: none;
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.roi h2 { color: #FFF; }

.roi .section-eyebrow { color: #FFBE94; }

.roi .section-sub { color: rgba(255, 255, 255, 0.72); }

.roi-controls {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.roi-input label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
  font-family: 'Geist Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.roi-input label .val {
  font-size: 18px;
  color: #FFF;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
}

.roi-input input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 99px;
  background: var(--line);
  color: var(--orange);
  outline: none;
}

.roi-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 99px;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(244, 117, 36, 0.5);
  border: 3px solid #FFF;
}

.roi-input input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 99px;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(244, 117, 36, 0.5);
  border: 3px solid #FFF;
}

.roi-result {
  background: rgba(255, 255, 255, 0.006);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}

.roi-result .lbl {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 14px;
}

.roi-result .yearly {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  /* Hardcoded (not var(--teal-deep)) because .roi stays dark in both themes;
     the variable would resolve to #1F6B5F in light mode and dim the number. */
  color: #2E8A7C;
  margin-bottom: 12px;
}

.roi-result .desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.roi-monthly {
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgb(46 138 124);
}

.roi-monthly b { color: #2E8A7C; font-size: 18px; display: block; margin-bottom: 4px; }

.roi-foot {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 22px;
  font-family: 'Geist Mono', monospace;
}

@media (max-width: 980px) {
  .roi { padding: 40px 28px; }
  .roi-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.step {
  background: #1B1814;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(244, 117, 36, 0.30), transparent);
}

.step h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.step p { font-size: 14px; line-height: 1.55; color: var(--muted); }
.step p strong { color: var(--ink); font-weight: 600; }

/* Adapt / persona demo — aligned with ai-voice-agent */
.italic-orange { color: var(--orange); font-style: italic; font-weight: inherit; }

.adapt-v2-tabs-wrap { margin: 28px auto 0; max-width: 1160px; }

.adapt-v2-block-title {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 14px;
  max-width: 22em;
}

.adapt-v2-tabs-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.080);
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.adapt-v2-tabs-hint::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange-2);
}

.adapt-v2-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.adapt-v2-tabs button {
  --theme: var(--orange);
  --theme-2: var(--orange-2);
  --theme-soft: rgba(186, 78, 40, 0.08);
  --theme-soft-2: rgba(186, 78, 40, 0.14);
  position: relative;
  text-align: left;
  padding: 14px 14px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  font: inherit;
}

.adapt-v2-tabs button[data-theme="premium"] {
  --theme: #F47524; --theme-2: #FFA664;
  --theme-soft: rgba(244, 117, 36, 0.10);
  --theme-soft-2: rgba(244, 117, 36, 0.18);
}

.adapt-v2-tabs button[data-theme="mid"] {
  --theme: #E8731F; --theme-2: #FF9B5C;
  --theme-soft: rgba(192, 78, 21, 0.10);
  --theme-soft-2: rgba(192, 78, 21, 0.18);
}

.adapt-v2-tabs button[data-theme="value"] {
  --theme: #E8945C; --theme-2: #FFC18A;
  --theme-soft: rgba(232, 148, 92, 0.12);
  --theme-soft-2: rgba(232, 148, 92, 0.22);
}

.adapt-v2-tabs button:hover {
  border-color: var(--theme);
  box-shadow: 0 8px 22px -16px rgba(0, 0, 0, 0.45), 0 2px 6px -2px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.adapt-v2-tabs button[aria-selected="true"] {
  border-color: var(--theme);
  background: linear-gradient(180deg, var(--theme-soft) 0%, var(--bg-elevated) 55%);
  box-shadow: 0 0 0 3px var(--theme-soft), 0 14px 28px -22px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}

.adapt-v2-tabs button[aria-selected="true"]::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--theme) 0%, var(--theme-2) 100%);
}

.adapt-v2-tabs button:focus-visible {
  outline: 2px solid var(--theme);
  outline-offset: 2px;
}

.adapt-v2-tab-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }

.adapt-v2-tab-avatar {
  position: relative;
  width: 32px; height: 32px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--theme) 0%, var(--theme-2) 100%);
  color: #fff; font-size: 11.5px; font-weight: 700;
  box-shadow: 0 4px 10px -4px var(--theme-soft-2);
  overflow: hidden;
  isolation: isolate;
  flex-shrink: 0;
}

.adapt-v2-tab-avatar .adapt-avatar-initials { position: relative; z-index: 1; }

.adapt-v2-tab-avatar .adapt-avatar-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: inherit;
  background: var(--bg-elevated);
}

.adapt-v2-tab-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 8px; border-radius: 999px;
  background: var(--theme-soft);
  color: var(--theme-2);
  font-family: var(--mono);
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; white-space: nowrap;
}

.adapt-v2-tab-tag::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--theme);
}

.adapt-v2-tab-id { display: flex; flex-direction: column; gap: 2px; }

.adapt-v2-tab-title { font-size: 14.5px; font-weight: 600; letter-spacing: -0.015em; color: var(--ink); }

.adapt-v2-tab-meta {
  font-size: 10.5px; color: var(--ink-3);
  font-family: var(--mono); letter-spacing: 0.04em; text-transform: uppercase;
}

.adapt-v2-tab-hero {
  display: flex; flex-direction: column; gap: 2px; padding: 10px 0 4px;
  border-top: 1px dashed var(--line-2);
}

.adapt-v2-tab-hero-value {
  font-family: var(--mono);
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--theme-2); line-height: 1.05;
}

.adapt-v2-tab-hero-sub { font-size: 11.5px; color: var(--ink-2); font-weight: 500; }

.adapt-v2-panels { position: relative; }

.adapt-v2-panel { animation: panelFade 0.4s var(--ease); }

.adapt-v2-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden; box-shadow: var(--sh-2);
}

.adapt-v2-col-left {
  border-right: 1px solid var(--line);
  background: #120E0A;
  color: #F5F2EC;
  position: relative;
}

.adapt-v2-col-left::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 117, 36, 0.10), transparent 55%),
    radial-gradient(circle at 110% 100%, rgba(244, 117, 36, 0.05), transparent 60%);
}

.adapt-v2-col-left > * { position: relative; z-index: 1; }

.adapt-v2-col-left .adapt-card-header { border-bottom-color: rgba(255, 255, 255, 0.08); }

.adapt-v2-col-left .adapt-flow-step { color: rgba(255, 255, 255, 0.55); }

.adapt-v2-col-left .adapt-flow-step strong { color: var(--orange); }

.adapt-v2-col-left .adapt-caller-type {
  background: rgba(244, 117, 36, 0.16);
  border-color: rgba(244, 117, 36, 0.45);
  color: #FFB077;
}

.adapt-v2-col-left .adapt-name { color: #fff; }

.adapt-v2-col-left .adapt-location { color: rgba(255, 255, 255, 0.55); }

.adapt-v2-col-left .adapt-demo {
  background: rgba(255, 255, 255, 0.008);
  border-color: rgba(255, 255, 255, 0.08);
}

.adapt-v2-col-left .adapt-demo-cell { background: #141413; }

.adapt-v2-col-left .adapt-demo-label { color: rgba(255, 255, 255, 0.5); }

.adapt-v2-col-left .adapt-demo-value { color: #fff; }

.adapt-profile-footer {
  display: flex; justify-content: flex-end; align-items: center;
  margin-top: 8px; padding-top: 2px;
}

.adapt-profile-full-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  color: #FFB077;
  padding: 6px 12px 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 117, 36, 0.42);
  background: rgba(244, 117, 36, 0.08);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.adapt-profile-full-link:hover {
  background: rgba(244, 117, 36, 0.16);
  border-color: rgba(244, 117, 36, 0.6);
  color: #fff;
}

.adapt-profile-full-link svg { flex-shrink: 0; opacity: 0.95; }

.caller-profile-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* Closed: strong hide (avoids in-flow leak if other rules override display) */
.caller-profile-modal:not(.open) {
  display: none !important;
}

.caller-profile-modal.open {
  display: flex !important;
}

.caller-profile-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 15, 0.72);
  backdrop-filter: blur(3px);
}

.caller-profile-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100vw - 48px));
  height: min(88vh, 920px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  background: #1B1814;
}

.caller-profile-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 17, 20, 0.86);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.caller-profile-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #1B1814;
}

body.modal-open { overflow: hidden; }

.adapt-caller-text { flex: 1 1 auto; min-width: 0; }

.adapt-caller-id .adapt-caller-type { margin: 0 0 0 auto; }

.adapt-v2-col-left .quote-hero {
  color: #fff;
  background: rgba(244, 117, 36, 0.10);
  border-left-color: var(--orange);
}

.adapt-v2-col-right { display: flex; flex-direction: column; min-width: 0; }

.adapt-card-header { padding: 24px 24px 20px; border-bottom: 1px solid var(--line); }

.adapt-caller-type {
  display: inline-flex; align-items: center;
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--orange-2);
  margin-bottom: 12px; padding: 4px 10px;
  background: var(--orange-soft);
  border: 1px solid rgba(244, 117, 36, 0.25);
  border-radius: 999px;
}

.adapt-flow-step {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-4);
  font-weight: 600; margin-bottom: 10px;
}

.adapt-flow-step strong { color: var(--orange-2); }

.adapt-v2-col-right .adapt-card-body > .adapt-flow-step,
.adapt-response-label,
.adapt-rules-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.adapt-v2-col-right .adapt-card-body > .adapt-flow-step::before,
.adapt-response-label::before,
.adapt-rules-label::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--orange-soft);
  flex-shrink: 0;
}

.adapt-v2-col-right .adapt-card-body > .adapt-flow-step strong { color: inherit; }

.quote-hero {
  font-style: italic; color: var(--ink);
  font-size: 16px; padding: 14px 18px; margin: 0 0 0 0;
  background: var(--orange-soft);
  border-left: 3px solid var(--orange);
  border-radius: 8px; line-height: 1.5;
}

.adapt-caller-id { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin: 0 0 16px; }

.adapt-avatar {
  position: relative;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; font-weight: 600; flex-shrink: 0;
  box-shadow: 0 3px 8px -2px rgba(186, 78, 40, 0.35);
  overflow: hidden;
  isolation: isolate;
}

.adapt-avatar .adapt-avatar-initials { position: relative; z-index: 1; }

.adapt-avatar .adapt-avatar-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: inherit;
  background: var(--bg-elevated);
}

.adapt-name { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; color: var(--ink); line-height: 1.2; margin-bottom: 2px; }

.adapt-location { font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); line-height: 1.45; text-transform: uppercase; letter-spacing: 0.06em; }

.adapt-demo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border-radius: 10px; overflow: hidden; border: 1px solid var(--line);
  margin-top: 4px;
}

.adapt-demo-cell { background: var(--bg); padding: 9px 11px; }

.adapt-demo-label {
  font-family: var(--mono);
  font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-4); margin-bottom: 2px; font-weight: 500;
}

.adapt-demo-value { font-size: 12.5px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }

.adapt-card-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }

.adapt-result {
  margin: 0 0 16px; padding: 16px 18px;
  background: linear-gradient(180deg, rgba(79, 191, 168, 0.06) 0%, rgba(79, 191, 168, 0.015) 100%);
  border: 1px solid rgba(79, 191, 168, 0.22); border-radius: 12px; position: relative;
}

.adapt-result::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--teal);
  border-radius: 12px 0 0 12px;
}

.adapt-result-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 6px;
}

.adapt-result-label::before {
  content: ""; width: 5px; height: 5px; background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(79, 191, 168, 0.25);
}

.adapt-result-headline {
  font-size: 1rem; font-weight: 500; color: var(--ink);
  letter-spacing: -0.015em; line-height: 1.2; margin-bottom: 4px;
}

.adapt-result-headline strong { font-size: 1.65rem; font-weight: 700; color: var(--teal-deep);
  font-variant-numeric: tabular-nums; }

.adapt-result-sub {
  font-size: 12.5px; color: var(--ink-3); line-height: 1.55;
  letter-spacing: -0.01em; max-width: 42em;
}

.adapt-response {
  font-size: 17px; line-height: 1.6; color: var(--ink);
  padding: 22px 26px 22px 30px;
  background: linear-gradient(180deg, var(--orange-soft) 0%, rgba(244, 117, 36, 0.04) 100%);
  border: 1px solid var(--orange-tint);
  border-radius: 10px; margin-bottom: 18px; position: relative;
}

.adapt-response::before,
.adapt-response::after {
  position: absolute; font-family: Georgia, 'Times New Roman', serif;
  font-size: 38px; color: var(--orange); line-height: 1; font-weight: 700;
}

.adapt-response::before {
  content: "\201C"; top: 8px; left: 10px;
}

.adapt-response::after {
  content: "\201D"; bottom: -6px; right: 14px;
}

.adapt-response-text { padding-left: 8px; margin: 0; }

.adapt-response-para {
  font-size: 17px; font-style: normal; color: var(--ink-2);
  line-height: 1.65; margin: 0 0 0.85em; letter-spacing: -0.01em;
}

.adapt-response-para:last-child { margin-bottom: 0; }

.adapt-rules { margin-top: auto; }

.adapt-rules ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin: 0; padding: 0; }

.adapt-rules li {
  display: flex; align-items: flex-start; gap: 8px; font-size: 14px;
  color: var(--ink-2); line-height: 1.4; letter-spacing: -0.005em;
}

.adapt-rules li svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

.adapt-summary {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  text-align: center;
}

.adapt-summary strong { color: var(--ink); font-weight: 600; }

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

@media (max-width: 1040px) {
  .adapt-v2-tabs { grid-template-columns: 1fr; }
  .adapt-v2-grid { grid-template-columns: 1fr; }
  .adapt-v2-col-left { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .adapt-v2-tab-hero-value { font-size: 19px; }
  .adapt-v2-tabs button { padding: 12px; }
}

@media (max-width: 520px) {
  .adapt-demo { grid-template-columns: 1fr; }
}


/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature {
  background: #1B1814;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.feature h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.feature p { font-size: 14px; line-height: 1.55; color: var(--muted); }

@media (max-width: 880px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ROUTING ("HOW EVERY CALL PAYS")
   ============================================================ */
.routing-mode {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.routing-mode:nth-child(even) .routing-text { order: 2; }
.routing-mode:nth-child(even) .routing-vis { order: 1; }
.routing-mode:last-child { margin-bottom: 0; }

.routing-num {
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.routing-h {
  font-size: clamp(24px, 2.8vw, 36px);
  letter-spacing: -0.035em;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}

.routing-h .accent { color: var(--orange); }

.routing-text > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 8px;
}

.routing-text > p:first-of-type { color: var(--ink-2); font-weight: 500; font-size: 17px; }

.routing-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.routing-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.45;
}

.routing-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
}

.routing-vis {
  background: #1B1814;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.routing-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.routing-row:last-child { border-bottom: none; }

.routing-call-l {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.routing-call-l .meta {
  display: block;
  font-size: 12px;
  color: var(--soft);
  font-weight: 500;
  margin-top: 3px;
  font-family: 'Geist Mono', monospace;
}

.routing-arrow {
  color: var(--soft);
  font-weight: 700;
}

.routing-call-r {
  text-align: right;
  font-size: 13px;
  font-weight: 700;
}

.routing-tag {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.routing-tag.go { background: var(--teal-bg); color: var(--teal); }
.routing-tag.no { background: rgba(255, 255, 255, 0.120); color: var(--soft); }
.routing-tag.queue { background: rgba(244, 117, 36, 0.10); color: var(--orange-dark); }
.routing-tag.pay { background: var(--teal-bg); color: var(--teal); font-size: 14px; }

.routing-summary {
  border-radius: 12px;
  padding: 14px;
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgb(46 138 124);
}

.routing-summary .lbl {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-bottom: 4px;
}

.routing-summary .num {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #2E8A7C;
  margin-bottom: 4px;
}

.routing-summary .desc { font-size: 13px; color: rgba(255, 255, 255, 0.85); font-weight: 500; }

@media (max-width: 980px) {
  .routing-mode { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .routing-mode:nth-child(even) .routing-text,
  .routing-mode:nth-child(even) .routing-vis { order: initial; }
}

.routing-calc {
  margin-top: 36px;
  background: #1B1814;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
}

.routing-calc__tag {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 18px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.routing-calc__cell { min-width: 0; }

.routing-calc__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.routing-calc__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}

.routing-calc__value {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-dark);
  background: var(--orange-soft);
  padding: 2px 8px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}

.routing-calc input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 99px;
  background: var(--line);
  outline: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.routing-calc input[type="range"]:focus { outline: none; }

.routing-calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 99px;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(244, 117, 36, 0.5);
  border: 3px solid #FFF;
}

.routing-calc input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 99px;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(244, 117, 36, 0.5);
  border: 3px solid #FFF;
}

.routing-calc__out {
  border-left: 1px solid var(--line);
  padding-left: 24px;
  text-align: right;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.routing-calc__out-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 4px;
}

.routing-calc__out-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  transition: transform 0.18s ease;
}

.routing-calc__out-amount.is-bumping { transform: scale(1.04); }

.routing-calc__out-yearly {
  margin-top: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--soft);
  font-variant-numeric: tabular-nums;
}

.routing-calc__out-yearly strong {
  color: var(--teal-deep);
  font-weight: 700;
}

@media (max-width: 980px) {
  .routing-calc {
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
  }

  .routing-calc__tag {
    writing-mode: horizontal-tb;
    transform: none;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 14px;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .routing-calc__out {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px dashed var(--line);
    padding-left: 0;
    padding-top: 16px;
    text-align: left;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
  }

  .routing-calc__out-yearly { margin-top: 0; }
}

@media (max-width: 560px) {
  .routing-calc { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  max-width: 720px;
  margin: 0 auto;
  background: #1B1814;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.pricing-header { text-align: center; margin-bottom: 28px; }

.pricing-header h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.pricing-header p { color: var(--muted); font-size: 15px; }

.pricing-components {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-component {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
}

.pricing-component .price {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-component .name { font-size: 13px; font-weight: 600; color: var(--ink); }
.pricing-component .desc { font-size: 11px; color: var(--soft); margin-top: 3px; font-family: 'Geist Mono', monospace; }

.pricing-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-2);
}

.pricing-features li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
}

.pricing .cta-row { justify-content: center; }
.pricing .micro { display: block; text-align: center; margin-top: 14px; }

@media (max-width: 700px) {
  .pricing { padding: 28px 22px; }
  .pricing-components { grid-template-columns: 1fr; }
  .pricing-features { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-layout {
  max-width: 880px;
  margin: 0 auto;
}

.faq-promoted-wrap {
  margin-bottom: 52px;
}

.faq-promoted-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-dark);
  margin-bottom: 16px;
}

.faq-promoted-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.faq-promoted {
  display: grid;
  gap: 10px;
}

.faq-inline-list {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 0;
}

.faq-inline-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}

.faq-inline-list li::before {
  content: "·";
  position: absolute;
  left: 2px;
  color: var(--muted);
  font-weight: 700;
}

.faq-inline-list li:last-child {
  margin-bottom: 0;
}

.faq-groups {
  display: grid;
  gap: 48px;
}

.faq-group-title {
  margin: 0 0 8px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.faq-group-divider {
  height: 1px;
  background: var(--line);
  margin-bottom: 10px;
}

.faq-group .faq-list {
  margin: 0;
}

.faq-list {
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #1B1814;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] { border-color: rgba(244, 117, 36, 0.30); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: 'Geist Mono', monospace;
  color: var(--orange);
  font-size: 22px;
  font-weight: 600;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: "−"; }

.faq-body {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-body p { margin-bottom: 10px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body strong { color: var(--ink); font-weight: 600; }
.faq-body ul { padding-left: 20px; margin: 8px 0; }
.faq-body li { margin-bottom: 6px; }

.faq-inline-link {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: rgba(244, 117, 36, 0.4);
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color .12s ease, text-decoration-color .12s ease;
}
.faq-inline-link:hover {
  color: var(--orange-dark);
  text-decoration-color: var(--orange);
}

@media (max-width: 640px) {
  .faq-item summary { padding: 18px 20px; font-size: 15px; }
  .faq-body { padding: 0 20px 20px; }
}

/* ============================================================
   FINAL CTA — dark band that bookends the page
   ============================================================ */
.final-cta {
  text-align: center;
  background: linear-gradient(180deg, #221E18 0%, #2C2720 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 72px 32px 64px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  color: #FFF;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 117, 36, 0.22), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(244, 117, 36, 0.12), transparent 50%);
  pointer-events: none;
}

.final-cta > * { position: relative; z-index: 1; }

.final-cta .section-eyebrow {
  color: #FFBE94;
  display: inline-block;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.045em;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF;
}

.final-cta h2 .accent { color: var(--orange); }

.final-cta > p {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  margin: 0 auto 28px;
}

.final-cta .cta-row { justify-content: center; margin-bottom: 14px; }

.final-cta .micro {
  color: rgba(255, 255, 255, 0.45);
}

.final-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.006);
  border-color: rgba(255, 255, 255, 0.18);
  color: #FFF;
  box-shadow: none;
}

.final-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.010);
  border-color: rgba(255, 255, 255, 0.30);
  color: #FFF;
}

@media (max-width: 640px) {
  .final-cta { padding: 52px 22px 46px; }
  .final-cta .cta-row { flex-direction: column; align-items: stretch; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #120E0A;
  border-top: 0;
  color: var(--ink);
  padding: 36px 0 24px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 28px;
}

/* Match header logo: fixed height + intrinsic width (avoid grid-stretch / wide picture box) */
.footer-brand picture {
  display: inline-block;
  line-height: 0;
  margin-bottom: 18px;
}
.footer-brand img {
  height: 36px;
  width: auto;
  max-width: 100%;
  margin: 0;
  object-fit: contain;
}

.footer-brand p {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin-top: 16px;
}

.footer-phone {
  margin-top: 10px !important;
}
.footer-phone a {
  color: var(--ink);
  font-family: 'Geist Mono', monospace;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color .15s ease;
}
.footer-phone a:hover {
  color: var(--orange);
}

.footer-social {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  gap: 10px;
}
.footer-social li {
  margin: 0;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-muted);
  text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.footer-social a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}
html[data-theme="light"] .footer-social a {
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink-muted);
}
html[data-theme="light"] .footer-social a:hover {
  background: var(--orange);
  color: #fff;
}

.footer-col h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: grid; gap: 10px; }

.footer-col a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--orange); }

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 0;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-legal { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow-pill { animation: rise 0.55s ease-out 0.05s both; }
h1.hero-h1 { animation: rise 0.65s ease-out 0.12s both; }
.hero-lede { animation: rise 0.65s ease-out 0.17s both; }
.hero-sub { animation: rise 0.65s ease-out 0.22s both; }
.diff-row { animation: rise 0.6s ease-out 0.32s both; }
.cta-row { animation: rise 0.55s ease-out 0.42s both; }
.guarantee { animation: rise 0.55s ease-out 0.50s both; }
.hero .micro { animation: rise 0.55s ease-out 0.58s both; }
.visual { animation: rise 0.8s ease-out 0.30s both; }

/* Scroll reveal — main sections below hero (IntersectionObserver adds .is-visible) */
.scroll-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.58s ease-out, transform 0.58s ease-out;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   MOBILE MENU DRAWER (ported from live site)
   ============================================================ */
.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.060);
  cursor: pointer;
  position: relative;
  z-index: 100;
  transition: border-color 0.15s ease;
}
.nav-burger:hover { border-color: var(--soft); }
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  margin-left: -9px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.nav-burger span:nth-child(1) { top: 13px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 25px; }
.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg); top: 19px;
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg); top: 19px;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: 72px;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.mobile-menu-inner {
  padding: 32px 24px 48px;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: calc(100vh - 72px);
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.mobile-menu-links li {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.open .mobile-menu-links li { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-menu-links li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-menu-links li:nth-child(2) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-menu-links li:nth-child(3) { transition-delay: 0.11s; }
.mobile-menu.open .mobile-menu-links li:nth-child(4) { transition-delay: 0.14s; }
.mobile-menu.open .mobile-menu-links li:nth-child(5) { transition-delay: 0.17s; }
.mobile-menu.open .mobile-menu-links li:nth-child(6) { transition-delay: 0.20s; }

.mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  background: #1B1814;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: background 0.15s ease, border-color 0.15s ease;
  letter-spacing: -0.01em;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:active {
  background: var(--orange-soft);
  border-color: var(--orange);
}
.mobile-menu-links a::after {
  content: '\2192';
  font-family: 'Geist Mono', monospace;
  color: var(--soft);
  font-size: 18px;
  transition: transform 0.15s ease, color 0.15s ease;
}
.mobile-menu-links a:hover::after,
.mobile-menu-links a:active::after {
  color: var(--orange-dark);
  transform: translateX(4px);
}
.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}
.mobile-menu-ctas .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 22px;
  font-size: 16px;
}
.mobile-menu-foot {
  margin-top: auto;
  padding-top: 24px;
  text-align: center;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--soft);
}
body.menu-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta:not(.nav-burger) { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ============================================================
   CUSTOM VIDEO PLAYER (ported from live site)
   ============================================================ */
.video-frame.custom-player {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.video-frame.custom-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 18px;
  background: #000;
  object-fit: contain;
}
.video-frame.custom-player:not(.playing):not(.ended) video {
  object-fit: cover;
}
.video-frame.custom-player.playing video,
.video-frame.custom-player.ended video {
  object-fit: contain;
}
.video-scrim {
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.080);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
  z-index: 2;
}
.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: #1B1814;
}
.video-play-btn .play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 16px 0 16px 26px;
  border-color: transparent transparent transparent var(--orange);
  margin-left: 6px;
}
.video-duration-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(0, 0, 0, 0.7);
  color: #FFF;
  padding: 6px 12px;
  border-radius: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  z-index: 2;
  pointer-events: none;
}
.video-frame.playing .video-scrim,
.video-frame.playing .video-play-btn,
.video-frame.playing .video-duration-badge {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-frame.playing { cursor: default; }

.video-replay-overlay {
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  cursor: pointer;
}
.video-frame.ended .video-replay-overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.video-frame.ended .video-play-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.video-replay-btn {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.080);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
  z-index: 1;
}
.video-replay-overlay:hover .video-replay-btn,
.video-replay-btn:hover {
  transform: scale(1.06);
  background: #1B1814;
}
.video-replay-btn svg {
  width: 40px;
  height: 40px;
  color: var(--orange);
}
@media (max-width: 640px) {
  .video-play-btn { width: 70px; height: 70px; }
  .video-play-btn .play-icon { border-width: 12px 0 12px 20px; }
  .video-duration-badge { bottom: 14px; right: 14px; font-size: 10px; }
  .video-replay-btn { width: 70px; height: 70px; }
  .video-replay-btn svg { width: 32px; height: 32px; }
}

/* ============================================================
   TRY IT LIVE — industry demo lines
   ============================================================ */
.try-it-live {
  padding: 30px 0 70px;
}
.try-card {
  background: linear-gradient(135deg, #0E0D0C 0%, #1E1B18 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: #FFF;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.try-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 12% 0%, rgba(244, 117, 36, 0.20), transparent 35%),
    radial-gradient(circle at 88% 100%, rgba(46, 138, 124, 0.16), transparent 38%);
  pointer-events: none;
}
.try-head {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}
.try-head .section-eyebrow {
  color: #FFBE94;
  display: inline-block;
  position: relative;
  padding: 6px 14px;
  border-radius: 99px;
  background: rgba(244, 117, 36, 0.10);
  text-shadow: 0 0 12px rgba(244, 117, 36, 0.55);
  animation: try-eyebrow-glow 2.2s ease-in-out infinite;
}

.try-head .section-eyebrow::before,
.try-head .section-eyebrow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 99px;
  border: 1.5px solid rgba(244, 117, 36, 0.55);
  pointer-events: none;
  animation: try-eyebrow-ping 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.try-head .section-eyebrow::after {
  animation-delay: 1.2s;
}

@keyframes try-eyebrow-glow {
  0%, 100% {
    background: rgba(244, 117, 36, 0.10);
    text-shadow: 0 0 10px rgba(244, 117, 36, 0.45);
  }
  50% {
    background: rgba(244, 117, 36, 0.22);
    text-shadow: 0 0 18px rgba(244, 117, 36, 0.95), 0 0 4px rgba(255, 200, 140, 0.4);
  }
}

@keyframes try-eyebrow-ping {
  0% { transform: scale(1); opacity: 0.7; }
  85%, 100% { transform: scale(1.45); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .try-head .section-eyebrow,
  .try-head .section-eyebrow::before,
  .try-head .section-eyebrow::after { animation: none; }
}
.try-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.04em;
  font-weight: 800;
  line-height: 1.05;
  color: #FFF;
  margin-bottom: 14px;
}
.try-head h2 .accent { color: var(--orange); }
.try-head p {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: #B0A89E;
  max-width: 680px;
  margin: 0 auto;
}
.try-head p strong { color: #FFF; font-weight: 600; }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.industry-card {
  background: rgba(255, 255, 255, 0.004);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 24px 22px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  position: relative;
}
.industry-card-hit {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.industry-card *:not(.industry-card-hit):not(.industry-phone) {
  pointer-events: none !important;
}
.industry-card-hit:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.industry-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.007);
  border-color: rgba(244, 117, 36, 0.55);
  color: #FFF;
}
.industry-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.industry-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.industry-tag {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFBE94;
  font-weight: 700;
  background: rgba(244, 117, 36, 0.14);
  border: 1px solid rgba(244, 117, 36, 0.24);
  padding: 3px 8px;
  border-radius: 99px;
  white-space: nowrap;
}
.industry-card h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFF;
  margin: 0;
}
.industry-card .industry-sub {
  font-size: 12px;
  color: #B0A89E;
  font-weight: 500;
  margin: 0;
  line-height: 1.45;
}
.industry-call {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--orange);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.industry-call svg { flex-shrink: 0; }
.industry-phone {
  position: relative;
  z-index: 2;
  user-select: text;
  -webkit-user-select: text;
  cursor: text;
}
.industry-card-fine {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  color: #6F6257;
  letter-spacing: 0.04em;
  margin: 2px 0 0;
  align-self: flex-start;
}
.try-foot {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: #B0A89E;
  font-family: 'Geist Mono', ui-monospace, monospace;
}
.try-foot strong { color: #FFF; font-weight: 600; }
@media (max-width: 1100px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .try-card { padding: 36px 22px; }
  .industry-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ — Hardphone answer (image + text two-column)
   ============================================================ */
.faq-body--hardphone {
  padding-right: 24px;
}

.faq-hardphone-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.faq-hardphone-text > * + * {
  margin-top: 12px;
}

.faq-hardphone-figure {
  margin: 0;
  text-align: center;
  flex-shrink: 0;
  width: 240px;
  max-width: 100%;
}

.faq-hardphone-figure img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55));
}

.faq-hardphone-figure figcaption {
  margin-top: 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faq-soft, #9C9890);
}

.faq-ztp {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.faq-ztp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--faq-orange-soft, rgba(244, 117, 36, 0.16));
  color: var(--faq-orange-dark, #FF8A3D);
  border: 1px solid var(--faq-orange-border, rgba(244, 117, 36, 0.40));
  border-radius: 999px;
  padding: 4px 11px;
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  top: 2px;
}

@media (max-width: 640px) {
  .faq-hardphone-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .faq-hardphone-figure {
    width: 200px;
    margin-inline: auto;
    order: -1;
  }
  .faq-ztp-badge { top: 0; }
}


/* ============================================================
   EXTRACTED FROM INLINE BLOCK 1 — skip link, print, a11y
   ============================================================ */

/* --- Skip-to-main link (visible on focus only) --- */
  .skip-to-main{
    position:absolute;left:-9999px;top:0;z-index:1000;
    background:#0A0A0A;color:#FFF;padding:12px 18px;
    font:600 14px/1 'Geist','-apple-system',sans-serif;
    border-radius:0 0 8px 8px;text-decoration:none;
  }
  .skip-to-main:focus{left:16px;outline:3px solid #F47524;outline-offset:2px;}

  /* --- Global focus-visible ring — WCAG 2.4.7 --- */
  a:focus-visible,
  button:focus-visible,
  [role="button"]:focus-visible,
  details summary:focus-visible,
  input:focus-visible,
  textarea:focus-visible,
  select:focus-visible{
    outline:3px solid #F47524;
    outline-offset:2px;
    border-radius:4px;
  }

  /* --- WCAG contrast fixes (dark mode) ---
     In dark mode: muted text needs to be light, not dark.
     #9C9890 on #0F0D0A = 6.4:1 (passes AA). */
  :root{
    --ink-faint:#9C9890;
  }

  /* --- Tap targets >= 44x44 px (WCAG 2.5.5 / Apple HIG / MD spec) --- */
  .nav-cta,
  .btn,
  .btn-primary,
  .btn-secondary,
  .industry-card-hit,
  .ct-verdict-cta-btn,
  .pricing-component a,
  .nav-burger,
  .video-play-btn,
  .video-replay-btn{
    min-height:44px;
  }

  /* --- Reduced motion (WCAG 2.3.3) --- */
  @media (prefers-reduced-motion: reduce){
    *,*::before,*::after{
      animation-duration:0.01ms !important;
      animation-iteration-count:1 !important;
      transition-duration:0.01ms !important;
      scroll-behavior:auto !important;
    }
  }

  /* --- Print stylesheet --- */
  @media print{
    .nav,.mobile-menu,.nav-burger,.video-play-btn,
    .ct-verdict-cta,.skip-to-main{display:none !important;}
    body{background:#fff !important;color:#000 !important;}
    a{color:#000 !important;text-decoration:underline;}
    a[href^="http"]::after{content:" (" attr(href) ")";font-size:.85em;}
    .hero,.section{page-break-inside:avoid;}
  }

  /* --- Iframe / video aspect-ratio fallback (no CLS) --- */
  .video-frame{aspect-ratio:16/9;}

  /* --- Force tap-highlight color to brand --- */
  *{-webkit-tap-highlight-color:rgba(244,117,36,.18);}


/* ============================================================
   EXTRACTED FROM INLINE BLOCK 2 — competitive comparison table
   ============================================================ */

/* All scoped under .ct-compare to avoid colliding with site.css */
  .ct-compare{
    --orange:#F47524;--orange-dark:#BA4E28;--orange-tint:#3A2618;
    --cream:#211D17;--ink:#F4F1EC;--ink-soft:#C8C3B9;--ink-faint:#9C9890;
    --line:rgba(255,255,255,.18);--line-soft:rgba(255,255,255,.10);--white:#1B1814;
    --radius-md:22px;
    --shadow-card:0 4px 24px rgba(0,0,0,.40);
    font-family:'Geist',-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
    color:var(--ink);background:var(--white);line-height:1.5;
    -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
  }
  .ct-compare *,.ct-compare *::before,.ct-compare *::after{box-sizing:border-box;}
  .ct-compare h1,.ct-compare h2,.ct-compare h3,.ct-compare h4{margin:0;font-weight:600;letter-spacing:-.02em;}
  .ct-compare p{margin:0;}
  .ct-mono{font-family:'Geist Mono',ui-monospace,SFMono-Regular,Menlo,monospace;letter-spacing:0;}

  .ct-section{padding:96px 24px;}
  .ct-section--cream{background:var(--cream);}
  .ct-container{max-width:1240px;margin:0 auto;}

  .ct-eyebrow{
    display:inline-block;
    font-family:'Geist Mono',ui-monospace,monospace;
    font-size:14px;text-transform:uppercase;letter-spacing:.12em;
    color:var(--orange);font-weight:600;margin-bottom:14px;
  }
  .ct-title{
    font-size:clamp(32px,4.4vw,56px);line-height:1.05;font-weight:600;
    letter-spacing:-.03em;max-width:880px;margin-bottom:20px;
  }
  .ct-title em{font-style:normal;color:var(--orange);}
  .ct-deck{font-size:18px;color:var(--ink-soft);max-width:720px;margin-bottom:48px;}

  /* MATRIX */
  .ct-matrix-block{
    border:1px solid var(--line);border-radius:var(--radius-md);
    overflow:hidden;background:var(--white);
    box-shadow:var(--shadow-card);
  }
  .ct-matrix-wrap{border:none;background:var(--white);overflow:hidden;}
  .ct-matrix-meta{
    display:flex;flex-wrap:wrap;gap:24px;align-items:center;
    padding:16px 20px;border-bottom:1px solid var(--line);background:var(--cream);
    font-family:'Geist Mono',monospace;font-size:11px;text-transform:uppercase;
    letter-spacing:.1em;color:var(--ink-soft);
  }
  .ct-matrix-legend{display:flex;gap:20px;flex-wrap:wrap;}
  .ct-legend-item{display:inline-flex;align-items:center;gap:6px;}
  .ct-matrix-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch;}
  .ct-matrix{width:100%;border-collapse:collapse;font-size:13px;table-layout:fixed;}
  .ct-matrix col.ct-col-platform{width:19%;}
  .ct-matrix col.ct-col-cap{width:6.2%;}
  .ct-matrix col.ct-col-score{width:13%;}
  .ct-matrix thead th{
    position:sticky;top:0;background:#0A0907;color:#F4F1EC;
    font-family:'Geist Mono',monospace;font-size:10px;font-weight:500;
    text-transform:uppercase;letter-spacing:.06em;padding:14px 6px;
    text-align:center;border-right:1px solid #2a2a2a;vertical-align:middle;
    line-height:1.25;z-index:2;
  }
  .ct-matrix thead th:first-child{text-align:left;padding-left:18px;}
  .ct-matrix thead th:last-child{border-right:0;}
  .ct-matrix thead th.ct-th-score{background:#1c1c1c;color:var(--orange);}
  .ct-matrix tbody tr{
    border-bottom:1px solid var(--line-soft);
    transition:background .15s ease;
  }
  .ct-matrix tbody tr:nth-child(even){background:#1F1B16;}
  .ct-matrix tbody tr:hover{background:#2A241C;}
  .ct-matrix tbody td{
    padding:12px 4px;text-align:center;border-right:1px solid var(--line-soft);
    vertical-align:middle;
  }
  .ct-matrix tbody td:first-child{text-align:left;padding-left:18px;font-weight:500;}
  .ct-matrix tbody td:last-child{border-right:0;}

  /* Vendor cell: name + url */
  .ct-vendor{display:flex;align-items:center;min-width:0;}
  .ct-vendor-text{display:flex;flex-direction:column;gap:1px;min-width:0;}
  .ct-vendor-name{font-size:13.5px;font-weight:600;letter-spacing:-.01em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
  .ct-vendor-url{font-family:'Geist Mono',monospace;font-size:10.5px;color:var(--ink-faint);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
  /* Capability cells — plain symbols (no checkbox boxes) */
  .ct-yes,.ct-partial,.ct-no{
    display:inline-block;font-weight:700;line-height:1;vertical-align:middle;
    border:none;background:none;width:auto;height:auto;border-radius:0;
  }
  .ct-yes{font-size:17px;color:var(--orange);}
  /* Caller Technologies row — checkmarks in brand teal to echo the trial guarantee pill */
  .ct-row-us .ct-yes{color:var(--teal);}
  .ct-partial{font-size:15px;color:var(--ink-soft);font-weight:600;}
  .ct-no{font-size:15px;color:var(--ink-faint);font-weight:400;}

  /* Score column: number + filled progress bar */
  .ct-score-cell{
    display:flex;flex-direction:column;align-items:flex-start;gap:5px;
    padding-right:12px;
  }
  .ct-score-num{
    font-family:'Geist Mono',monospace;font-size:13px;font-weight:700;
    color:var(--ink);letter-spacing:-.01em;
  }
  .ct-score-num small{
    color:var(--ink-faint);font-weight:400;font-size:11px;margin-left:1px;
  }
  .ct-score-bar{
    width:100%;height:6px;background:#3A352D;border-radius:3px;overflow:hidden;
    position:relative;
  }
  .ct-score-bar-fill{
    height:100%;background:var(--orange);
    border-radius:3px;transition:width .4s ease;
  }

  .ct-matrix-foot{
    padding:16px 20px;border-top:1px solid var(--line);background:var(--cream);
    font-size:12px;color:var(--ink-soft);display:flex;justify-content:space-between;
    flex-wrap:wrap;gap:8px;
  }
  .ct-matrix-foot strong{color:var(--ink);font-weight:600;}

  .ct-score-row{
    display:flex;align-items:center;gap:24px;padding:24px;
    background:#0A0907;color:#F4F1EC;
    border-top:1px solid var(--line);flex-wrap:wrap;
  }
  .ct-score-label{
    font-family:'Geist Mono',monospace;font-size:11px;text-transform:uppercase;
    letter-spacing:.14em;color:var(--teal);
    display:inline-block;position:relative;
    padding:6px 12px;border-radius:99px;
    background:rgba(79, 191, 168, 0.12);
    text-shadow:0 0 10px rgba(79, 191, 168, 0.55);
    animation:verdict-glow 2.2s ease-in-out infinite;
  }
  .ct-score-label::before,
  .ct-score-label::after{
    content:"";position:absolute;inset:0;border-radius:99px;
    border:1.5px solid rgba(79, 191, 168, 0.55);
    pointer-events:none;
    animation:verdict-ping 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }
  .ct-score-label::after{animation-delay:1.2s;}
  @keyframes verdict-glow{
    0%, 100%{
      background:rgba(79, 191, 168, 0.12);
      text-shadow:0 0 8px rgba(79, 191, 168, 0.40);
    }
    50%{
      background:rgba(79, 191, 168, 0.24);
      text-shadow:0 0 16px rgba(79, 191, 168, 0.90), 0 0 4px rgba(168, 223, 210, 0.4);
    }
  }
  @keyframes verdict-ping{
    0%{transform:scale(1);opacity:0.7;}
    85%, 100%{transform:scale(1.45);opacity:0;}
  }
  @media (prefers-reduced-motion: reduce){
    .ct-score-label,
    .ct-score-label::before,
    .ct-score-label::after{animation:none;}
  }
  .ct-score-headline{
    font-size:clamp(20px,2.2vw,28px);font-weight:600;letter-spacing:-.02em;flex:1;
  }
  .ct-score-headline strong{color:var(--orange);font-weight:700;}

  /* =====================================================
     EXPANDED VERDICT BLOCK
     ===================================================== */
  .ct-verdict-block{
    background:var(--white);overflow:hidden;box-shadow:var(--shadow-card);
  }

  /* Bottom: top-3 challengers */
  .ct-verdict-bottom{
    padding:32px 40px 36px;
    border-top:1px solid var(--line-soft);
    background:#1B1814;
  }
  .ct-challengers-h{
    display:flex;align-items:baseline;justify-content:space-between;flex-wrap:wrap;
    gap:12px;margin-bottom:18px;
  }
  .ct-challengers-h h3{
    font-size:17px;font-weight:600;letter-spacing:-.015em;color:var(--ink);
  }
  .ct-challengers-h span{
    font-family:'Geist Mono',monospace;font-size:11px;text-transform:uppercase;
    letter-spacing:.1em;color:var(--ink-faint);
  }
  .ct-challengers{
    display:grid;grid-template-columns:repeat(3,1fr);gap:14px;
  }
  .ct-challenger{
    background:var(--white);border:1px solid var(--line-soft);
    border-radius:12px;padding:18px 18px 16px;display:flex;flex-direction:column;gap:10px;
  }
  .ct-challenger-top{display:flex;align-items:center;gap:10px;}
  .ct-challenger-name{font-size:14.5px;font-weight:600;letter-spacing:-.01em;color:var(--ink);line-height:1.2;}
  .ct-challenger-meta{display:flex;align-items:baseline;gap:8px;}
  .ct-challenger-score{
    font-family:'Geist Mono',monospace;font-size:18px;font-weight:700;color:var(--ink);
  }
  .ct-challenger-score small{color:var(--ink-faint);font-weight:400;font-size:12px;}
  .ct-challenger-gap{
    font-family:'Geist Mono',monospace;font-size:10px;text-transform:uppercase;
    letter-spacing:.1em;color:#FFA664;
    background:var(--orange-tint);padding:3px 7px;border-radius:4px;
  }
  .ct-challenger-missing{
    font-size:12.5px;color:var(--ink-soft);line-height:1.45;
  }
  .ct-challenger-missing strong{color:var(--ink);font-weight:600;}

  /* Final CTA bar inside the verdict */
  .ct-verdict-cta{
    margin-top:28px;padding:22px 26px;border-radius:14px;
    background:linear-gradient(135deg,var(--orange) 0%,#E55A0F 100%);
    color:#FFFFFF;display:flex;align-items:center;justify-content:space-between;
    flex-wrap:wrap;gap:16px;
  }
  .ct-verdict-cta-text{font-size:16px;font-weight:600;letter-spacing:-.015em;line-height:1.3;}
  .ct-verdict-cta-text span{display:block;font-weight:400;font-size:13.5px;opacity:.92;margin-top:3px;}
  .ct-verdict-cta-btn{
    display:inline-flex;align-items:center;gap:8px;
    background:#FFFFFF;color:var(--orange-dark);font-weight:600;font-size:14.5px;
    padding:12px 20px;border-radius:8px;text-decoration:none;
    transition:transform .15s ease,box-shadow .15s ease;
    border:0;cursor:pointer;
  }
  .ct-verdict-cta-btn:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(0,0,0,.18);}
  .ct-verdict-cta-btn svg{width:14px;height:14px;}

  @media (max-width:900px){
    .ct-challengers{grid-template-columns:1fr;}
    .ct-verdict-bottom{padding:28px 26px 32px;}
    .ct-verdict-cta{flex-direction:column;align-items:flex-start;}
  }

  /* SIX CAPABILITIES */
  .ct-grid-6{
    display:grid;grid-template-columns:repeat(3,1fr);gap:0;
    border:1px solid var(--line);background:var(--line);
    border-radius:var(--radius-md);overflow:hidden;
    box-shadow:var(--shadow-card);
  }
  .ct-cap{
    background:var(--white);padding:32px;display:flex;flex-direction:column;
    gap:14px;position:relative;min-height:280px;
  }
  .ct-cap__num{
    font-family:'Geist Mono',monospace;font-size:11px;color:var(--orange);
    letter-spacing:.14em;text-transform:uppercase;font-weight:600;
  }
  .ct-cap__title{font-size:22px;font-weight:600;letter-spacing:-.02em;line-height:1.15;}
  .ct-cap__body{font-size:14.5px;color:var(--ink-soft);flex:1;}
  .ct-cap__proof{
    font-family:'Geist Mono',monospace;font-size:11.5px;color:var(--ink);
    padding-top:14px;border-top:1px solid var(--line-soft);letter-spacing:-.005em;
  }
  .ct-cap__proof::before{content:'\2192  ';color:var(--orange);font-weight:700;}
  .ct-cap__badge{
    position:absolute;top:32px;right:32px;font-family:'Geist Mono',monospace;
    font-size:9.5px;letter-spacing:.14em;text-transform:uppercase;
    background:#0A0907;color:#F4F1EC;padding:4px 8px;
  }

  @media (max-width:960px){
    .ct-section{padding:64px 20px;}
    .ct-grid-6{grid-template-columns:1fr;}
    .ct-cap{padding:24px;min-height:auto;}
    /* Re-enable horizontal scroll only on narrow viewports — desktop fits in one viewport */
    .ct-matrix{table-layout:auto;min-width:1040px;}
    .ct-matrix col.ct-col-platform,
    .ct-matrix col.ct-col-cap,
    .ct-matrix col.ct-col-score{width:auto;}
    .ct-matrix thead th{white-space:nowrap;}
    .ct-score-cell{min-width:90px;}
  }
  @media (max-width:640px){
    .ct-title{font-size:32px;}
  }


/* ============================================================
   EXTRACTED FROM INLINE BLOCK 3 — FAQ scoped variables and styles
   ============================================================ */

/* ==========================================================
       Collapsible FAQ — matches live callerwho.com/ai-voice-agent/
       Rounded cards, soft orange tint on open, plain orange +/−.
       Native <details>, no JS, closed by default.
       ========================================================== */
    #faq{
      --faq-orange:#F47524;
      --faq-orange-dark:#FF8A3D;
      --faq-orange-soft:rgba(244,117,36,0.16);
      --faq-orange-border:rgba(244,117,36,0.40);
      --faq-ink:#F4F1EC;
      --faq-muted:#C8C3B9;
      --faq-soft:#9C9890;
      --faq-line:rgba(255,255,255,0.12);
      --faq-radius:22px;
    }
    #faq .faq-layout{max-width:880px;margin:0 auto;}

    /* Top-questions group */
    #faq .faq-promoted-wrap{margin-bottom:52px;}
    #faq .faq-promoted-label{
      display:flex;align-items:center;gap:12px;
      font-family:'Geist Mono',ui-monospace,SFMono-Regular,Menlo,monospace;
      font-size:11px;font-weight:600;text-transform:uppercase;
      letter-spacing:.1em;color:var(--faq-orange-dark);
      margin-bottom:16px;background:transparent;border:0;padding:0;
    }
    #faq .faq-promoted-label::after{
      content:"";flex:1;height:1px;background:var(--faq-line);
    }
    #faq .faq-promoted{display:grid;gap:10px;}

    /* Grouped sections */
    #faq .faq-groups{display:grid;gap:48px;}
    #faq .faq-group{margin:0;}
    #faq .faq-group-title{
      margin:0 0 8px;
      font-family:'Geist Mono',ui-monospace,SFMono-Regular,Menlo,monospace;
      font-size:12px;font-weight:600;text-transform:uppercase;
      letter-spacing:.08em;color:var(--faq-soft);
    }
    #faq .faq-group-divider{
      height:1px;background:var(--faq-line);margin:0 0 10px;border:0;
    }
    #faq .faq-list{display:grid;gap:10px;margin:0;}

    /* Card (collapsible item) */
    #faq .faq-item{
      background:#1B1814;
      border:1px solid var(--faq-line);
      border-radius:var(--faq-radius);
      overflow:hidden;
      transition:border-color .2s ease,box-shadow .2s ease;
    }
    #faq .faq-item:hover{border-color:var(--faq-orange-border);}
    #faq .faq-item[open]{
      border-color:var(--faq-orange-border);
      box-shadow:0 1px 0 var(--faq-orange-soft);
    }

    /* Summary / header */
    #faq .faq-item > summary{
      list-style:none;cursor:pointer;
      padding:22px 26px;margin:0;
      font-family:'Geist',-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
      font-size:16px;font-weight:600;letter-spacing:-.015em;
      color:var(--faq-ink);line-height:1.35;
      display:flex;justify-content:space-between;align-items:center;gap:16px;
      user-select:none;
    }
    #faq .faq-item > summary::-webkit-details-marker{display:none;}
    #faq .faq-item > summary::marker{content:"";}
    #faq .faq-item > summary:focus-visible{
      outline:2px solid var(--faq-orange);outline-offset:-2px;
    }

    /* Plain orange +/− indicator (matches live site) */
    #faq .faq-item > summary::after{
      content:"+";flex-shrink:0;
      font-family:'Geist Mono',ui-monospace,SFMono-Regular,Menlo,monospace;
      color:var(--faq-orange);font-size:22px;font-weight:600;line-height:1;
      transition:transform .2s ease;
      width:auto;height:auto;background:transparent;border:0;
    }
    #faq .faq-item[open] > summary::after{content:"\2212";}

    /* Answer body */
    #faq .faq-item > .faq-body{
      padding:0 26px 24px;color:var(--faq-muted);
      font-size:14.5px;line-height:1.6;
    }
    #faq .faq-item:not([open]) > .faq-body{display:none !important;}
    #faq .faq-item > .faq-body p{margin:0 0 10px;}
    #faq .faq-item > .faq-body p:last-child{margin-bottom:0;}
    #faq .faq-item > .faq-body strong{color:var(--faq-ink);font-weight:600;}
    #faq .faq-item > .faq-body ul{
      padding-left:20px;margin:8px 0;list-style:disc;
    }
    #faq .faq-item > .faq-body ul li{margin-bottom:6px;}

    /* Inline list with subtle bullets (used in pricing FAQ) */
    #faq .faq-item > .faq-body .faq-inline-list{
      list-style:none;padding-left:0;margin:8px 0 0;
    }
    #faq .faq-item > .faq-body .faq-inline-list li{
      position:relative;padding-left:16px;margin-bottom:8px;
    }
    #faq .faq-item > .faq-body .faq-inline-list li::before{
      content:"·";position:absolute;left:2px;
      color:var(--faq-soft);font-weight:700;
    }
    #faq .faq-item > .faq-body .faq-inline-list li:last-child{margin-bottom:0;}
    #faq .faq-item > .faq-body .faq-promo-tail{margin-top:12px;}

    /* Top-3 "promo" items inherit base card style now (no boxed border) */
    #faq .faq-item--promo{}
    #faq .faq-item--promo > summary{font-size:16px;}

    @media (max-width:640px){
      #faq .faq-item > summary{padding:18px 20px;font-size:15px;}
      #faq .faq-item > .faq-body{padding:0 20px 20px;font-size:14px;}
      #faq .faq-item--promo > summary{font-size:15px;}
    }

/* ============================================================
   THEME TOGGLE — sun/moon switch in nav
   ============================================================ */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-1px); }
.theme-toggle:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.theme-toggle svg {
  width: 18px; height: 18px; position: absolute;
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Default (dark theme) — show moon, hide sun */
.theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.6); }
.theme-toggle .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }
/* Light theme — flip icons */
html[data-theme="light"] .theme-toggle .icon-sun { opacity: 1; transform: rotate(0deg) scale(1); }
html[data-theme="light"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.6); }

@media (max-width: 900px) {
  .theme-toggle { width: 34px; height: 34px; }
  .theme-toggle svg { width: 16px; height: 16px; }
}

/* ============================================================
   LIGHT THEME OVERRIDES
   Activated by html[data-theme="light"] (default is dark).
   Flips design tokens + the surfaces that hardcode dark values.
   ============================================================ */
html[data-theme="light"] {
  --orange-dark: #BA4E28;
  --cream: #FAF7F1;
  --cream-2: #FFFFFF;
  --ink: #0F0D0A;
  --ink-2: #3A352D;
  --muted: #6B6B6B;
  --soft: #8A857C;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.16);
  --teal: #2E8A7C;
  --teal-deep: #1F6B5F;
  --teal-bg: #E7F3EF;
  --teal-border: #C9DFD9;
  --shadow-lg: 0 28px 70px rgba(38, 26, 16, 0.14);
  --shadow-md: 0 10px 28px rgba(38, 26, 16, 0.08);
  --shadow-sm: 0 2px 8px rgba(38, 26, 16, 0.06);
  --bg-elevated: #FFFFFF;
  --line-2: rgba(0, 0, 0, 0.10);
  --ink-3: #4A4A4A;
  --ink-4: #6B6B6B;
  --ink-muted: #6B6B6B;
}

/* Page background — replace dark radial with cream tone */
html[data-theme="light"] { background: #FAF7F1; }
html[data-theme="light"] body {
  background:
    radial-gradient(ellipse 120% 100% at 90% 90%, rgba(244, 117, 36, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 5%, rgba(244, 117, 36, 0.04) 0%, transparent 60%),
    linear-gradient(135deg, #FAF7F1 0%, #FFF8EE 50%, #FFEFDC 100%);
  background-attachment: fixed;
  color: var(--ink);
}
/* Soften the body texture overlay in light mode */
html[data-theme="light"] body::before { opacity: 0.04; }

/* Nav becomes light-frosted */
html[data-theme="light"] .nav {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
}

/* Common dark surfaces → light surfaces.
   Listed explicitly because each hardcoded #1B1814 in the source
   needs an override. */
html[data-theme="light"] .btn-secondary,
html[data-theme="light"] .diff-chip,
html[data-theme="light"] .panel,
html[data-theme="light"] .database-card,
html[data-theme="light"] .pain-card,
html[data-theme="light"] .step,
html[data-theme="light"] .feature,
html[data-theme="light"] .routing-vis,
html[data-theme="light"] .routing-calc,
html[data-theme="light"] .pricing,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .mobile-menu-links a,
html[data-theme="light"] .video-play-btn:hover,
html[data-theme="light"] .video-replay-btn:hover {
  background: #FFFFFF;
}

html[data-theme="light"] .final-cta .btn-secondary {
  background: #FFFFFF;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

html[data-theme="light"] .final-cta .btn-secondary:hover {
  background: #FFFFFF;
  color: var(--ink);
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

html[data-theme="light"] .caller-profile-modal-dialog,
html[data-theme="light"] .caller-profile-modal iframe { background: #FFFFFF; }

/* ----- Signal icon tiles: light theme ----- */
/* Tile flips to white; the SVG inside swaps to its dark-on-white variant
   (text in --ink, subtext in --ink-soft, brand orange preserved). */
html[data-theme="light"] .db-signal {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .db-signal:hover {
  background: #FFF7EB;
  border-color: rgba(244, 117, 36, 0.35);
}
html[data-theme="light"] .db-signal-img--dark { display: none; }
html[data-theme="light"] .db-signal-img--light { display: block; }

html[data-theme="light"] .pain-card-fix {
  background: #F4F1EC;
}

html[data-theme="light"] .pain-card-fix-desc {
  color: var(--muted);
}

html[data-theme="light"] .pain-card-fix strong {
  color: #000;
  font-weight: 700;
}

/* Footer */
html[data-theme="light"] .footer { background: #FAF7F1; }

/* Routing tag "no" — visible against light surfaces */
html[data-theme="light"] .routing-tag.no {
  background: rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .routing-summary {
  color: var(--ink-2);
}
html[data-theme="light"] .routing-summary .lbl {
  color: var(--muted);
}
html[data-theme="light"] .routing-summary .num {
  color: #2E8A7C;
}
html[data-theme="light"] .routing-summary .desc {
  color: var(--ink-2);
}

/* Light-theme color-scheme so browsers theme scrollbars + form controls */
html[data-theme="light"] { color-scheme: light; }

/* ---- Surfaces that intentionally remain dark in BOTH themes ---- */
/* Verdict bar + challengers panel in light mode: flip the dark accents to white
   so the headline and challenger cards remain readable.
   Note: .ct-compare locally shadows --ink to off-white for its dark body,
   so values are hardcoded rather than referencing the variable. */
html[data-theme="light"] .ct-compare .ct-score-row {
  background: #FFFFFF;
  color: #0F0D0A;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}
html[data-theme="light"] .ct-compare .ct-score-headline {
  color: #0F0D0A;
}
html[data-theme="light"] .ct-compare .ct-verdict-bottom { background: #FAF7F1; }

html[data-theme="light"] .adapt-v2-col-left {
  background: #120E0A;
  color: #F5F2EC;
}

/* Comparison table scoped variables flip too */
html[data-theme="light"] .ct-compare {
  --orange-tint: #FFF1E2;
  --cream: #FFFFFF;
  --ink: #0F0D0A;
  --ink-soft: #4A4A4A;
  --ink-faint: #6B6B6B;
  --line: rgba(0, 0, 0, 0.12);
  --line-soft: rgba(0, 0, 0, 0.08);
  --white: #FFFFFF;
  --shadow-card: 0 4px 24px rgba(38, 26, 16, 0.08);
}

/* ----------------------------------------------------------------
   Comparison TABLE — light-mode overrides for hardcoded dark hex
   values that bypass the token system (zebra stripe, thead bg, hover).
   In dark mode the source literals stay; in light mode these win
   via higher specificity.
   ---------------------------------------------------------------- */
/* thead background — was #0A0907 (near-black) */
html[data-theme="light"] .ct-compare .ct-matrix thead th {
  background: #FAF7F1;
  color: #0F0D0A;
  border-right-color: rgba(0, 0, 0, 0.10);
}
/* Score-column header — was #1c1c1c */
html[data-theme="light"] .ct-compare .ct-matrix thead th.ct-th-score {
  background: #FFF1E2;
  color: #BA4E28;
}
/* Body row zebra-stripe — was #1F1B16 (this is the unreadable one) */
html[data-theme="light"] .ct-compare .ct-matrix tbody tr:nth-child(even) {
  background: #FBF8F2;
}
html[data-theme="light"] .ct-compare .ct-matrix tbody tr:nth-child(odd) {
  background: #FFFFFF;
}
/* Hover state — was #2A241C */
html[data-theme="light"] .ct-compare .ct-matrix tbody tr:hover {
  background: #FFF1E2;
}
/* Score bar track — was #3A352D (dark) */
html[data-theme="light"] .ct-compare .ct-score-bar {
  background: rgba(0, 0, 0, 0.08);
}

/* FAQ scoped variables flip too — scoped under #faq */
html[data-theme="light"] #faq {
  --faq-orange-dark: #BA4E28;
  --faq-orange-soft: rgba(244, 117, 36, 0.12);
  --faq-orange-border: rgba(244, 117, 36, 0.30);
  --faq-ink: #0F0D0A;
  --faq-muted: #4A4A4A;
  --faq-soft: #6B6B6B;
  --faq-line: rgba(0, 0, 0, 0.10);
}
html[data-theme="light"] #faq .faq-item { background: #FFFFFF; }

/* Video transcript card in light mode */
html[data-theme="light"] .transcript-card {
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--line);
}
html[data-theme="light"] .transcript-summary-title,
html[data-theme="light"] .transcript-summary-sub,
html[data-theme="light"] .transcript-body p {
  color: var(--soft);
}

/* Hero "Qualified & routed" card — needs a dark surface for the light teal text to be legible in light mode */
html[data-theme="light"] .route {
  background: #0F0D0A;
  border-color: #0F0D0A;
}

/* ============================================================
   BACK TO TOP BUTTON (v17)
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #FFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(244, 117, 36, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 117, 36, 0.45);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: none; }
}

/* ============================================================
   NOSCRIPT COMPARISON TABLE FALLBACK (v17)
   ============================================================ */
noscript table {
  width: 100%;
  border-collapse: collapse;
}

noscript tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

noscript td, noscript th {
  padding: 8px 10px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}

noscript th[scope="row"] {
  text-align: left;
  font-weight: 600;
}
