/* ════════════════════════════════════════════════════════════════════
   CDA FUNNEL — Scoped under #cda-funnel for Elementor compatibility
   Design system: Soft-brutalist · Cal Sans display + Figtree body
   Brand colors: Black ink · White paper · Gold accent · Red urgency
   ════════════════════════════════════════════════════════════════════ */

#cda-funnel, #cda-funnel * {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

#cda-funnel {
  /* ─── Design tokens ──────────────────────────────── */
  --ink: #0a0a0b;
  --ink-soft: #2a2a2d;
  --ink-muted: #6b6b70;
  --ink-faint: #a8a8ad;
  --paper: #ffffff;
  --paper-soft: #faf9f6;
  --paper-card: #f5f4ef;
  --border: #e8e7e1;
  --border-strong: #d4d3cc;

  /* Gold = the "qualified / premium" accent */
  --gold: #f0c83a;
  --gold-deep: #d4af37;
  --gold-soft: #fff7d6;
  --gold-ink: #6b4f0a;

  /* Red = urgency only — offer page, countdown, primary purchase CTA */
  --red: #e53935;
  --red-deep: #c62828;
  --red-soft: #fef2f2;

  /* Green = success / qualified status */
  --green: #16a34a;
  --green-soft: #ecfdf5;
  --green-ink: #14532d;

  --font-display: 'Bricolage Grotesque', 'Figtree', -apple-system, system-ui, sans-serif;
  --font-body: 'Figtree', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Hard-reset positioning so Elementor wrapper doesn't push it */
  position: relative !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  min-height: 100vh !important;
  overflow-x: hidden !important;
}

/* Reset body margin so funnel sits truly edge-to-edge — container's 22px padding then provides breathing room */
body:has(#cda-funnel) {
  margin: 0 !important;
  padding: 0 !important;
}

#cda-funnel button,
#cda-funnel input,
#cda-funnel a {
  font-family: var(--font-body) !important;
  font-weight: 500;
}

#cda-funnel a {
  color: inherit;
  text-decoration: none;
}

/* ─── Screen system ──────────────────────────────────── */
#cda-funnel .screen {
  display: none;
  min-height: 100vh;
  width: 100%;
  flex-direction: column;
}

#cda-funnel .screen.active {
  display: flex;
}

#cda-funnel .container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 22px;
}
@media (min-width: 768px) {
  #cda-funnel .container {
    max-width: 640px;
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  #cda-funnel .container {
    max-width: 720px;
    padding: 0 36px;
  }
}

#cda-funnel .container-wide {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 18px;
}
@media (min-width: 768px) {
  #cda-funnel .container-wide {
    max-width: 720px;
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  #cda-funnel .container-wide {
    max-width: 800px;
    padding: 0 36px;
  }
}

/* ─── Top bar (sticky during quiz) ───────────────────── */
#cda-funnel .topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

#cda-funnel .topbar-back {
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

#cda-funnel .topbar-back:hover {
  color: var(--ink);
  background: var(--paper-card);
}

#cda-funnel .brand {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: 400;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1px;
}

#cda-funnel .brand .dot {
  background: var(--gold);
  color: var(--ink);
  padding: 0 7px;
  border-radius: 6px;
  margin: 0 1px;
  display: inline-block;
}

#cda-funnel .progress-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#cda-funnel .progress-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

#cda-funnel .progress-track {
  height: 6px;
  background: var(--paper-card);
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid var(--border);
}

#cda-funnel .progress-fill {
  height: 100%;
  background: var(--ink);
  border-radius: 100px;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

#cda-funnel .progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 18px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.6;
}

/* ─── Typography utilities ───────────────────────────── */
#cda-funnel .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}

#cda-funnel .display-xl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 7.5vw, 64px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--ink);
}

#cda-funnel .display-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 6vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--ink);
}

#cda-funnel .display-md {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4.5vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}

#cda-funnel .display-sm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

#cda-funnel .highlight {
  background: var(--gold);
  color: var(--ink);
  padding: 0 8px;
  border-radius: 6px;
  display: inline-block;
  line-height: 0.9;
  transform: rotate(-1deg);
  margin: 0 1px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

#cda-funnel .highlight-red {
  background: var(--red);
  color: white;
  padding: 0 8px;
  border-radius: 6px;
  display: inline-block;
  line-height: 0.9;
  transform: rotate(-1deg);
  margin: 0 1px;
}

#cda-funnel .body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 500;
}

#cda-funnel .body-lg {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 500;
}

#cda-funnel .body-sm {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-muted);
  font-weight: 500;
}

#cda-funnel .micro {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
}

/* ─── Pills & badges ─────────────────────────────────── */
#cda-funnel .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--paper-card);
  color: var(--ink-soft);
  border: 1px solid var(--border);
}

#cda-funnel .pill-gold {
  background: var(--gold-soft);
  color: var(--gold-ink);
  border-color: var(--gold);
}

#cda-funnel .pill-red {
  background: var(--red-soft);
  color: var(--red-deep);
  border-color: #fecaca;
}

#cda-funnel .pill-green {
  background: var(--green-soft);
  color: var(--green-ink);
  border-color: #a7f3d0;
}

#cda-funnel .pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

#cda-funnel .pill-green .dot {
  background: var(--green);
}

/* ─── Answer cards (the soft-brutalist signature) ──── */
#cda-funnel .answer {
  position: relative;
  width: 100%;
  background: var(--paper);
  border: 2px solid var(--border-strong);
  border-radius: 14px;
  padding: 17px 50px 17px 18px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  line-height: 1.4;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.18s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.18s ease,
              background 0.18s ease;
  font-family: var(--font-body);
}

#cda-funnel .answer:hover {
  border-color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}

#cda-funnel .answer:active {
  transform: translate(0, 0);
  box-shadow: 0 0 0 var(--ink);
}

#cda-funnel .answer.selected {
  border-color: var(--ink);
  background: var(--gold);
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}

#cda-funnel .answer .check {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  transition: all 0.15s ease;
}

#cda-funnel .answer.multi .check {
  border-radius: 6px;
}

#cda-funnel .answer.selected .check {
  background: var(--ink);
  border-color: var(--ink);
}

#cda-funnel .answer.selected .check::after {
  content: '';
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg) translate(0, -1px);
}

#cda-funnel .answer-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* ─── Buttons ────────────────────────────────────────── */
#cda-funnel .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  padding: 17px 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.18s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.18s ease;
  letter-spacing: -0.005em;
  box-shadow: 4px 4px 0 var(--ink);
  -webkit-tap-highlight-color: transparent;
}

#cda-funnel .btn:hover:not(:disabled) {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

#cda-funnel .btn:active:not(:disabled) {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}

#cda-funnel .btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

#cda-funnel .btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--ink);
}

#cda-funnel .btn-red {
  background: var(--red);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 17px;
  padding: 19px 24px;
}

#cda-funnel .btn-red:hover:not(:disabled) {
  background: var(--red-deep);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

#cda-funnel .btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--ink);
}

#cda-funnel .btn-ghost:hover:not(:disabled) {
  background: var(--paper-card);
}

/* ─── CTA pulse for offer page ───────────────────────── */
@keyframes cda-pulse {
  0%, 100% { transform: translate(0, 0); box-shadow: 4px 4px 0 var(--ink); }
  50% { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
}

#cda-funnel .btn-pulse {
  animation: cda-pulse 2.4s ease-in-out infinite;
}

#cda-funnel .btn-pulse:hover {
  animation: none;
}

/* ─── Inputs ─────────────────────────────────────────── */
#cda-funnel .field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

#cda-funnel .field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

#cda-funnel .field input {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--border-strong);
  border-radius: 12px;
  background: var(--paper);
  font-size: 16px;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
}

#cda-funnel .field input:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

#cda-funnel .field input.error {
  border-color: var(--red);
}

#cda-funnel .field-error {
  font-size: 12px;
  color: var(--red-deep);
  font-weight: 600;
  display: none;
}

#cda-funnel .field-error.show {
  display: block;
}

/* ─── Cards ──────────────────────────────────────────── */
#cda-funnel .card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 4px 4px 0 var(--ink);
}

#cda-funnel .card-soft {
  background: var(--paper-soft);
  border: 1.5px solid var(--border-strong);
  border-radius: 14px;
  padding: 18px;
}

#cda-funnel .card-gold {
  background: var(--gold-soft);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 4px 4px 0 var(--ink);
}

/* ─── Animations ─────────────────────────────────────── */
@keyframes cda-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

#cda-funnel .fade-in {
  animation: cda-fade-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cda-stagger {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

#cda-funnel .stagger > * {
  animation: cda-stagger 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#cda-funnel .stagger > *:nth-child(1) { animation-delay: 40ms; }
#cda-funnel .stagger > *:nth-child(2) { animation-delay: 90ms; }
#cda-funnel .stagger > *:nth-child(3) { animation-delay: 140ms; }
#cda-funnel .stagger > *:nth-child(4) { animation-delay: 190ms; }
#cda-funnel .stagger > *:nth-child(5) { animation-delay: 240ms; }
#cda-funnel .stagger > *:nth-child(6) { animation-delay: 290ms; }

/* ─── Quiz body layout ───────────────────────────────── */
#cda-funnel .quiz-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 28px;
  padding-bottom: 40px;
}

#cda-funnel .quiz-question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 26px;
}

#cda-funnel .quiz-hint {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  margin-top: -16px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#cda-funnel .quiz-hint::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--gold);
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
}

#cda-funnel .quiz-subhead {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: -10px;
  margin-bottom: 24px;
}

#cda-funnel .multi-prompt {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ─── Bridge layout (no question — narrative only) ─── */
#cda-funnel .bridge-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 36px;
  padding-bottom: 40px;
  min-height: calc(100vh - 70px);
}

#cda-funnel .bridge-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

#cda-funnel .bridge-subhead {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

#cda-funnel .bridge-image {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 14px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

#cda-funnel .bridge-prose {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 500;
}

#cda-funnel .bridge-prose p + p {
  margin-top: 14px;
}

#cda-funnel .bridge-prose strong {
  font-weight: 700;
  color: var(--ink);
}

#cda-funnel .bridge-list {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}

#cda-funnel .bridge-list li {
  padding: 11px 0 11px 30px;
  position: relative;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.45;
  border-bottom: 1px solid var(--border);
}

#cda-funnel .bridge-list li:last-child {
  border-bottom: none;
}

#cda-funnel .bridge-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

/* ─── Loading screen circular progress ──────────────── */
#cda-funnel .loading-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 22px;
  min-height: 100vh;
}

#cda-funnel .loading-ring {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 28px auto 36px;
}

#cda-funnel .loading-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

#cda-funnel .loading-ring .ring-track {
  fill: none;
  stroke: var(--paper-card);
  stroke-width: 8;
}

#cda-funnel .loading-ring .ring-fill {
  fill: none;
  stroke: var(--ink);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 0.05s linear;
}

#cda-funnel .loading-ring .ring-percent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

#cda-funnel .loading-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-muted);
  transition: opacity 0.3s ease;
  min-height: 22px;
}

/* ─── Summary mirror cards ──────────────────────────── */
#cda-funnel .mirror-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

#cda-funnel .mirror-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

#cda-funnel .mirror-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

#cda-funnel .mirror-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

/* ─── You vs You comparison ─────────────────────────── */
#cda-funnel .versus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 24px;
}

#cda-funnel .versus-col {
  border-radius: 14px;
  padding: 16px 14px;
  border: 2px solid var(--ink);
}

#cda-funnel .versus-col.now {
  background: var(--paper-card);
  box-shadow: 4px 4px 0 var(--ink);
}

#cda-funnel .versus-col.future {
  background: var(--gold-soft);
  box-shadow: 4px 4px 0 var(--ink);
}

#cda-funnel .versus-head {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#cda-funnel .versus-head .step {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

#cda-funnel .versus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#cda-funnel .versus-list li {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  padding-left: 18px;
  position: relative;
}

#cda-funnel .versus-col.now .versus-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  top: -1px;
  font-weight: 800;
  color: var(--ink-muted);
}

#cda-funnel .versus-col.future .versus-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: -1px;
  font-weight: 800;
  color: var(--ink);
}

/* ─── Date banner ──────────────────────────────────── */
#cda-funnel .date-banner {
  background: var(--ink);
  color: var(--paper);
  padding: 16px 18px;
  border-radius: 14px;
  text-align: center;
  margin-bottom: 18px;
}

#cda-funnel .date-banner .label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

#cda-funnel .date-banner .date {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--paper);
}

/* ─── OFFER PAGE specific ──────────────────────────── */
#cda-funnel .offer-page {
  background: var(--paper);
  padding-bottom: 60px;
}

#cda-funnel .offer-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#cda-funnel .offer-attention-bar {
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 14px 22px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 20;
  animation: cda-attention-pulse 2s ease-in-out infinite;
}

@keyframes cda-attention-pulse {
  0%, 100% { background: var(--red); }
  50% { background: #c81e1e; }
}

#cda-funnel .video-frame {
  aspect-ratio: 16 / 10;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 16px;
  margin: 22px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
}

#cda-funnel .video-frame .video-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--paper);
  padding: 16px;
  background: linear-gradient(135deg, #1a1a1d 0%, #0a0a0b 100%);
}

#cda-funnel .video-frame .video-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 12px;
  transition: transform 0.18s ease;
}

#cda-funnel .video-frame:hover .video-play {
  transform: scale(1.05);
}

#cda-funnel .video-frame .live-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

#cda-funnel .video-frame .live-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--paper);
  animation: cda-blink 1.4s infinite;
}

@keyframes cda-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

#cda-funnel .day-block {
  border-left: 3px solid var(--ink);
  padding: 4px 0 4px 16px;
  margin-bottom: 18px;
}

#cda-funnel .day-block .day-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

#cda-funnel .day-block .day-title {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}

#cda-funnel .day-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

#cda-funnel .day-block ul li {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 500;
  padding-left: 16px;
  position: relative;
}

#cda-funnel .day-block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ink);
  font-weight: 700;
}

#cda-funnel .price-block {
  text-align: center;
  padding: 24px 0;
}

#cda-funnel .price-strike {
  font-size: 16px;
  color: var(--ink-muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  font-weight: 600;
}

#cda-funnel .price-now {
  font-family: var(--font-display);
  font-size: clamp(56px, 14vw, 76px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 8px 0 6px;
  font-weight: 400;
}

#cda-funnel .price-now-pill {
  display: inline-block;
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 8px 22px 12px;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-1deg);
  margin: 4px 0;
}

#cda-funnel .price-savings {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 12px;
}

/* ─── Guarantee block ──────────────────────────────── */
#cda-funnel .guarantee {
  background: var(--gold-soft);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 24px 22px;
  text-align: center;
  margin: 28px 0;
  box-shadow: 4px 4px 0 var(--ink);
}

#cda-funnel .guarantee-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--ink);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cda-funnel .guarantee-icon svg {
  width: 28px;
  height: 28px;
}

#cda-funnel .guarantee-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink);
}

#cda-funnel .guarantee p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 10px;
  font-weight: 500;
}

#cda-funnel .guarantee p:last-child {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0;
}

/* ─── Anti-objection ───────────────────────────────── */
#cda-funnel .objection-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#cda-funnel .objection-list li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 500;
  padding: 0;
}

#cda-funnel .objection-list li strong {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

/* ─── Urgency / countdown ──────────────────────────── */
#cda-funnel .urgency {
  background: var(--ink);
  color: var(--paper);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  margin-bottom: 18px;
}

#cda-funnel .urgency-line {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

#cda-funnel .urgency-line::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: cda-blink 1.4s infinite;
}

#cda-funnel .countdown-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 6px;
}

#cda-funnel .countdown {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
  line-height: 1;
}

#cda-funnel .seat-line {
  font-size: 13px;
  color: var(--paper);
  font-weight: 500;
}

#cda-funnel .seat-line strong {
  color: var(--gold);
  font-weight: 700;
}

/* ─── Payment trust ────────────────────────────────── */
#cda-funnel .pay-trust {
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

#cda-funnel .pay-logos {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

#cda-funnel .pay-logo {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--paper-card);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--ink-soft);
  border: 1px solid var(--border);
}

/* ─── Section divider ──────────────────────────────── */
#cda-funnel .section-rule {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 26px 0;
}

#cda-funnel .section-rule.thick {
  height: 2px;
  background: var(--ink);
  margin: 32px 0;
}

#cda-funnel .section-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

#cda-funnel .section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 8px;
}

#cda-funnel .section-sub {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 18px;
  font-weight: 500;
}

/* ─── Confirmation page ────────────────────────────── */
#cda-funnel .check-burst {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  background: var(--green);
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0 var(--ink);
}

#cda-funnel .check-burst svg {
  width: 40px;
  height: 40px;
  color: var(--paper);
}

#cda-funnel .next-steps {
  background: var(--paper-soft);
  border: 1.5px solid var(--border-strong);
  border-radius: 14px;
  padding: 20px;
  text-align: left;
  margin: 24px 0;
}

#cda-funnel .next-steps-title {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

#cda-funnel .next-steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#cda-funnel .next-steps ol li {
  counter-increment: steps;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 500;
  padding-left: 30px;
  position: relative;
}

#cda-funnel .next-steps ol li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  background: var(--ink);
  color: var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Landing page hero ────────────────────────────── */
#cda-funnel .landing {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 28px;
  padding-bottom: 40px;
  min-height: 100vh;
}

#cda-funnel .landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

#cda-funnel .featured-strip {
  background: var(--paper-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  margin: 28px -22px 28px;
}

#cda-funnel .featured-strip .strip-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6px;
}

#cda-funnel .featured-strip .strip-names {
  text-align: center;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

#cda-funnel .stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

#cda-funnel .stat {
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 14px 14px;
  text-align: left;
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
}

#cda-funnel .stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}

#cda-funnel .stat-label {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 600;
  line-height: 1.3;
}

/* ─── Form helper ───────────────────────────────────── */
#cda-funnel .form-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#cda-funnel .micro-trust {
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 14px;
  font-weight: 500;
}

/* ─── Payment failed ───────────────────────────────── */
#cda-funnel .alert-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--red-soft);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--red-deep);
}

/* ─── Responsive ───────────────────────────────────── */
@media (min-width: 640px) {
  #cda-funnel .quiz-question {
    margin-bottom: 30px;
  }
  #cda-funnel .versus {
    gap: 16px;
  }
  #cda-funnel .versus-list li {
    font-size: 14px;
  }
  #cda-funnel .stat-num {
    font-size: 32px;
  }
}

@media (max-width: 360px) {
  #cda-funnel .container {
    padding: 0 18px;
  }
  #cda-funnel .answer {
    padding: 15px 44px 15px 16px;
    font-size: 15px;
  }
  #cda-funnel .versus-list li {
    font-size: 12px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  #cda-funnel *,
  #cda-funnel *::before,
  #cda-funnel *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}