/* ══════════════════════════════════════════════════
   THE DOMINANCE ACADEMY — Quiz Demo
   Brand: Black + Metallic Gold
   Fonts: Cinzel (display) + Raleway (body)
══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --black:          #0a0a0a;
  --black-soft:     #111111;
  --black-card:     #141414;
  --black-card-2:   #1a1a1a;
  --gold-light:     #F5D78E;
  --gold-mid:       #C9A227;
  --gold-dark:      #8B6914;
  --gold-dim:       rgba(201, 162, 39, 0.15);
  --gold-border:    rgba(201, 162, 39, 0.25);
  --gold-gradient:  linear-gradient(135deg, #8B6914 0%, #F5D78E 40%, #C9A227 60%, #F5D78E 80%, #8B6914 100%);
  --gold-gradient-h:linear-gradient(90deg, #8B6914, #F5D78E, #C9A227, #F5D78E, #8B6914);
  --text-primary:   #F5D78E;
  --text-body:      rgba(245, 215, 142, 0.75);
  --text-muted:     rgba(245, 215, 142, 0.4);
  --text-white:     rgba(255,255,255,0.9);
  --red-flag:       #c0392b;
  --radius:         4px;
  --radius-lg:      8px;
  --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text-white);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 68px; /* fixed nav height */
}

/* ── SITE NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  height: 68px;
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.nav-logo-link { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.3));
}

/* Links */
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav-link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 215, 142, 0.55);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-link:hover  { color: var(--gold-light); }
.nav-active      { color: var(--gold-mid); }

/* Desktop CTA button */
.nav-actions { flex-shrink: 0; display: flex; align-items: center; gap: 12px; }
.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold-gradient-h);
  background-size: 200% 100%;
  padding: 9px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background-position var(--transition), transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 16px rgba(201, 162, 39, 0.2);
}
.nav-cta:hover {
  background-position: 100% 0;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}

/* Burger button — hidden on desktop */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-mid);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
/* Burger → X when open */
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-only CTA inside dropdown — hidden on desktop */
.nav-mobile-cta { display: none; }

/* ── MOBILE NAV ── */
@media (max-width: 860px) {
  .nav-cta    { display: none; }
  .nav-burger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10, 10, 10, 0.99);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    padding: 8px 0 16px;
  }
  .nav-links.nav-open { display: flex; }

  .nav-link {
    width: 100%;
    padding: 13px 28px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.07);
    font-size: 0.82rem;
  }
  .nav-active { color: var(--gold-light); }

  .nav-mobile-cta {
    display: block;
    margin: 12px 28px 0;
    width: calc(100% - 56px);
    text-align: center;
    color: var(--black);
    background: var(--gold-gradient-h);
    background-size: 200% 100%;
    padding: 12px 20px;
    border-radius: var(--radius);
    letter-spacing: 0.14em;
    font-weight: 700;
    border-bottom: none;
  }
  .nav-mobile-cta:hover { background-position: 100% 0; color: var(--black); }
}

/* ── SCREENS ── */
.screen {
  display: none;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.screen.active {
  display: flex;
  flex-direction: column;
  opacity: 1;
}
.screen.fade-in { animation: fadeInScreen 0.5s ease forwards; }

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

.screen-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

/* ── TYPOGRAPHY ── */
.headline-gold {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  letter-spacing: 0.15em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

/* ── LOGO ── */
.logo-mark {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.4));
  margin-bottom: 24px;
}
.logo-small {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(201, 162, 39, 0.35));
  margin-bottom: 20px;
}

/* ── BADGE ── */
.intro-badge {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold-mid);
  border: 1px solid var(--gold-border);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ── INTRO SCREEN ── */
.intro-inner { text-align: center; gap: 0; }
.intro-sub {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.intro-meta {
  list-style: none;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.intro-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.meta-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-mid);
  flex-shrink: 0;
}
.intro-disclaimer {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 380px;
  text-align: center;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold-gradient-h);
  background-size: 200% 100%;
  border: none;
  padding: 16px 36px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background-position var(--transition), transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(201, 162, 39, 0.25);
  text-decoration: none;
}
.btn-gold:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.4);
}
.btn-gold:active { transform: translateY(0); }
.btn-full { width: 100%; }
.btn-outline {
  color: var(--gold-light);
  background: transparent;
  border: 1px solid var(--gold-mid);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--gold-dim);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.2);
}
.btn-arrow { font-size: 1.1em; }

/* ── PROGRESS BAR ── */
.progress-wrap {
  position: sticky;
  top: 68px; /* clears fixed site-nav */
  z-index: 100;
  background: var(--black);
  padding: 16px 24px 12px;
  border-bottom: 1px solid var(--gold-border);
}
.progress-track {
  height: 3px;
  background: rgba(201, 162, 39, 0.12);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-fill {
  height: 100%;
  background: var(--gold-gradient-h);
  border-radius: 2px;
  width: 5%;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-align: center;
  text-transform: uppercase;
}

/* ── QUIZ SCREEN ── */
.quiz-inner {
  padding: 32px 24px 60px;
  justify-content: flex-start;
  padding-top: 60px;
}
.question-container {
  width: 100%;
  max-width: 620px;
  animation: slideInQ 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.question-container.slide-out {
  animation: slideOutQ 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes slideInQ {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutQ {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-30px); }
}

.question-dimension {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold-mid);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.question-dimension::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-mid);
}

.question-text {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  line-height: 1.4;
  color: var(--text-white);
  margin-bottom: 40px;
}

/* ── SCALE ── */
.scale-wrap { width: 100%; }
.scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.scale-labels .mid { text-align: center; }
.mobile-hidden { margin-top: 8px; }

.scale-options {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 4px;
}
.scale-btn {
  flex: 1;
  max-width: 90px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.scale-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.2s;
}
.scale-btn:hover { border-color: var(--gold-mid); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(201, 162, 39, 0.2); }
.scale-btn:hover::before { opacity: 0.08; }
.scale-btn.selected { border-color: var(--gold-mid); }
.scale-btn.selected::before { opacity: 0.15; }
.scale-btn.selected .scale-num { color: var(--gold-light); }

.scale-num {
  font-family: 'Cinzel', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  transition: color 0.2s;
}
.scale-btn:hover .scale-num { color: var(--gold-light); }

.kbd-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 28px;
}

/* ── QUIZ NAVIGATION ── */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 12px;
}
.quiz-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid var(--gold-border);
}
.nav-back {
  background: transparent;
  color: var(--text-muted);
}
.nav-back:not(:disabled):hover {
  color: var(--gold-light);
  border-color: var(--gold-mid);
  background: var(--gold-dim);
}
.nav-back:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.nav-next {
  background: transparent;
  color: var(--text-muted);
  margin-left: auto;
}
.nav-next:not(:disabled) {
  background: var(--gold-gradient-h);
  background-size: 200% 100%;
  color: var(--black);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.2);
}
.nav-next:not(:disabled):hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.35);
}
.nav-next:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.nav-arrow { font-size: 1em; }
kbd {
  display: inline-block;
  background: var(--black-card-2);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  padding: 1px 5px;
  font-family: monospace;
  font-size: 0.82rem;
  color: var(--gold-mid);
}

/* ── CALCULATING SCREEN ── */
.calculating-inner {
  text-align: center;
  gap: 32px;
}
.calc-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
}
.logo-pulse {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.6));
  animation: pulseLogo 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes pulseLogo {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(201, 162, 39, 0.5)); transform: scale(1); }
  50%       { filter: drop-shadow(0 0 35px rgba(201, 162, 39, 0.9)); transform: scale(1.05); }
}
.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.3);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 2s ease-out infinite;
}
.ring-1 { width: 100px; height: 100px; animation-delay: 0s; }
.ring-2 { width: 130px; height: 130px; animation-delay: 0.5s; }
.ring-3 { width: 160px; height: 160px; animation-delay: 1s; }
@keyframes ripple {
  0%   { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}
.calc-text {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--text-body);
  min-height: 1.5em;
}
.calc-dots { display: flex; gap: 8px; justify-content: center; }
.calc-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-mid);
  animation: dotBounce 1.2s ease-in-out infinite;
}
.calc-dots span:nth-child(2) { animation-delay: 0.2s; }
.calc-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%           { transform: scale(1);   opacity: 1; }
}

/* ── EMAIL GATE ── */
.email-inner { text-align: center; max-width: 480px; }
.email-headline { margin-bottom: 16px; font-size: clamp(1.8rem, 5vw, 2.8rem); }
.email-copy {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.email-copy strong { color: var(--gold-light); font-weight: 600; }

.email-form { width: 100%; display: flex; flex-direction: column; gap: 14px; }
.field-group { width: 100%; }
.field-group input {
  width: 100%;
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--text-white);
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  padding: 15px 18px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field-group input::placeholder { color: var(--text-muted); }
.field-group input:focus {
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}
.form-error {
  font-size: 0.82rem;
  color: #e74c3c;
  min-height: 1.2em;
  text-align: left;
}
.form-disclaimer {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.6;
}

/* ── DOWNLOAD UNLOCK BANNER ── */
.download-unlock {
  display: none;
  background: linear-gradient(135deg, #0f0d06 0%, #1a1500 50%, #0f0d06 100%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.4);
  padding: 28px 24px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.download-unlock.banner-reveal {
  opacity: 1;
  transform: translateY(0);
}
.download-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.download-icon-wrap {
  flex-shrink: 0;
}
.download-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.5));
}
.download-text {
  flex: 1;
  min-width: 200px;
}
.download-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: var(--gold-mid);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.download-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.download-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.download-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .download-inner  { gap: 16px; }
  .download-btn    { width: 100%; justify-content: center; }
  .download-unlock { padding: 24px 20px; }
}

/* ── RESULTS: HERO ── */
.results-hero {
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.07) 0%, transparent 65%);
  border-bottom: 1px solid var(--gold-border);
  padding: 60px 24px;
}
.results-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.results-greeting {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.archetype-badge {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  color: var(--gold-mid);
  border: 1px solid var(--gold-border);
  padding: 5px 14px;
  border-radius: 2px;
  text-transform: uppercase;
}
.archetype-name {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: clamp(2rem, 7vw, 3.5rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.archetype-desc {
  color: var(--text-body);
  max-width: 500px;
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ── INDEX RING ── */
.index-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.index-ring {
  position: relative;
  width: 140px;
  height: 140px;
}
.index-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.index-track {
  fill: none;
  stroke: rgba(201, 162, 39, 0.1);
  stroke-width: 6;
}
.index-arc {
  fill: none;
  stroke: url(#goldGradientStroke);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.index-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.index-number {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
}
.index-denom {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.index-label {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── RESULTS SECTIONS ── */
.results-section {
  padding: 60px 24px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ── RADAR CHART ── */
.radar-wrap {
  max-width: 500px;
  margin: 0 auto;
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.radar-wrap canvas {
  touch-action: none; /* prevent scroll-hijack on mobile */
}

/* ── DIMENSION CARDS ── */
.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.dim-card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dim-card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 4px 24px rgba(201, 162, 39, 0.08);
}
.dim-card.focus-area {
  border-color: rgba(201, 162, 39, 0.5);
  background: linear-gradient(135deg, var(--black-card) 0%, rgba(201,162,39,0.04) 100%);
}
.dim-focus-badge {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold-mid);
  border: 1px solid var(--gold-border);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.dim-name {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.dim-score-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.dim-score-num {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  min-width: 48px;
}
.dim-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.dim-bar-fill {
  height: 100%;
  background: var(--gold-gradient-h);
  border-radius: 2px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.dim-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CTA SECTION ── */
.cta-section {
  border-top: 1px solid var(--gold-border);
}
.cta-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.cta-card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-primary {
  border-color: rgba(201, 162, 39, 0.4);
  background: linear-gradient(135deg, var(--black-card), rgba(201,162,39,0.04));
}
.cta-card-badge {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold-mid);
  text-transform: uppercase;
}
.cta-card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.cta-card-copy {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.cta-card-note {
  font-size: 0.92rem;
  color: var(--gold-mid);
  font-weight: 500;
}

/* ── FOOTER ── */
.results-footer {
  border-top: 1px solid var(--gold-border);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: 0.6;
}
.results-footer p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.results-footer a {
  color: var(--gold-mid);
  text-decoration: none;
}
.results-footer a:hover { color: var(--gold-light); }

/* ── SUBTLE BACKGROUND TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.02) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.015) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.screen { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════════ */

/* ── Tablet (≤768px) ── */
@media (max-width: 768px) {
  .headline-gold { font-size: clamp(2rem, 7vw, 3rem); }
  .archetype-name { font-size: clamp(1.8rem, 8vw, 3rem); }
  .dimensions-grid { grid-template-columns: 1fr; }
  .cta-cards { grid-template-columns: 1fr; }
}

/* ── Mobile (≤600px) ── */
@media (max-width: 600px) {

  /* Layout & spacing */
  .screen-inner      { padding: 28px 20px; }
  .quiz-inner        { padding: 24px 20px 36px; padding-top: 36px; }
  .progress-wrap     { padding: 12px 20px 10px; }
  .results-hero      { padding: 36px 20px; }
  .results-section   { padding: 36px 20px; }
  .results-hero-inner{ gap: 10px; }

  /* Intro */
  .intro-meta        { gap: 12px; }
  .headline-gold     { margin-bottom: 14px; }
  .intro-sub         { font-size: 0.95rem; margin-bottom: 20px; }
  .logo-mark         { width: 80px; height: 80px; margin-bottom: 18px; }

  /* Question */
  .question-dimension { margin-bottom: 10px; }
  .question-text      { margin-bottom: 28px; font-size: clamp(1.05rem, 4vw, 1.35rem); }

  /* Scale */
  .scale-options  { gap: 6px; }
  .scale-btn      { border-radius: var(--radius); max-width: 72px; }
  .scale-num      { font-size: 1.25rem; }
  .scale-labels   { font-size: 0.78rem; }
  .mobile-hidden  { display: none; }

  /* Hide keyboard hint on touch screens — not relevant */
  .kbd-hint       { display: none; }

  /* Nav buttons */
  .quiz-nav       { margin-top: 20px; gap: 10px; }
  .quiz-nav-btn   { padding: 12px 16px; font-size: 0.78rem; letter-spacing: 0.1em; }

  /* Calculating */
  .calc-text      { font-size: 1rem; }

  /* Email gate */
  .email-inner    { max-width: 100%; padding: 0 4px; }
  .email-headline { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .email-copy     { font-size: 0.9rem; margin-bottom: 24px; }

  /* Results hero */
  .index-ring     { width: 120px; height: 120px; }
  .index-number   { font-size: 1.8rem; }
  .archetype-desc { font-size: 0.9rem; }

  /* Radar chart */
  .radar-wrap     { padding: 16px 12px; }

  /* Dimension cards */
  .dim-card       { padding: 20px 18px; }

  /* CTA cards */
  .cta-card       { padding: 24px 20px; }

  /* Footer */
  .results-footer { padding: 32px 20px; }
  .results-footer p { font-size: 0.8rem; }
}

/* ── Small phones (≤400px) ── */
@media (max-width: 400px) {
  .scale-options  { gap: 4px; }
  .scale-btn      { max-width: 60px; }
  .scale-num      { font-size: 1.1rem; }
  .quiz-nav-btn   { padding: 10px 12px; font-size: 0.72rem; }
  .btn-gold       { font-size: 0.82rem; padding: 14px 24px; }
  .intro-meta     { flex-direction: column; align-items: center; gap: 8px; }
}
