:root {
  --rv6-heading-font: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --rt-gold: #C69217;
  --rt-gold-rgb: 198, 146, 23;
  --rt-gold-dark: #9A6700;
  --rt-gold-light: #E7B94A;
  --rt-gold-text: var(--rt-gold-dark);
  --rt-gold-on-dark: var(--rt-gold-light);
  --rt-gold-bg: rgba(var(--rt-gold-rgb), 0.08);
  --rt-gold-line: rgba(var(--rt-gold-rgb), 0.24);
  --rv6-black: #050505;
  --rv6-ink: #111111;
  --rv6-paper: #f7f5f1;
  --rv6-paper-2: #fffaf0;
  --rv6-gold: var(--rt-gold, #C69217);
  --rv6-gold-2: var(--rt-gold-light, #E7B94A);
  --rv6-orange: #ff7a00;
  --rv6-orange-2: #ffb000;
  --rv6-red: #f05a3d;
  --rv6-muted: #6a6257;
  --rv6-line: rgba(var(--rt-gold-rgb, 198, 146, 23), 0.26);
  --rv6-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);

  /* ── Design system v2: alternating-band funnel ─────────────────────────────
     Dark = emotion / desire. Champagne = trust / decision.
     Gold = premium cues. Orange = action.
  */
  --bg-dark: #070706;
  --bg-charcoal: #11100D;
  --card-dark: #181511;
  --text-primary-dark: #F6F1E8;
  --text-secondary-dark: #C9BFAF;
  --text-muted-dark: #8F8474;

  --gold: var(--rt-gold, #C69217);
  --gold-soft: var(--rt-gold-light, #E7B94A);
  --bronze: var(--rt-gold-dark, #9A6700);
  --gold-line: var(--rt-gold-line, rgba(var(--rt-gold-rgb, 198, 146, 23), 0.24));

  --cta: #FF6A1A;
  --cta-hover: #FF7F2A;

  /* Orange system: shared core between headline + CTA, with depth tokens
     reserved for dimensional surfaces (buttons, glow). Headline stays flat. */
  --orange-core: #FF6A1A;
  --orange-highlight: #FF8A2A;
  --orange-deep: #C9460D;
  --orange-glow: rgba(255, 106, 26, 0.28);
  --orange-text-on: #FFF8EA;

  --bg-light: #F7EBD2;
  --card-light: #FFF8EA;
  --border-light: #D9BE82;
  --text-primary-light: #1D1710;
  /* Secondary text on light/champagne (captions, value-stack desc, author
     title). Darkened 2026-05-18 (#6E6254 -> #4a4f57): ~6.5-8:1 vs prior
     ~4.7-5.9:1, while keeping it a step lighter than body for hierarchy. */
  --text-secondary-light: #4a4f57;
}

/* ── Section system: full-width bands with centered content ─────────────────
   Use .section-dark or .section-light as full-bleed wrapper.
   Use .section-content inside for the centered max-width constraint.
*/
.section-dark,
.section-light {
  width: 100%;
  padding: 80px 24px;
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-primary-dark);
}

.section-dark.section-charcoal {
  background: var(--bg-charcoal);
}

.section-dark .muted,
.section-dark p,
.section-dark .text-secondary {
  color: var(--text-secondary-dark);
}

.section-dark .text-muted {
  color: var(--text-muted-dark);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-primary-light);
}

.section-light.section-cream {
  background: var(--card-light);
}

.section-light .muted,
.section-light p,
.section-light .text-secondary {
  color: var(--text-secondary-light);
}

.section-content {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}

.section-content.narrow {
  max-width: 720px;
}

.section-content.wide {
  max-width: 1120px;
}

/* Gold accent helpers */
.text-gold {
  color: var(--gold);
}

.section-dark .text-gold {
  color: var(--gold-soft);
}

/* Tight responsive padding on mobile */
@media (max-width: 640px) {
  .section-dark,
  .section-light {
    padding: 48px 20px;
  }
}


/* ── Reveal animation (scroll + initial load) ──────────────────────────────
   Sections start slightly offset + transparent, animate in when in view.
*/
@keyframes rv6-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .section-light,
  .section-dark {
    /* Default state for the JS reveal class to take over from */
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 600ms cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .section-light.is-revealed,
  .section-dark.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* First section above-the-fold: reveal immediately on page load */
  .section-light:first-of-type,
  .section-dark:first-of-type {
    animation: rv6-reveal 700ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* Accessibility: respect users who prefer no motion */
  .section-light,
  .section-dark {
    opacity: 1;
    transform: none;
  }
}

/* Header: charcoal band always — premium nav, distinct from deep dark body */
body.rt-v6-quiz-page .site-header {
  background: var(--bg-charcoal);
  border-bottom: 1px solid var(--gold-line);
}

body.rt-v6-quiz-page .site-header .logo-text {
  color: var(--text-primary-dark);
}

body.rt-v6-quiz-page .site-header .logo-text span {
  color: var(--gold);
  display: inline-block;
  margin-left: -0.08em;
}

/* When welcome screen is visible, body bg matches the light band */
body.rt-v6-quiz-page:has(#screen-welcome.active) {
  background: var(--bg-light);
}

body.rt-v6-quiz-page #screen-welcome .section-content{
  position: relative;
  z-index: 1;
}


/* Make container full-bleed for the new section system */
body.rt-v6-quiz-page #screen-welcome .container,
body.rt-v6-quiz-page #screen-welcome .rt-v6-landing {
  max-width: none;
  padding: 0;
  margin: 0;
  width: 100%;
}


.rt-v6-funnel {
  background: var(--rv6-paper);
}

.rt-v6-funnel .site-header {
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  max-width: none;
  width: 100%;
  margin: 0;
}

.rt-v6-funnel .site-header .logo-text,
.rt-v6-funnel .site-header .logo-text span {
  color: #ffffff;
}

.rt-v6-funnel .site-header .logo-text span {
  display: inline-block;
  margin-left: -0.08em;
}

.rt-v6-funnel .container {
  max-width: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.rt-v6-funnel #screen-question,
.rt-v6-funnel #screen-email {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 96px 20px 48px;
  min-height: 100vh;
}

.rt-v6-funnel #screen-result {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 96px 20px 56px;
}

/* When result is banded, dissolve every wrapper between <body> and the bands
   so each <section> is effectively a direct child of <body> — full-bleed,
   no parent width/padding/overflow constraints. */
body.rt-v6-funnel[data-active-screen="result"] .container.rt-public-shell,
body.rt-v6-funnel[data-active-screen="result"] #screen-result.result-banded,
body.rt-v6-funnel[data-active-screen="result"] #screen-result.result-banded > .result-content,
body.rt-v6-funnel[data-active-screen="result"] #screen-result.result-banded #vsl-below-content {
  display: contents;
}

/* Prevent any horizontal scrollbar caused by full-bleed sections */
html, body {
  overflow-x: clip;
}

.rt-v6-funnel #screen-result.result-banded .result-band {
  width: 100%;
  padding: 64px 24px;
  box-sizing: border-box;
}

.rt-v6-funnel #screen-result.result-banded .result-band:first-child {
  padding-top: 104px;
}

.rt-v6-funnel #screen-result.result-banded .result-band .section-content {
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .rt-v6-funnel #screen-result.result-banded .result-band {
    padding: 48px 20px;
  }
  .rt-v6-funnel #screen-result.result-banded .result-band:first-child {
    padding-top: 88px;
  }
}

.rt-v6-funnel .btn-primary,
.rt-v6-funnel .btn-orange{
  background: linear-gradient(
    180deg,
    var(--orange-highlight) 0%,
    var(--orange-core) 52%,
    var(--orange-deep) 100%
  ) !important;
  color: var(--orange-text-on) !important;
  border: 0 !important;
  border-radius: 12px !important;
  box-shadow:
    0 10px 28px var(--orange-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.32) !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.rt-v6-funnel .btn-primary:hover,
.rt-v6-funnel .btn-orange:hover{
  transform: translateY(-2px);
  background: linear-gradient(
    180deg,
    #FFA046 0%,
    var(--orange-highlight) 52%,
    var(--orange-core) 100%
  ) !important;
  box-shadow:
    0 22px 44px rgba(255, 106, 26, 0.38),
    0 4px 12px var(--orange-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.42) !important;
}

/* CTA glow-breathe + shine keyframes now live in theme-public.css
   (rt-public-cta-breathe / -shine), shared by every page. */

.rt-v6-landing {
  width: 100%;
  color: var(--rv6-ink);
  background: var(--rv6-paper);
}

html[data-theme="dark"] {
  background: #070707 !important;
}


/* V6 mixed contrast pass: dark buying moments{
  background:
    linear-gradient(180deg, rgba(246, 235, 212, 0.96), rgba(232, 218, 190, 0.96)),
    #eee1c8 !important;
  border: 1px solid rgba(var(--rt-gold-rgb), 0.24) !important;
  color: #18140d !important;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24) !important;
}


@media (max-width: 560px) {
  .rt-v6-funnel .site-header {
    background: #050505;
  }

  
  
  
  
  
  }

/* ──────────────────────────────────────────────────────────────────────────
   Phase 3: Dark cinematic treatment for quiz interaction screens
   Engages when body[data-active-screen] is question / email / result.
   Welcome stays on the cream hero band.
   ────────────────────────────────────────────────────────────────────────── */

body.rt-v6-funnel[data-active-screen="question"],
body.rt-v6-funnel[data-active-screen="email"],
body.rt-v6-funnel[data-active-screen="result"] {
  background: linear-gradient(180deg, #070706 0%, #100E0A 60%, #0A0907 100%);
  background-attachment: fixed;
  color: var(--text-primary-dark);

  --bg: var(--bg-dark);
  --bg-card: var(--card-dark);
  --bg-hover: #211C16;
  --text: var(--text-primary-dark);
  --text-muted: var(--text-secondary-dark);
  --text-dim: var(--text-muted-dark);
  --accent: var(--gold);
  --accent-hover: var(--gold-soft);
  --accent-glow: rgba(var(--rt-gold-rgb), 0.12);
  --btn-text: #1A0E03;
  --chat-him: rgba(255, 255, 255, 0.08);
  --chat-her: rgba(var(--rt-gold-rgb), 0.16);
  --danger: #E08A4A;
}

body.rt-v6-funnel[data-active-screen="question"] .rt-public-shell,
body.rt-v6-funnel[data-active-screen="email"] .rt-public-shell,
body.rt-v6-funnel[data-active-screen="result"] .rt-public-shell {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* ── Question screen ────────────────────────────────────────────────────── */
body[data-active-screen="question"] .progress-wrap {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.04);
}

body[data-active-screen="question"] .progress-bar {
  background: linear-gradient(116deg, var(--gold) 0%, var(--gold-soft) 100%);
}

body[data-active-screen="question"] .question-count {
  color: var(--text-muted-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

body[data-active-screen="question"] .question-scenario {
  color: var(--text-secondary-dark);
}

body[data-active-screen="question"] .question-text {
  color: var(--text-primary-dark);
}

body[data-active-screen="question"] .option-btn {
  background: var(--card-dark);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary-dark);
}

body[data-active-screen="question"] .option-btn:hover {
  background: #211C16;
  border-color: var(--gold);
}

body[data-active-screen="question"] .option-btn .option-letter {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted-dark);
}

body[data-active-screen="question"] .option-btn:hover .option-letter {
  background: rgba(var(--rt-gold-rgb), 0.2);
  color: var(--gold);
}

body[data-active-screen="question"] .option-btn.selected {
  border-color: var(--gold);
  background: rgba(var(--rt-gold-rgb), 0.08);
  border-left: 3px solid var(--gold);
}

body[data-active-screen="question"] .option-btn.selected .option-letter {
  background: linear-gradient(116deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #1A0E03;
}

body[data-active-screen="question"] .open-answer {
  background: var(--card-dark);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary-dark);
}

body[data-active-screen="question"] .open-answer:focus {
  border-color: var(--gold);
}

body[data-active-screen="question"] .open-answer::placeholder {
  color: var(--text-muted-dark);
}

body[data-active-screen="question"] .hint-chip {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary-dark);
}

body[data-active-screen="question"] .hint-chip:hover,
body[data-active-screen="question"] .hint-chip.used {
  background: rgba(var(--rt-gold-rgb), 0.12);
  border-color: var(--gold);
  color: var(--gold-soft);
}

/* ── Email gate ──────────────────────────────────────────────────────────── */
body[data-active-screen="email"] .email-gate h2 {
  color: var(--text-primary-dark);
}

body[data-active-screen="email"] .gate-sub {
  color: var(--text-secondary-dark);
}

body[data-active-screen="email"] .gate-teaser {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary-dark);
}

body[data-active-screen="email"] .gate-teaser strong {
  color: var(--gold-soft);
}

body[data-active-screen="email"] .email-input {
  background: var(--card-dark);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary-dark);
}

body[data-active-screen="email"] .email-input:focus {
  border-color: var(--gold);
}

body[data-active-screen="email"] .email-input::placeholder {
  color: var(--text-muted-dark);
}

body[data-active-screen="email"] .analyzing p {
  color: var(--text-muted-dark) !important;
}

body[data-active-screen="email"] .analyzing-dots span {
  background: var(--gold);
}

body[data-active-screen="email"] .email-privacy {
  color: var(--text-muted-dark);
}

body[data-active-screen="email"] .footer-note {
  color: var(--text-muted-dark);
}

/* Email submit button: orange CTA matching the v6 system */
body[data-active-screen="email"] #btn-submit-email {
  background: linear-gradient(
    180deg,
    var(--orange-highlight) 0%,
    var(--orange-core) 52%,
    var(--orange-deep) 100%
  ) !important;
  color: var(--orange-text-on) !important;
  box-shadow:
    0 10px 28px var(--orange-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.32) !important;
}

body[data-active-screen="email"] #btn-submit-email:hover {
  background: linear-gradient(
    180deg,
    #FFA046 0%,
    var(--orange-highlight) 52%,
    var(--orange-core) 100%
  ) !important;
}

/* ── Result screen ───────────────────────────────────────────────────────── */
body[data-active-screen="result"] .result-archetype-line {
  color: var(--text-primary-dark);
}

body[data-active-screen="result"] .result-archetype-line span {
  color: var(--gold);
}

body[data-active-screen="result"] .nico-card {
  background: var(--card-dark) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: var(--text-secondary-dark);
}

body[data-active-screen="result"] .nico-card p:first-of-type {
  color: var(--text-primary-dark);
}

body[data-active-screen="result"] .nico-card p {
  color: var(--text-secondary-dark);
}

body[data-active-screen="result"] .result-card,
body[data-active-screen="result"] .result-example {
  background: var(--card-dark);
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary-dark);
}

body[data-active-screen="result"] .result-card h3 {
  color: var(--text-primary-dark);
}

body[data-active-screen="result"] .result-card p {
  color: var(--text-secondary-dark);
}

/* Cards under the VSL (when revealed) */
body[data-active-screen="result"] #vsl-below-content {
  color: var(--text-secondary-dark);
}

body[data-active-screen="result"] #vsl-below-content h2,
body[data-active-screen="result"] #vsl-below-content h3,
body[data-active-screen="result"] #vsl-below-content strong {
  color: var(--text-primary-dark);
}

/* ── Shared: site header sits over dark page seamlessly ──────────────────── */
body.rt-v6-funnel[data-active-screen="question"] .site-header,
body.rt-v6-funnel[data-active-screen="email"] .site-header,
body.rt-v6-funnel[data-active-screen="result"] .site-header {
  background: rgba(7, 7, 6, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ──────────────────────────────────────────────────────────────────────────
   Phase 3.1: Refinements after first review
   - Hero cream: subtle champagne gradient + warm glow accent
   - Quiz: brighter progress, more breathing room, gold answer letters
   - VSL container: gold-rimmed cinematic frame{
  background:
    radial-gradient(
      ellipse at 78% 12%,
      rgba(var(--rt-gold-rgb), 0.10) 0%,
      rgba(var(--rt-gold-rgb), 0) 55%
    ),
    radial-gradient(
      ellipse at 12% 92%,
      rgba(247, 235, 210, 0.55) 0%,
      rgba(247, 235, 210, 0) 60%
    ),
    linear-gradient(180deg, #FFF8EA 0%, #FBF1DC 100%);
}

/* Quiz screen: section eyebrow + breathing room */
body[data-active-screen="question"] .rt-v6-quiz-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 0 0 18px;
}

.rt-v6-quiz-eyebrow {
  display: none;
}

body.rt-v6-funnel[data-active-screen="question"] #screen-question {
  padding-top: 120px;
}

@media (max-width: 640px) {
  body.rt-v6-funnel[data-active-screen="question"] #screen-question {
    padding-top: 96px;
  }
}

/* Brighter progress bar — gold-into-amber */
body[data-active-screen="question"] .progress-bar {
  background: linear-gradient(116deg, var(--gold) 0%, var(--gold-soft) 100%);
  box-shadow: 0 0 12px rgba(var(--rt-gold-rgb), 0.32);
}

body[data-active-screen="question"] .progress-wrap {
  height: 8px;
  border-radius: 4px;
}

/* Default answer letters: gold instead of muted gray */
body[data-active-screen="question"] .option-btn .option-letter {
  background: rgba(var(--rt-gold-rgb), 0.10);
  color: var(--gold);
  border: 1px solid rgba(var(--rt-gold-rgb), 0.18);
}

body[data-active-screen="question"] .option-btn:hover {
  background: #1F1B16;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(var(--rt-gold-rgb), 0.2), 0 12px 28px rgba(0, 0, 0, 0.38);
  transform: translateY(-1px);
}

body[data-active-screen="question"] .option-btn:hover .option-letter {
  background: rgba(var(--rt-gold-rgb), 0.22);
  color: var(--gold-soft);
  border-color: var(--gold);
}

body[data-active-screen="question"] .option-btn.selected {
  border: 1.5px solid var(--gold);
  background: rgba(var(--rt-gold-rgb), 0.10);
  border-left: 3px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(var(--rt-gold-rgb), 0.18), 0 10px 24px rgba(0, 0, 0, 0.45);
}

body[data-active-screen="question"] .option-btn.selected .option-letter {
  background: linear-gradient(116deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #1A0E03;
  border-color: transparent;
}

/* VSL player: cinematic gold-rimmed frame, inherits section-content width */
body[data-active-screen="result"] #vsl-player {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(var(--rt-gold-rgb), 0.32) !important;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(var(--rt-gold-rgb), 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Sharpen result header copy */
body[data-active-screen="result"] .result-header {
  text-align: center;
  margin-bottom: 18px !important;
}

body[data-active-screen="result"] .result-archetype-line {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

body[data-active-screen="result"] .result-archetype-line span {
  color: var(--gold);
}

body[data-active-screen="result"] .result-tagline {
  font-size: 1.05rem;
  color: var(--text-secondary-dark);
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────────────────────────────────────
   Phase 3.2: 5-band alternation on result screen
   - Champagne band variant (warmer than cream, for proof + reassurance)
   - Light-token reverts so cards inside light bands don't inherit dark tokens
   - Proof mosaic stack (5 boards)
   - Slimmer sticky CTA
   ────────────────────────────────────────────────────────────────────────── */

/* Champagne section variant: warmer than cream */
.section-light.section-champagne {
  background: linear-gradient(
    180deg,
    #F7EBD2 0%,
    #F3E3C3 100%
  );
}

/* Inside a light band, revert the dark page-level token overrides so
   nested cards and text use light-theme values again. */
body.rt-v6-funnel[data-active-screen="result"] .section-light {
  --bg: var(--bg-light);
  --bg-card: var(--card-light);
  --bg-hover: #F3E3C3;
  --text: var(--text-primary-light);
  --text-muted: var(--text-secondary-light);
  --text-dim: var(--bronze);
  --accent: var(--bronze);
  --accent-hover: var(--rt-gold-dark, #9A6700);
  --accent-glow: var(--rt-gold-bg, rgba(var(--rt-gold-rgb), 0.08));
  color: var(--text-primary-light);
}

/* Counter the global dark-mode overrides for elements that land in light bands */
body.rt-v6-funnel[data-active-screen="result"] .section-light .nico-card,
body.rt-v6-funnel[data-active-screen="result"] .section-light .result-card,
body.rt-v6-funnel[data-active-screen="result"] .section-light .result-example {
  background: var(--card-light) !important;
  border-color: var(--border-light) !important;
  color: var(--text-primary-light);
}

body.rt-v6-funnel[data-active-screen="result"] .section-light h2,
body.rt-v6-funnel[data-active-screen="result"] .section-light h3,
body.rt-v6-funnel[data-active-screen="result"] .section-light h4,
body.rt-v6-funnel[data-active-screen="result"] .section-light strong {
  color: var(--text-primary-light) !important;
}

body.rt-v6-funnel[data-active-screen="result"] .section-light p,
body.rt-v6-funnel[data-active-screen="result"] .section-light li,
body.rt-v6-funnel[data-active-screen="result"] .section-light span:not([class]) {
  color: var(--text-secondary-light);
}

body.rt-v6-funnel[data-active-screen="result"] .section-light .faq-item {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--border-light);
  color: var(--text-primary-light);
}

body.rt-v6-funnel[data-active-screen="result"] .section-light .faq-item summary {
  color: var(--text-primary-light) !important;
}

body.rt-v6-funnel[data-active-screen="result"] .section-light .faq-item p {
  color: var(--text-secondary-light) !important;
}

body.rt-v6-funnel[data-active-screen="result"] .section-light .guarantee-box {
  background: rgba(255, 252, 244, 0.7);
  border: 1px solid var(--border-light);
  color: var(--text-primary-light);
}

body.rt-v6-funnel[data-active-screen="result"] .section-light .guarantee-box h4 {
  color: var(--text-primary-light) !important;
}

body.rt-v6-funnel[data-active-screen="result"] .section-light .guarantee-box p {
  color: var(--text-secondary-light) !important;
}

/* Band eyebrow: section label */
.band-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
  margin: 0 0 24px;
}

body[data-active-screen="result"] .section-light .band-eyebrow {
  color: var(--bronze);
}

body[data-active-screen="result"] .section-dark .band-eyebrow {
  color: var(--gold);
}

/* ── Proof mosaic grid (5 boards, vertical stack with breathing room) ──── */
.proof-mosaic-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 0 auto 36px;
}

.proof-mosaic {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 16px 36px rgba(var(--rt-gold-rgb), 0.14),
    0 0 0 1px rgba(var(--rt-gold-rgb), 0.16);
  background: #fff;
}

.proof-mosaic img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Product showcase on champagne band ─────────────────────────────────── */
.product-showcase {
  text-align: center;
  margin: 24px 0 28px;
}

.product-showcase img {
  max-width: 420px;
  width: 100%;
  border-radius: 14px;
  margin-bottom: 14px;
}

.product-showcase .showcase-title {
  font-family: var(--rv6-heading-font);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.product-showcase .showcase-subtitle {
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto;
}

/* ── Archetype testimonial in dark band ─────────────────────────────────── */
.archetype-testimonial {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 640px;
  padding: 0 8px;
}

.archetype-testimonial p:first-child {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-secondary-dark);
  margin-bottom: 8px;
}

.archetype-testimonial p:last-child {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Slimmer sticky CTA ─────────────────────────────────────────────────── */
body.rt-v6-funnel[data-active-screen="result"] #sticky-cta {
  background: rgba(7, 7, 6, 0.86) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(var(--rt-gold-rgb), 0.18) !important;
  padding: 8px 16px !important;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.32);
}

body.rt-v6-funnel[data-active-screen="result"] #sticky-cta > div {
  max-width: 680px !important;
  gap: 12px !important;
}

body.rt-v6-funnel[data-active-screen="result"] #sticky-cta > div > span {
  font-size: 1rem !important;
  color: var(--text-primary-dark) !important;
  font-weight: 700 !important;
}

body.rt-v6-funnel[data-active-screen="result"] #sticky-cta .btn {
  min-height: 44px !important;
  font-size: 0.95rem !important;
  padding: 10px 20px !important;
  border: 0 !important;
  border-radius: 10px !important;
}

@media (max-width: 480px) {
  body.rt-v6-funnel[data-active-screen="result"] #sticky-cta {
    padding: 6px 12px !important;
  }
  body.rt-v6-funnel[data-active-screen="result"] #sticky-cta > div > span {
    font-size: 0.92rem !important;
  }
  body.rt-v6-funnel[data-active-screen="result"] #sticky-cta .btn {
    min-height: 40px !important;
    font-size: 0.9rem !important;
    padding: 8px 16px !important;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   Phase 3.3: Band-specific styling after the restructure
   - Product showcase styled for DARK band 3
   - Value stack restyled for CHAMPAGNE band 4 (clean info, no card chrome)
   - Payment trust strip on champagne
   - Primary CTA block for dark Band 3 (and final Band 5)
   ────────────────────────────────────────────────────────────────────────── */

/* ── Product showcase on dark band ──────────────────────────────────────── */
.section-dark .product-showcase {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 580px;
}

.section-dark .product-showcase img {
  max-width: 480px;
  width: 100%;
  border-radius: 14px;
  margin-bottom: 16px;
  filter: drop-shadow(0 24px 50px rgba(255, 176, 0, 0.16));
}

.section-dark .product-showcase .showcase-title {
  font-family: var(--rv6-heading-font);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary-dark);
  margin-bottom: 6px;
}

.section-dark .product-showcase .showcase-subtitle {
  font-size: 1rem;
  color: var(--text-secondary-dark);
  max-width: 480px;
  margin: 0 auto;
}

/* ── Feature list on dark band ─────────────────────────────────────────── */
.section-dark .feature-list {
  max-width: 560px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-dark .feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.section-dark .feature-list-item .fl-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(116deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #1A0E03;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
}

.section-dark .feature-list-item .fl-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.section-dark .feature-list-item strong {
  color: var(--text-primary-dark);
  font-weight: 700;
  font-size: 1.02rem;
}

.section-dark .feature-list-item span {
  color: var(--text-secondary-dark);
  font-size: 0.94rem;
}

/* ── Countdown bar centered on dark band ────────────────────────────────── */
.section-dark .countdown-bar {
  max-width: 480px;
  margin: 0 auto 28px;
  text-align: center;
  padding: 14px 20px;
  background: rgba(var(--rt-gold-rgb), 0.06);
  border: 1px solid rgba(var(--rt-gold-rgb), 0.18);
  border-radius: 10px;
}

.section-dark .countdown-bar .countdown-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 4px;
}

.section-dark .countdown-bar .countdown-timer {
  font-family: var(--rv6-heading-font);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary-dark);
  letter-spacing: 0.02em;
}

/* ── Primary CTA block (reusable in dark Band 3 and Band 5) ─────────────── */
.primary-cta-block {
  /* 2026-05-22: CTA fills its content column so its left AND right edges
     align with the surrounding prose and cards (owner: "match column edges").
     The prior 480px cap (2026-05-20) fixed full-width bloat but left the
     button's right edge short of every band width (520/560/640/760), so it
     read as floating. Width now derives from the parent .section-content
     rather than a magic number; the button (width:100%) fills it and the
     centered label sits in a full bar. */
  width: 100%;
  max-width: none;
  margin: 0;
  /* Single centering authority for the CTA footer: the button is full-width
     and self-centers its label; the microcopy/meta/trust inside inherit this,
     so individual elements no longer set their own text-align. */
  text-align: center;
}

.primary-cta-block .btn {
  width: 100%;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 18px 24px;
  letter-spacing: 0.02em;
}

.primary-cta-block .cta-subtext-dark {
  font-size: 0.86rem;
  color: var(--text-muted-dark);
  margin-top: 12px;
  /* centering inherited from .primary-cta-block */
}

/* ── Value stack on CHAMPAGNE band 4 — clean info, no white card chrome ── */
.section-light.section-champagne .value-stack {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-width: 640px;
  margin: 0 auto 32px;
}

.section-light.section-champagne .value-stack .vs-header {
  font-family: var(--rv6-heading-font);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary-light) !important;
  text-align: center;
  margin-bottom: 18px;
}

.section-light.section-champagne .value-stack .vs-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(var(--rt-gold-rgb), 0.18);
}

.section-light.section-champagne .value-stack .vs-item > div {
  display: flex;
  flex-direction: column;
}

.section-light.section-champagne .value-stack .vs-item strong {
  color: var(--text-primary-light) !important;
  font-weight: 700;
  font-size: 1.02rem;
}

.section-light.section-champagne .value-stack .vs-desc {
  color: var(--text-secondary-light);
  font-size: 0.88rem;
  margin-top: 2px;
}

.section-light.section-champagne .value-stack .vs-value {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
  text-decoration: line-through;
  text-decoration-color: rgba(var(--rt-gold-rgb), 0.4);
}

.section-light.section-champagne .value-stack .vs-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid rgba(var(--rt-gold-rgb), 0.28);
}

.section-light.section-champagne .value-stack .vs-total .vs-old {
  font-size: 0.9rem;
  color: var(--text-secondary-light) !important;
  text-decoration: line-through;
}

.section-light.section-champagne .value-stack .vs-total .vs-now {
  font-family: var(--rv6-heading-font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange-deep) !important;
  letter-spacing: -0.01em;
  text-decoration: none !important;
}

/* ── Payment trust strip (champagne) ────────────────────────────────────── */
.section-light.section-champagne .payment-trust {
  max-width: 560px;
  margin: 0 auto 36px;
  text-align: center;
  padding: 16px 0 4px;
}

.section-light.section-champagne .payment-trust .secure-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-secondary-light);
  margin-bottom: 12px;
}

.section-light.section-champagne .payment-trust .secure-line svg {
  width: 14px;
  height: 14px;
  fill: var(--bronze);
}

.section-light.section-champagne .payment-trust .card-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.section-light.section-champagne .payment-trust .card-icons img {
  height: 26px;
  border-radius: 3px;
  filter: drop-shadow(0 1px 2px rgba(var(--rt-gold-rgb), 0.12));
}

.section-light.section-champagne .payment-trust .trust-fine-print {
  font-size: 0.78rem;
  color: var(--text-secondary-light);
  margin: 0;
}

/* Guarantee box already styled for champagne in earlier rules */
.section-light.section-champagne .guarantee-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 720px;
  margin: 0 auto 36px;
  padding: 24px;
  background: rgba(255, 252, 244, 0.7) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 14px;
}

@media (max-width: 600px) {
  .section-light.section-champagne .guarantee-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* FAQ on champagne band */
.section-light.section-champagne .faq-item {
  background: rgba(255, 255, 255, 0.42) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
}

/* ── Exit-intent modal: light surface needs explicit dark text colors ─── */
.exit-overlay .exit-modal {
  background: #ffffff;
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 36px 28px 24px;
  text-align: center;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(17, 24, 39, 0.12);
}

.exit-overlay .exit-modal h2 {
  font-family: var(--rv6-heading-font);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary-light) !important;
  margin-bottom: 12px;
}

.exit-overlay .exit-modal p {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text-secondary-light) !important;
  margin-bottom: 20px;
}

.exit-overlay .exit-modal .btn-orange {
  width: 100%;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 16px 24px;
  letter-spacing: 0.02em;
}

.exit-overlay .exit-modal .exit-modal-close {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  font-size: 0.86rem;
  color: var(--text-secondary-light);
  cursor: pointer;
  padding: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.exit-overlay .exit-modal .exit-modal-close:hover {
  color: var(--bronze);
}

/* ──────────────────────────────────────────────────────────────────────────
   Phase 6 shared band system for sales pages.
   Use broad bands for persuasive funnel pages only; app and ops dashboards
   keep their own stable dark surfaces.
   ────────────────────────────────────────────────────────────────────────── */

body.rt-v6-sales-banded {
  background: var(--bg-dark) !important;
  color: var(--text-primary-dark);
}

body.rt-v6-sales-banded .container.rt-public-shell,
body.rt-v6-sales-banded .site-shell.rt-public-shell,
body.rt-v6-sales-banded main.result-content {
  display: contents;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.rt-v6-sales-banded #vsl-below-content {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.rt-v6-sales-band {
  width: 100%;
  padding: 76px 24px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.rt-v6-sales-band:first-of-type {
  padding-top: 58px;
}

.rt-v6-sales-band::before {
  content: "";
  position: absolute;
  inset: 0 auto;
  left: 50%;
  width: min(900px, calc(100% - 44px));
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.rt-v6-sales-band-dark::before {
  background:
    linear-gradient(90deg, transparent, rgba(var(--rt-gold-rgb), 0.06) 18%, rgba(var(--rt-gold-rgb), 0.03) 50%, rgba(var(--rt-gold-rgb), 0.06) 82%, transparent);
  border-left: 1px solid rgba(var(--rt-gold-rgb), 0.15);
  border-right: 1px solid rgba(var(--rt-gold-rgb), 0.15);
}

.rt-v6-sales-band-inner {
  width: min(760px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


.rt-v6-sales-band-dark {
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--rt-gold-rgb), 0.14), transparent 44%),
    linear-gradient(180deg, #050505 0%, #100e0a 100%);
  color: var(--text-primary-dark);
  --bg: var(--bg-dark);
  --bg-card: var(--card-dark);
  --text: var(--text-primary-dark);
  --text-muted: var(--text-secondary-dark);
  --text-dim: var(--text-muted-dark);
  --accent: var(--gold);
  --success: var(--gold);
}

.rt-v6-sales-band-dark h1,
.rt-v6-sales-band-dark h2,
.rt-v6-sales-band-dark h3,
.rt-v6-sales-band-dark h4,
.rt-v6-sales-band-dark strong,
.rt-v6-sales-band-dark summary,
.rt-v6-sales-band-dark .checkout-heading,
.rt-v6-sales-band-dark .download-card-name,
.rt-v6-sales-band-dark .price-total,
.rt-v6-sales-band-dark .step-text strong {
  color: var(--text-primary-dark) !important;
}

.rt-v6-sales-band-dark p,
.rt-v6-sales-band-dark .checkout-subheading,
.rt-v6-sales-band-dark .rating-text,
.rt-v6-sales-band-dark .product-info span,
.rt-v6-sales-band-dark .download-card-desc,
.rt-v6-sales-band-dark .step-text,
.rt-v6-sales-band-dark .footer-note,
.rt-v6-sales-band-dark .faq-answer {
  color: var(--text-secondary-dark) !important;
}
.rt-v6-sales-band-dark .product-summary-label,
.rt-v6-sales-band-dark .social-section-title,
.rt-v6-sales-band-dark .faq-title,
.rt-v6-sales-band-dark .download-section-title,
.rt-v6-sales-band-dark .upsell-badge,
.rt-v6-sales-band-dark .eyebrow,
.rt-v6-sales-band-dark .offer-card h3,
.rt-v6-sales-band-dark .how-it-works h3 {
  color: var(--gold-soft) !important;
}

.rt-v6-sales-band-dark .result-header,
.rt-v6-sales-band-dark .showcase,
.rt-v6-sales-band-dark .feature-list-item,
.rt-v6-sales-band-dark .value-stack,
.rt-v6-sales-band-dark .product-summary,
.rt-v6-sales-band-dark .price-summary,
.rt-v6-sales-band-dark .bump-offer,
.rt-v6-sales-band-dark .countdown-bar,
.rt-v6-sales-band-dark .guarantee-box,
.rt-v6-sales-band-dark .social-section,
.rt-v6-sales-band-dark .future-pacing,
.rt-v6-sales-band-dark .faq-section,
.rt-v6-sales-band-dark .faq-item,
.rt-v6-sales-band-dark .download-section,
.rt-v6-sales-band-dark .download-card,
.rt-v6-sales-band-dark .steps,
.rt-v6-sales-band-dark .upsell-card,
.rt-v6-sales-band-dark .offer-card,
.rt-v6-sales-band-dark .spec,
.rt-v6-sales-band-dark .how-it-works,
.rt-v6-sales-band-dark .testimonial-divider,
.rt-v6-sales-band-dark .scarcity {
  background:
    linear-gradient(180deg, rgba(var(--rt-gold-rgb), 0.08), rgba(var(--rt-gold-rgb), 0)),
    #15130f !important;
  border-color: rgba(var(--rt-gold-rgb), 0.24) !important;
  color: var(--text-primary-dark) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28) !important;
}

.rt-v6-sales-band-dark .faq-answer,
.rt-v6-sales-band-dark .faq-item[open] .faq-answer {
  background: transparent !important;
  border-top-color: rgba(var(--rt-gold-rgb), 0.16) !important;
  color: var(--text-secondary-dark) !important;
}


.rt-v6-sales-band-dark .product-line + .product-line,
.rt-v6-sales-band-dark .price-line,
.rt-v6-sales-band-dark .faq-item,
.rt-v6-sales-band-dark .vs-item,
.rt-v6-sales-band-dark .vs-total {
  border-color: rgba(var(--rt-gold-rgb), 0.16) !important;
}

.rt-v6-sales-band .result-header,
.rt-v6-sales-band .social-proof-bar,
.rt-v6-sales-band .step-indicator,
.rt-v6-sales-band .archetype-banner,
.rt-v6-sales-band .checkout-heading,
.rt-v6-sales-band .checkout-subheading,
.rt-v6-sales-band .bundle-image,
.rt-v6-sales-band .product-summary,
.rt-v6-sales-band .benefits-row,
.rt-v6-sales-band .bump-offer,
.rt-v6-sales-band .referral-row,
.rt-v6-sales-band #referral-msg,
.rt-v6-sales-band .price-summary,
.rt-v6-sales-band .trust-row,
.rt-v6-sales-band .cta-section,
.rt-v6-sales-band .guarantee-box,
.rt-v6-sales-band .social-section,
.rt-v6-sales-band .future-pacing,
.rt-v6-sales-band .faq-section,
.rt-v6-sales-band .countdown-bar,
.rt-v6-sales-band .success-content,
.rt-v6-sales-band .download-section,
.rt-v6-sales-band .steps,
.rt-v6-sales-band .upsell-card,
.rt-v6-sales-band .hero,
.rt-v6-sales-band .ai-coach-intro,
.rt-v6-sales-band .offer-card,
.rt-v6-sales-band .specs,
.rt-v6-sales-band .how-it-works,
.rt-v6-sales-band .testimonial-divider,
.rt-v6-sales-band .scarcity {
  margin-left: auto;
  margin-right: auto;
}

.rt-v6-sales-band .result-header,
.rt-v6-sales-band .vsl-player,
.rt-v6-sales-band .showcase,
.rt-v6-sales-band .feature-list,
.rt-v6-sales-band .value-stack,
.rt-v6-sales-band .guarantee-box,
.rt-v6-sales-band .product-summary,
.rt-v6-sales-band .price-summary,
.rt-v6-sales-band .social-section,
.rt-v6-sales-band .future-pacing,
.rt-v6-sales-band .faq-section,
.rt-v6-sales-band .download-section,
.rt-v6-sales-band .steps,
.rt-v6-sales-band .upsell-card,
.rt-v6-sales-band .offer-card,
.rt-v6-sales-band .how-it-works,
.rt-v6-sales-band .testimonial-divider {
  max-width: 780px;
}

.rt-v6-sales-band .footer-note {
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: center;
  max-width: 780px;
}

.rt-v6-sales-band .cta-section {
  max-width: 680px;
}

.rt-v6-sales-band .faq-section .faq-item{
  overflow: hidden;
}

.rt-v6-sales-band .faq-section .faq-item summary{
  cursor: pointer;
}

@media (max-width: 640px) {
  .rt-v6-sales-band {
    padding: 52px 18px;
  }

  .rt-v6-sales-band:first-of-type {
    padding-top: 44px;
  }

  .rt-v6-sales-band-inner {
    width: min(370px, 100%);
  }
}
