/* =============================================================================
   Exit Queen — shared brand stylesheet
   -----------------------------------------------------------------------------
   WHAT: every visual primitive used across the paid funnel — the cover page,
         the unlock bridge, the assessment, the recovery page.
   WHY:  extracted from the original index.html so all four pages stay visually
         identical without duplicating ~200 lines of CSS. One file to edit when
         the brand evolves.
   ========================================================================== */

/* -- Brand tokens ---------------------------------------------------------- */
:root {
  --ink:          #0E0C09;
  --ink-mid:      #2C2820;
  --ink-light:    #4A4440;
  --gold:         #B8871E;
  --gold-bright:  #D4A032;
  --gold-pale:    #F5ECD8;
  --gold-wash:    #FBF6ED;
  --cream:        #FAF7F2;
  --cream-dark:   #F0EBE0;
  --ash:          #E8E2D9;
  --red:          #8C2318;
  --red-pale:     #F9EDEB;
  --amber:        #9A5C0A;
  --amber-pale:   #FDF3E3;
  --teal:         #0D5C4A;
  --teal-pale:    #E3F2EE;
}

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

body {
  font-family: 'Karla', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* -- Cover (sales page hero) ---------------------------------------------- */
.cover { background: var(--ink); min-height: 100vh; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.cover-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(184,135,30,0.12) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184,135,30,0.07) 0%, transparent 50%); }
.cover-rule { height: 3px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 50%, transparent 100%); }
.cover-inner { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 5rem 6rem; position: relative; z-index: 1; max-width: 860px; }
.cover-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 2.5rem; }
.cover-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem, 7vw, 5.5rem); font-weight: 300; line-height: 1.05; color: white; margin-bottom: 1.5rem; }
.cover-title em { font-style: italic; color: var(--gold-bright); }
.cover-subtitle { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; margin-bottom: 3.5rem; font-weight: 300; }
.cover-price-block { display: inline-flex; align-items: center; gap: 1.5rem; border: 1px solid rgba(184,135,30,0.35); border-radius: 4px; padding: 1rem 1.75rem; background: rgba(184,135,30,0.08); width: fit-content; margin-bottom: 4rem; }
.cover-price { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--gold-bright); line-height: 1; }
.cover-price-label { font-size: 12px; color: rgba(255,255,255,0.45); max-width: 160px; line-height: 1.4; }
.cover-divider { width: 1px; height: 40px; background: rgba(184,135,30,0.3); }
.cover-footer { padding: 2rem 6rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.cover-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
.cover-brand span { color: var(--gold-bright); }
.cover-cta-btn { background: var(--gold); color: var(--ink); border: none; font-family: 'Karla', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 32px; border-radius: 3px; cursor: pointer; transition: background 0.2s; }
.cover-cta-btn:hover:not(:disabled) { background: var(--gold-bright); }
.cover-cta-btn:disabled { opacity: 0.6; cursor: progress; }

/* -- Cancellation / status banner (sales page on ?canceled=1) ------------- */
.notice-banner { background: rgba(184,135,30,0.12); border: 1px solid rgba(184,135,30,0.35); border-radius: 4px; padding: 0.85rem 1.25rem; margin-bottom: 2.5rem; font-size: 13px; color: rgba(255,255,255,0.8); max-width: 520px; }
.notice-banner.error { background: rgba(140,35,24,0.18); border-color: rgba(140,35,24,0.5); color: #f7c8c2; }

/* -- Page wrapper used by /assessment, /recover --------------------------- */
.page { max-width: 860px; margin: 0 auto; padding: 0 2.5rem 5rem; }

/* -- Sticky progress (assessment) ----------------------------------------- */
.sticky-bar { position: fixed; top: 0; left: 0; right: 0; background: var(--ink); padding: 12px 2rem; display: flex; align-items: center; gap: 1.5rem; z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,0.3); transform: translateY(-100%); transition: transform 0.3s; }
.sticky-bar.visible { transform: translateY(0); }
.sticky-brand { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold-bright); white-space: nowrap; }
.sticky-progress-wrap { flex: 1; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.sticky-progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); border-radius: 2px; transition: width 0.4s; }
.sticky-count { font-size: 12px; color: rgba(255,255,255,0.4); white-space: nowrap; }

/* -- Intro (assessment top) ----------------------------------------------- */
.intro-section { padding: 5rem 0 4rem; border-bottom: 1px solid var(--ash); margin-bottom: 4rem; }
.section-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.intro-heading { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 400; line-height: 1.2; color: var(--ink); margin-bottom: 1.5rem; max-width: 620px; }
.intro-body { color: var(--ink-light); max-width: 640px; margin-bottom: 2rem; font-size: 15px; }
.how-to-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.how-to-card { background: white; border: 1px solid var(--ash); border-radius: 6px; padding: 1.25rem 1.5rem; border-top: 3px solid var(--gold); }
.how-to-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--gold); font-weight: 300; line-height: 1; margin-bottom: 0.5rem; }
.how-to-text { font-size: 13px; color: var(--ink-light); line-height: 1.6; }

/* -- Progress bar --------------------------------------------------------- */
.progress-bar-wrap { background: var(--ash); height: 3px; border-radius: 2px; margin: 2rem 0 0; overflow: hidden; }
.progress-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); border-radius: 2px; transition: width 0.4s ease; }

/* -- Dimension blocks ----------------------------------------------------- */
.dimension { margin-bottom: 3.5rem; background: white; border: 1px solid var(--ash); border-radius: 8px; overflow: hidden; }
.dimension-header { background: var(--ink); padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1.25rem; }
.dimension-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold-bright); font-weight: 300; line-height: 1; min-width: 36px; }
.dimension-info { flex: 1; }
.dimension-title { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; color: white; font-weight: 400; line-height: 1.2; margin-bottom: 0.25rem; }
.dimension-subtitle { font-size: 12px; color: rgba(255,255,255,0.4); }
.dimension-score-badge { background: rgba(184,135,30,0.15); border: 1px solid rgba(184,135,30,0.3); border-radius: 4px; padding: 6px 14px; font-size: 12px; color: var(--gold-bright); font-weight: 600; white-space: nowrap; }
.dimension-body { padding: 0 2rem 1.5rem; }

/* -- Questions ------------------------------------------------------------ */
.question { padding: 1.5rem 0; border-bottom: 1px solid var(--cream-dark); }
.question:last-child { border-bottom: none; }
.question-text { font-size: 14.5px; font-weight: 500; color: var(--ink-mid); margin-bottom: 1rem; line-height: 1.55; }
.question-num { display: inline-block; font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold); font-weight: 600; margin-right: 0.5rem; }
.scale-row { display: flex; border: 1px solid var(--ash); border-radius: 5px; overflow: hidden; }
.scale-option { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 10px 4px; cursor: pointer; border-right: 1px solid var(--ash); transition: background 0.15s; position: relative; }
.scale-option:last-child { border-right: none; }
.scale-option:hover { background: var(--gold-wash); }
.scale-option input[type=radio] { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; margin: 0; }
.scale-circle { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--ash); background: white; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--ink-light); transition: all 0.15s; margin-bottom: 4px; }
.scale-option.selected .scale-circle { background: var(--gold); border-color: var(--gold); color: white; }
.scale-option.selected { background: var(--gold-wash); }
.scale-label { font-size: 9px; color: var(--ink-light); text-align: center; line-height: 1.3; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.scale-option.selected .scale-label { color: var(--gold); }

/* -- Submit button -------------------------------------------------------- */
.submit-row { display: flex; justify-content: center; margin: 2.5rem 0; flex-direction: column; align-items: center; gap: 0.75rem; }
.submit-btn { background: var(--gold); color: var(--ink); border: none; font-family: 'Karla', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 18px 48px; border-radius: 4px; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 16px rgba(184,135,30,0.25); }
.submit-btn:hover:not(:disabled) { background: var(--gold-bright); transform: translateY(-2px); }
.submit-btn:disabled { background: var(--ash); color: var(--ink-light); cursor: not-allowed; transform: none; box-shadow: none; }
.incomplete-msg { font-size: 13px; color: var(--red); display: none; }

/* -- Results -------------------------------------------------------------- */
.results-section { display: none; }
.results-section.visible { display: block; }
.section-divider { display: flex; align-items: center; gap: 1rem; margin: 4rem 0 3rem; }
.section-divider-line { flex: 1; height: 1px; background: var(--ash); }
.section-divider-text { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); white-space: nowrap; }

.tally-section { margin: 3rem 0; background: var(--ink); border-radius: 10px; padding: 3rem 3.5rem; color: white; }
.tally-heading { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 300; color: rgba(255,255,255,0.5); margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 0.12em; }
.tally-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.tally-item { text-align: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 1rem 0.5rem; }
.tally-score { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--gold-bright); line-height: 1; margin-bottom: 0.4rem; }
.tally-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); font-weight: 500; line-height: 1.3; }
.tally-total-row { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(184,135,30,0.3); padding-top: 1.5rem; }
.tally-total-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); }
.tally-total-score { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--gold-bright); font-weight: 300; line-height: 1; }
.tally-total-max { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: rgba(255,255,255,0.25); font-weight: 300; align-self: flex-end; margin-bottom: 0.5rem; }

.result-section { margin: 3rem 0; }
.result-heading { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: 0.5rem; color: var(--ink); font-weight: 400; }
.result-intro { font-size: 14px; color: var(--ink-light); margin-bottom: 2rem; max-width: 580px; }
.result-band { border: 1px solid var(--ash); border-radius: 8px; overflow: hidden; margin-bottom: 1rem; transition: all 0.3s; }
.result-band.active { border-color: var(--gold); box-shadow: 0 4px 20px rgba(184,135,30,0.15); }
.result-band-header { display: flex; align-items: center; gap: 1.25rem; padding: 1.25rem 1.75rem; background: white; }
.result-band.active .result-band-header { background: var(--ink); }
.band-range { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--gold); min-width: 80px; }
.result-band.active .band-range { color: var(--gold-bright); }
.band-label { flex: 1; }
.band-name { font-weight: 700; font-size: 14px; color: var(--ink); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.result-band.active .band-name { color: white; }
.band-tagline { font-size: 13px; color: var(--ink-light); }
.result-band.active .band-tagline { color: rgba(255,255,255,0.5); }
.band-indicator { width: 10px; height: 10px; border-radius: 50%; }
.band-indicator.teal { background: var(--teal); }
.band-indicator.gold { background: var(--gold); }
.band-indicator.amber { background: var(--amber); }
.band-indicator.red { background: var(--red); }
.result-band-body { display: none; padding: 1.5rem 1.75rem; background: var(--gold-wash); border-top: 1px solid var(--gold-pale); }
.result-band.active .result-band-body { display: block; background: var(--ink-mid); }
.band-body-text { font-size: 14px; color: var(--ink-light); line-height: 1.75; margin-bottom: 1rem; }
.result-band.active .band-body-text { color: rgba(255,255,255,0.65); }
.band-list { list-style: none; }
.band-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 13.5px; color: var(--ink-light); padding: 5px 0; line-height: 1.55; }
.result-band.active .band-list li { color: rgba(255,255,255,0.6); }
.band-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* -- Cost table ----------------------------------------------------------- */
.cost-section { margin: 3.5rem 0; background: white; border: 1px solid var(--ash); border-radius: 8px; overflow: hidden; }
.cost-header { background: var(--ink); padding: 1.75rem 2rem; }
.cost-header-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: white; font-weight: 400; margin-bottom: 0.3rem; }
.cost-header-sub { font-size: 13px; color: rgba(255,255,255,0.4); }
.cost-table { width: 100%; border-collapse: collapse; }
.cost-table th { background: var(--cream-dark); padding: 10px 16px; text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-light); border-bottom: 1px solid var(--ash); }
.cost-table td { padding: 13px 16px; font-size: 13.5px; color: var(--ink-light); border-bottom: 1px solid var(--cream-dark); vertical-align: top; line-height: 1.6; }
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) td { background: var(--cream); }
.cost-tag { display: inline-block; padding: 2px 8px; border-radius: 3px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.cost-tag-critical { background: var(--red-pale); color: var(--red); }
.cost-tag-high { background: var(--amber-pale); color: var(--amber); }

/* -- Bottom CTA ----------------------------------------------------------- */
.cta-section { background: var(--ink); border-radius: 10px; padding: 3.5rem 4rem; margin: 3rem 0; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(184,135,30,0.1) 0%, transparent 60%); pointer-events: none; }
.cta-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 1rem; position: relative; }
.cta-heading { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: white; line-height: 1.2; margin-bottom: 1.25rem; max-width: 520px; position: relative; }
.cta-heading em { color: var(--gold-bright); font-style: italic; }
.cta-body { font-size: 14px; color: rgba(255,255,255,0.5); max-width: 480px; line-height: 1.75; margin-bottom: 2.5rem; position: relative; }
.cta-what-you-get { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2.5rem; position: relative; }
.cta-item { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 13px; color: rgba(255,255,255,0.6); }
.cta-item-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }
.cta-btn-row { display: flex; align-items: center; gap: 2rem; position: relative; }
.cta-btn { background: var(--gold); color: var(--ink); border: none; font-family: 'Karla', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 16px 36px; border-radius: 3px; cursor: pointer; transition: background 0.2s; text-decoration: none; display: inline-block; }
.cta-btn:hover { background: var(--gold-bright); }
.cta-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: rgba(255,255,255,0.3); font-weight: 300; }
.cta-price span { color: var(--gold); }

/* -- Video blocks --------------------------------------------------------- */
.video-block { margin: 2rem 0 2.5rem; max-width: 520px; }
.video-block.results-video { max-width: 100%; margin: 1rem 0 2.5rem; }
.video-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 0.75rem; }
.video-eyebrow.dark { color: var(--gold); }
.video-frame { position: relative; width: 100%; padding-bottom: 56.25%; background: rgba(0,0,0,0.4); border-radius: 6px; overflow: hidden; border: 1px solid rgba(184,135,30,0.25); cursor: pointer; transition: all 0.3s; }
.video-frame.vertical-video { max-width: 390px; padding-bottom: min(177.78%, 690px); margin-left: auto; margin-right: auto; }
.video-frame.dark-frame { background: var(--ink); border: 1px solid var(--ash); }
.video-frame:hover { border-color: var(--gold); transform: translateY(-2px); }
.video-frame.bunny-frame { cursor: default; }
.video-frame video, .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; background: linear-gradient(135deg, rgba(14,12,9,0.7) 0%, rgba(44,40,32,0.5) 100%); }
.video-frame.dark-frame .video-placeholder { background: linear-gradient(135deg, rgba(14,12,9,0.95) 0%, rgba(44,40,32,0.85) 100%); }
.video-play-btn { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; transition: transform 0.2s, background 0.2s; }
.video-frame:hover .video-play-btn { background: var(--gold-bright); transform: scale(1.05); }
.video-play-icon { width: 0; height: 0; border-left: 16px solid var(--ink); border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 4px; }
.video-caption { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: white; font-style: italic; font-weight: 300; text-align: center; max-width: 380px; line-height: 1.4; padding: 0 1rem; }
.video-frame.dark-frame .video-caption { color: rgba(255,255,255,0.85); }
.video-label-row { display: flex; justify-content: space-between; align-items: center; margin-top: 0.75rem; }
.video-label { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 500; letter-spacing: 0.05em; }
.video-label.dark { color: var(--ink-light); }
.video-duration { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: var(--gold-bright); font-style: italic; }
.video-duration.dark { color: var(--gold); }

.post-quiz-reveal { margin: 3.5rem 0; background: white; border: 1px solid var(--ash); border-radius: 10px; padding: 2.5rem; }
.post-quiz-heading { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; line-height: 1.2; color: var(--ink); margin-bottom: 0.75rem; }
.post-quiz-body { color: var(--ink-light); max-width: 560px; margin-bottom: 1.5rem; }
.post-quiz-reveal .submit-btn { margin-top: 0.5rem; }

/* -- Footer --------------------------------------------------------------- */
.doc-footer { border-top: 1px solid var(--ash); padding: 2rem 0; display: flex; justify-content: space-between; align-items: center; color: var(--ink-light); font-size: 12px; opacity: 0.6; }
.doc-footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: var(--gold); }

/* -- Unlock / recover full-page bridges ----------------------------------- */
.bridge { min-height: 100vh; background: var(--ink); color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.bridge-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 1rem; }
.bridge-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 300; margin-bottom: 1rem; max-width: 640px; line-height: 1.2; }
.bridge-title em { color: var(--gold-bright); font-style: italic; }
.bridge-body { font-size: 14px; color: rgba(255,255,255,0.55); max-width: 480px; margin-bottom: 2rem; line-height: 1.7; }
.bridge-spinner { width: 32px; height: 32px; border: 2px solid rgba(184,135,30,0.2); border-top-color: var(--gold-bright); border-radius: 50%; animation: spin 0.8s linear infinite; margin-bottom: 2rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.bridge-form { display: flex; flex-direction: column; gap: 1rem; width: 100%; max-width: 380px; }
.bridge-input { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,135,30,0.35); color: white; font-family: 'Karla', sans-serif; font-size: 14px; padding: 14px 18px; border-radius: 4px; }
.bridge-input::placeholder { color: rgba(255,255,255,0.3); }
.bridge-input:focus { outline: none; border-color: var(--gold-bright); }
.bridge-error { background: rgba(140,35,24,0.18); border: 1px solid rgba(140,35,24,0.5); color: #f7c8c2; padding: 0.85rem 1.25rem; border-radius: 4px; font-size: 13px; max-width: 480px; margin-bottom: 1.5rem; display: none; }
.bridge-error.visible { display: block; }
.bridge-success { background: rgba(13,92,74,0.2); border: 1px solid rgba(13,92,74,0.5); color: #b4e0d2; padding: 0.85rem 1.25rem; border-radius: 4px; font-size: 13px; max-width: 480px; margin-bottom: 1.5rem; display: none; }
.bridge-success.visible { display: block; }
.bridge-link { color: var(--gold-bright); text-decoration: underline; font-size: 13px; margin-top: 1.5rem; }

/* -- Responsive ----------------------------------------------------------- */
@media (max-width: 680px) {
  .cover-inner { padding: 3rem 2rem; }
  .cover-footer { padding: 1.5rem 2rem; flex-direction: column; gap: 1rem; }
  .page { padding: 0 1.25rem 4rem; }
  .how-to-grid, .tally-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 2.5rem 2rem; }
  .cta-what-you-get { grid-template-columns: 1fr; }
  .cta-heading { font-size: 1.8rem; }
  .dimension-header { flex-wrap: wrap; }
  .post-quiz-reveal { padding: 1.5rem; }
}
