:root {
  --ink: #191730;
  --ink2: #23203d;
  --ink3: #2e2b4a;
  --blue: #00c9ff;
  --pink: #ff6b9d;
  --lav: #b794f6;
  --lav2: #e7c6ff;
  --gold: #f5c842;
  --white: #f8f4ff;
  --muted: #b8b3d4;
  --border: rgba(183,148,246,0.16);
  --cyan:   #67e8f9;
  --orange: #ff8c42;
}
:focus-visible { outline: 2px solid var(--lav); outline-offset: 3px; border-radius: 4px; }
* { margin:0; padding:0; box-sizing:border-box; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
  min-height: 100vh;
  overflow-x: hidden;
}
.ambient {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(0,201,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 100%, rgba(183,148,246,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(255,107,157,0.03) 0%, transparent 70%);
}
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* NAV */
.ldr-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(13,12,20,0.97) 0%, rgba(13,12,20,0.0) 100%);
  backdrop-filter: blur(0px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.ldr-nav.scrolled {
  background: rgba(13,12,20,0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.ldr-nav-logo {
  font-family: 'Syncopate', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-decoration: none;
  background: linear-gradient(135deg, var(--blue), var(--lav), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ldr-nav-right { display: flex; align-items: center; gap: 14px; }
.ldr-nav-back {
  font-family: 'Space Mono', monospace; font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; opacity: 0.6;
  transition: opacity 0.2s; white-space: nowrap;
}
.ldr-nav-back:hover { opacity: 1; }
@media (max-width: 480px) { .ldr-nav { padding: 18px 20px; } .ldr-nav-back { display: none; } }

.app {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 20px 40px;
}
.panel { width: 100%; max-width: 680px; }
.screen { display: none; }
.screen.active { display: block; animation: rise 0.5s cubic-bezier(0.16,1,0.3,1) forwards; }
/* Assessment screens: fixed overlay, no page scroll */
body.assessment-active { overflow: hidden; }
/* Assessment overlay: flex-start so overflow scrolls DOWN, not center-clips */
.assessment-overlay {
  position: fixed; inset: 0; z-index: 50;
  background: var(--ink);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 76px 20px 16px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.assessment-overlay > .screen { width: 100%; max-width: 680px; }
.assessment-overlay #screen-questions.active {
  display: flex; flex-direction: column; justify-content: flex-start;
}
.assessment-overlay #screen-loading.active {
  display: flex; flex-direction: column; justify-content: center;
  min-height: calc(100vh - 96px);
}
/* Compact spacing so question + 4 answers + nav fit without scrolling */
.assessment-overlay .q-header  { margin-bottom: 14px; }
.assessment-overlay .q-dim-tag { margin-bottom: 8px; }
.assessment-overlay .q-text    { margin-bottom: 12px; font-size: clamp(20px, 3.8vw, 30px) !important; }
.assessment-overlay .options   { gap: 7px; }
.assessment-overlay .opt       { padding: 10px 16px !important; min-height: 0 !important; font-size: 15px !important; }
.assessment-overlay .q-nav     { margin-top: 12px; }
@keyframes rise {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
/* Questions screen gets a stronger entrance — stagger children */
#screen-questions.active .q-header { animation: rise 0.45s 0.05s cubic-bezier(0.16,1,0.3,1) both; }
#screen-questions.active .q-text   { animation: rise 0.5s  0.12s cubic-bezier(0.16,1,0.3,1) both; }
#screen-questions.active .options  { animation: rise 0.5s  0.20s cubic-bezier(0.16,1,0.3,1) both; }
#screen-questions.active .q-nav    { animation: rise 0.5s  0.28s cubic-bezier(0.16,1,0.3,1) both; }
/* Dim tag pulse — draws the eye to the new dimension label */
@keyframes dimPulse {
  0%   { opacity:0; letter-spacing:0.32em; }
  60%  { opacity:1; letter-spacing:0.20em; }
  100% { opacity:1; letter-spacing:0.20em; }
}
#screen-questions.active .q-dim-tag { animation: dimPulse 0.55s 0.08s cubic-bezier(0.16,1,0.3,1) both; }

/* EMAIL SCREEN */
.email-kicker {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
}
.email-kicker::before {
  content: ''; display: block; width: 24px; height: 1px;
  background: linear-gradient(90deg, var(--lav), var(--pink));
}
.email-hed {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 52px); font-weight: 700; line-height: 1.1;
  margin-bottom: 16px;
}
.email-dek {
  font-size: 16px; color: rgba(248,244,255,0.6); font-weight: 300;
  line-height: 1.7; margin-bottom: 36px; max-width: 500px;
}
.email-input {
  width: 100%; background: var(--ink2); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 18px;
  font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 300;
  color: var(--white); outline: none; margin-bottom: 14px;
  transition: border-color 0.2s;
}
.email-input:focus { border-color: var(--lav); }
.email-input::placeholder { color: var(--muted); }
.email-note {
  font-size: 12px; color: var(--muted); line-height: 1.6; margin-top: 14px;
}
.email-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

/* LOCKED REPORT */
.locked-report-wrap {
  position: relative; border-radius: 20px; overflow: hidden; margin-bottom: 24px;
}
.locked-blur {
  padding: 36px; background: var(--ink2); border: 1px solid var(--border);
  border-radius: 20px; filter: blur(5px); user-select: none; pointer-events: none;
  line-height: 1.9; font-weight: 300; color: rgba(248,244,255,0.85); font-size: 16px;
}
.locked-overlay {
  position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(180deg, rgba(13,12,20,0.2) 0%, rgba(13,12,20,0.88) 40%, rgba(13,12,20,1) 65%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 36px 28px 32px;
  text-align: center;
}
.locked-icon { font-size: 24px; margin-bottom: 10px; }
.locked-hed {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 26px); font-weight: 700; line-height: 1.15;
  margin-bottom: 6px;
}
.locked-dek {
  font-size: 13px; color: rgba(248,244,255,0.6); font-weight: 300;
  line-height: 1.6; margin-bottom: 20px; max-width: 460px;
}

/* TIER CARDS */
.tier-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  width: 100%; max-width: 520px;
}
.tier-card {
  position: relative;
  background: rgba(26,24,38,0.85); border: 1px solid rgba(183,148,246,0.18);
  border-radius: 14px; padding: 18px 16px 16px;
  display: flex; flex-direction: column; gap: 8px;
  text-align: left; backdrop-filter: blur(8px);
}
.tier-card.tier-featured {
  border-color: rgba(183,148,246,0.45);
  background: rgba(30,26,50,0.9);
}
.tier-badge {
  font-family: 'Space Mono', monospace;
  font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2px;
}
.tier-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 700; color: var(--white); line-height: 1.1;
}
.tier-price-tag {
  font-family: 'Syncopate', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--gold); line-height: 1;
}
.tier-desc {
  font-size: 12px; color: rgba(248,244,255,0.6); font-weight: 300;
  line-height: 1.55; flex: 1;
}
.tier-card .btn { font-size: 11px; padding: 9px 14px; margin-top: 4px; width: 100%; justify-content: center; }
.locked-price {
  font-family: 'Syncopate', sans-serif; font-size: 13px; letter-spacing: 0.08em;
  color: var(--gold); margin-bottom: 20px;
}

/* INTRO */
.creator-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 64px;
  display: flex; align-items: center; gap: 16px;
}
.creator-tag::before {
  content: ''; display: block; width: 24px; height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--lav));
}
.intro-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: clamp(16px,2.2vw,20px);
  color: rgba(248,244,255,0.38); letter-spacing: 0.06em;
  margin-bottom: 18px; font-weight: 300;
}
.intro-title {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(44px,9.5vw,88px);
  font-weight: 700; line-height: 0.88; letter-spacing: 0.03em;
  color: transparent; -webkit-text-stroke: 1px rgba(248,244,255,0.85);
  margin-bottom: 0;
}
.intro-title .we-word {
  -webkit-text-stroke: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--lav) 50%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline-block;
}
.intro-rule { width: 100%; height: 1px; background: linear-gradient(90deg, rgba(183,148,246,0.4), transparent); margin: 36px 0; }
.intro-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px,2vw,20px); line-height: 1.85; color: rgba(248,244,255,0.58);
  font-weight: 300; max-width: 560px;
}
.intro-body strong { color: rgba(248,244,255,0.88); font-weight: 400; }

/* DIMENSION LIST */
.dim-list { margin: 44px 0 40px; }
.dim-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(248,244,255,0.2); margin-bottom: 16px;
}
.dim-item {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.di-icon { width: 28px; height: 28px; flex-shrink: 0; }
.dim-item:first-of-type { border-top: 1px solid rgba(255,255,255,0.05); }
.dim-roman {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.14em; color: var(--lav);
  min-width: 26px; flex-shrink: 0; padding-top: 3px;
}
.dim-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px,2.4vw,22px); font-weight: 300; font-style: italic;
  color: rgba(248,244,255,0.75); letter-spacing: 0.01em;
}
.dim-footer {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(248,244,255,0.16); padding-top: 16px;
}

.intro-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.intro-meta {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.intro-meta span { color: rgba(183,148,246,0.6); }

/* BUTTON */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--pink), var(--gold), var(--lav), var(--blue), var(--cyan), var(--orange), var(--pink));
  background-size: 300% 300%;
  animation: weSpectrum 6s linear infinite;
  color: var(--ink);
  border: none; padding: 16px 32px; border-radius: 100px;
  font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 600;
  cursor: pointer; letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(183,148,246,0.35); }
.btn-ghost {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border); padding: 12px 24px; font-size: 13px;
}
.btn-ghost:hover { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.2); box-shadow: none; transform: none; }
.btn-arrow { font-size: 18px; transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* QUESTIONS */
.q-header { margin-bottom: 52px; }
.q-progress-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.q-step-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.q-counter { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.q-counter span { color: var(--white); font-weight: 700; font-size: 13px; }
.q-exit-btn { background: none; border: none; cursor: pointer; font-family: inherit; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 4px 0; opacity: 0.7; transition: opacity 0.2s, color 0.2s; }
.q-exit-btn:hover { opacity: 1; color: var(--white); }

/* LANGUAGE PICKER */
.lang-picker { display: flex; gap: 8px; justify-content: flex-end; margin-bottom: 28px; align-items: center; }
.lang-select {
  background: var(--ink2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 5px 32px 5px 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--muted); cursor: pointer;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%238a85a8'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  outline: none; transition: border-color 0.2s, color 0.2s;
}
.lang-select:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }
.lang-select:focus { border-color: var(--lav); color: var(--white); }
.lang-select option { background: #1a1826; color: #f8f4ff; }
.lang-select:disabled { opacity: 0.5; cursor: not-allowed; }
.lang-loading { font-size: 14px; color: var(--lav); animation: spin 1s linear infinite; display: inline-block; }

/* EXIT SCREEN */
.exit-wrap { text-align: center; padding: 24px 0 12px; }
.exit-icon { font-size: 36px; margin-bottom: 24px; opacity: 0.7; }
.exit-hed { font-size: clamp(26px,6vw,40px); font-weight: 800; letter-spacing: -0.02em; color: var(--white); margin-bottom: 16px; line-height: 1.15; }
.exit-dek { font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 400px; margin: 0 auto 36px; }
.exit-dek strong { color: var(--lav2); font-weight: 600; }
.exit-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.exit-actions .btn { min-width: 220px; justify-content: center; }
.q-track { height: 2px; background: rgba(255,255,255,0.06); border-radius: 1px; overflow: hidden; }
.q-fill {
  height: 100%;
  background: var(--dim-color, var(--blue));
  border-radius: 1px; transition: width 0.6s cubic-bezier(0.4,0,0.2,1), background 0.4s ease;
}
.q-dim-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dim-color, var(--pink)); font-weight: 500; margin-bottom: 18px;
  transition: color 0.4s ease;
}
.q-dim-tag::before { content:''; display:block; width:20px; height:1px; background:var(--dim-color, var(--pink)); transition: background 0.4s ease; }
.q-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px,4.5vw,36px); font-weight: 600;
  line-height: 1.25; color: var(--white); margin-bottom: 36px; letter-spacing: -0.01em;
}
.options { display: flex; flex-direction: column; gap: 10px; }
.opt {
  background: var(--ink2); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 22px; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300;
  color: rgba(248,244,255,0.92); line-height: 1.55; text-align: left;
  display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start;
  transition: all 0.2s ease; width: 100%;
}
.opt:hover { background: var(--ink3); border-color: rgba(183,148,246,0.3); color: var(--white); transform: translateX(6px); }
.opt.selected { background: rgba(var(--dim-color-rgb, 0,201,255), 0.07); border-color: var(--dim-color, var(--blue)); color: var(--white); transform: translateX(6px); }
.opt-letter {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; color: var(--muted);
  flex-shrink: 0; transition: all 0.2s; margin-top: 2px;
}
.opt.selected .opt-letter { background: var(--dim-color, var(--blue)); border-color: var(--dim-color, var(--blue)); color: var(--ink); font-weight: 600; }
.q-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.q-nav #next-btn { margin-left: auto; }

/* LOADING */
#screen-loading { text-align: center; padding: 60px 0; }
.loading-symbol { width: 80px; height: 80px; margin: 0 auto 40px; position: relative; }
.ls-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid transparent; }
.ls-ring1 { border-top-color: var(--blue); animation: spin 2s linear infinite; }
.ls-ring2 { inset: 12px; border-right-color: var(--lav); animation: spin 1.4s linear infinite reverse; }
.ls-ring3 { inset: 24px; border-bottom-color: var(--pink); animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-hed { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; margin-bottom: 12px; }
.loading-dek { color: var(--muted); font-size: 15px; font-weight: 300; }
.loading-log { margin-top: 48px; display: inline-flex; flex-direction: column; gap: 12px; text-align: left; }
.log-line {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 12px;
  opacity: 0; transition: opacity 0.5s ease, color 0.5s ease;
}
.log-line.on { opacity: 1; color: var(--lav2); }
.log-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lav); flex-shrink: 0; box-shadow: 0 0 8px var(--lav); }

/* RESULTS */
/* RESULTS: reserved space for async content prevents layout shift */
#report-wrap { min-height: 320px; position: relative; }
#vexa-art-section { min-height: 400px; }


.result-eyebrow { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--blue); font-weight: 500; margin-bottom: 8px; margin-top: 12px; }
.result-archetype {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px,9vw,76px); font-weight: 700;
  line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 0;
}
.result-archetype em {
  font-style: italic; font-weight: 300;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.illus-wrap {
  width: 100%; display: flex; align-items: center; justify-content: center;
  margin: 8px 0 12px; min-height: 100px;
}
.we-spectrum-wrap {
  background: var(--ink2); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 28px; margin-bottom: 20px;
}
.spectrum-header {
  font-family: 'Space Mono', monospace; font-size: 9px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(248,244,255,0.18); margin-bottom: 14px; text-align: center;
}
.spectrum-labels {
  display: flex; justify-content: space-between;
  font-family: 'Space Mono', monospace; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 8px;
}
.spectrum-labels .me-label { color: var(--pink); }
.spectrum-labels .we-label { color: var(--blue); }
.spectrum-track {
  height: 8px; background: rgba(255,255,255,0.06);
  border-radius: 4px; position: relative; overflow: visible; margin-bottom: 16px;
}
.spectrum-fill {
  height: 100%; border-radius: 4px; width: 0%;
  background: linear-gradient(90deg, var(--pink) 0%, var(--lav) 55%, var(--blue) 100%);
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1) 0.5s;
}
.spectrum-marker {
  position: absolute; top: 50%; left: 0%;
  transform: translate(-50%,-50%);
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--white); border: 2.5px solid var(--ink);
  box-shadow: 0 0 0 2px var(--lav), 0 4px 14px rgba(0,0,0,0.5);
  transition: left 1.2s cubic-bezier(0.4,0,0.2,1) 0.5s;
}
.spectrum-score-row { display: flex; justify-content: space-between; align-items: center; }
.spectrum-score-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 700; line-height: 1; color: var(--white);
}
.spectrum-score-sub {
  font-family: 'Space Mono', monospace; font-size: 9px;
  color: var(--muted); letter-spacing: 0.12em; margin-top: 4px;
}
.spectrum-badge {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em; border: 1px solid;
}
.radar-section { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 20px; align-items: start; }
.radar-card { max-width: 400px; margin: 0 auto; }
.score-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 10px; }
.radar-card { background: var(--ink2); border: 1px solid var(--border); border-radius: 16px; padding: 20px; }
.radar-card-label {
  font-family: 'Space Mono', monospace; font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.score-grid { display: flex; flex-direction: column; gap: 10px; }
.score-cell {
  border-radius: 16px; padding: 16px 20px;
  position: relative; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.score-cell:hover { transform: translateY(-2px); }
.sc-icon-wrap {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.sc-dim-label {
  font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.sc-score-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.sc-score { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--white); line-height: 1; }
.sc-max { font-family: 'Space Mono', monospace; font-size: 9px; color: var(--muted); }
.sc-type-label { font-size: 11px; font-weight: 600; margin-bottom: 2px; }
.sc-type-desc { font-size: 11px; color: rgba(248,244,255,0.42); font-weight: 300; line-height: 1.45; margin-bottom: 10px; }
.sc-bar-wrap { height: 4px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden; }
.sc-bar { height: 100%; border-radius: 2px; width: 0%; transition: width 1.2s cubic-bezier(0.4,0,0.2,1) 0.4s; }
.example-card {
  background: linear-gradient(135deg, rgba(183,148,246,0.04), rgba(0,201,255,0.04));
  border: 1px solid rgba(183,148,246,0.15); border-radius: 20px; padding: 32px; margin-bottom: 20px;
}
.example-eyebrow {
  font-family: 'Space Mono', monospace; font-size: 9px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.example-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px,2.8vw,24px); font-weight: 600; font-style: italic;
  color: var(--white); line-height: 1.3; margin-bottom: 12px;
}
.example-body {
  font-size: 14px; color: rgba(248,244,255,0.58); line-height: 1.85;
  font-weight: 300; margin-bottom: 20px;
}
.example-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.example-divider::before, .example-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.example-divider-label {
  font-family: 'Space Mono', monospace; font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); white-space: nowrap;
}
.example-we {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic; font-weight: 300;
  color: rgba(248,244,255,0.82); line-height: 1.8;
}
/* ARCHETYPE SLOGAN */
.archetype-slogan {
  font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue); margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* GROWTH STACK */
.growth-stack { margin: 8px 0 28px; }
.growth-stack-eyebrow {
  font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.growth-stack-hed { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 6px; line-height: 1.2; }
.growth-stack-sub { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.growth-stack-sub strong { color: var(--lav2); font-weight: 600; }
.growth-card {
  background: var(--ink2); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; margin-bottom: 14px;
}
.growth-dim-label {
  font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.growth-dim-score { opacity: 0.45; font-weight: 400; }
.growth-principle {
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic;
  font-weight: 500; color: var(--white); line-height: 1.45; margin-bottom: 18px;
}
.growth-leaders { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.growth-leader-row { display: flex; align-items: flex-start; gap: 12px; }
.growth-leader-icon {
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 15px; flex-shrink: 0;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
}
.growth-leader-info { flex: 1; }
.growth-leader-name { font-size: 13px; font-weight: 700; color: var(--white); }
.growth-leader-book { font-size: 12px; color: var(--lav); margin-top: 2px; font-style: italic; }
.growth-leader-why { font-size: 12px; color: var(--muted); margin-top: 5px; line-height: 1.55; }
.growth-practice-label {
  font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 600;
}
.growth-practice {
  border-left: 2px solid; border-radius: 0 8px 8px 0;
  padding: 12px 16px; font-size: 13px; color: rgba(248,244,255,0.82);
  line-height: 1.65; background: rgba(255,255,255,0.02);
}
.growth-resources-section { margin-bottom: 18px; }
.growth-resource-type {
  font-family: 'Space Mono', monospace; font-size: 8px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
  font-weight: 600; display: flex; align-items: center; gap: 8px;
}
.growth-resource-type::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.06);
}
.growth-resource-rows { display: flex; flex-direction: column; gap: 10px; }
.growth-resource-row { display: flex; align-items: flex-start; gap: 10px; }
.growth-resource-icon {
  width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 13px; flex-shrink: 0;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
}
.growth-resource-info { flex: 1; }
.growth-resource-name { font-size: 12px; font-weight: 600; color: var(--white); line-height: 1.3; }
.growth-resource-meta { font-size: 11px; color: var(--lav); margin-top: 1px; }
.growth-resource-why { font-size: 11px; color: var(--muted); margin-top: 4px; line-height: 1.55; }
.we-reset-banner {
  background: rgba(183,148,246,0.06); border: 1px solid rgba(183,148,246,0.18);
  border-radius: 14px; padding: 22px 24px; margin-top: 6px; text-align: center;
}
.we-reset-q {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic;
  font-weight: 600; color: var(--lav2); margin-bottom: 10px; line-height: 1.3;
}
.we-reset-sub { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 420px; margin: 0 auto; }
.we-reset-sub strong { color: var(--lav2); font-weight: 600; }

.report-section-label {
  font-family: 'Space Mono', monospace; font-size: 9px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px; margin-top: 8px;
}
.report-wrap { background: var(--ink2); border: 1px solid var(--border); border-radius: 20px; padding: 44px 48px; margin-bottom: 24px; }
.report-wrap p { font-family: 'Cormorant Garamond', serif; font-size: 18px; line-height: 1.85; font-weight: 300; color: rgba(248,244,255,0.82); margin-bottom: 20px; letter-spacing: 0.01em; }
.report-wrap p:last-child { margin-bottom: 0; }
.report-wrap a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.report-wrap a:hover { color: var(--lav); }
.report-section p { font-family: 'Cormorant Garamond', serif; font-size: 16px; line-height: 1.8; font-weight: 300; color: rgba(248,244,255,0.82); letter-spacing: 0.01em; }
.report-section p strong { color: var(--white); font-weight: 600; }
.report-wrap strong { color: var(--white); font-weight: 600; }
.thinking { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 15px; font-weight: 300; }
.dots span {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--lav); margin: 0 2px; animation: blink 1.4s ease infinite;
}
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%,80%,100%{opacity:0.15;transform:scale(0.85)} 40%{opacity:1;transform:scale(1)} }
/* WE Way™ brand palette animation — matches the generative art canvas */
@keyframes weSpectrum {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.ldr-nav-logo, .intro-title .we-word, .ipc-archetype {
  background: linear-gradient(135deg, var(--pink), var(--gold), var(--lav), var(--blue), var(--cyan), var(--orange), var(--pink)) !important;
  background-size: 400% 400% !important;
  -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important;
  animation: weSpectrum 7s linear infinite;
}
#btn-begin {
  background: linear-gradient(135deg, var(--pink), var(--gold), var(--lav), var(--blue), var(--cyan), var(--pink));
  background-size: 300% 300%;
  color: var(--ink);
  animation: weSpectrum 6s linear infinite;
}
#btn-begin:hover {
  background: linear-gradient(135deg, var(--pink), var(--gold), var(--lav), var(--blue), var(--cyan), var(--pink));
  background-size: 300% 300%;
  animation: weSpectrum 3s linear infinite;
  box-shadow: 0 12px 40px rgba(183,148,246,0.4);
}
.cta-wrap {
  background: linear-gradient(135deg, rgba(0,201,255,0.06), rgba(183,148,246,0.08));
  border: 1px solid rgba(0,201,255,0.15); border-radius: 20px;
  padding: 36px; margin-top: 8px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.cta-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.cta-hed { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; line-height: 1.2; }
.cta-dek { font-size: 15px; color: rgba(248,244,255,0.65); font-weight: 300; line-height: 1.65; }
.result-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; align-items: center; }
.thinkers-section {
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.thinkers-kicker {
  font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
}
.thinkers-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.thinker-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--ink2); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px;
  text-decoration: none; transition: border-color 0.2s, background 0.2s;
}
.thinker-card:hover { border-color: var(--lav); background: rgba(183,148,246,0.06); }
.thinker-initial {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syncopate', sans-serif; font-size: 13px; font-weight: 700;
  background: rgba(183,148,246,0.15); color: var(--lav);
}
.thinker-info { min-width: 0; }
.thinker-name {
  font-family: 'Syncopate', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.thinker-desc {
  font-size: 11px; color: var(--muted); margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.report-disclaimer {
  margin-top: 20px; padding: 14px 16px;
  background: rgba(255,255,255,0.03); border-radius: 10px;
  font-size: 11px; color: var(--muted); line-height: 1.6;
}
.ai-consent-note {
  font-size: 11px; color: var(--muted); line-height: 1.6;
  margin-bottom: 14px; max-width: 420px;
}
.err-banner {
  background: rgba(255,107,157,0.08); border: 1px solid rgba(255,107,157,0.25);
  border-radius: 12px; padding: 20px 24px; font-size: 14px;
  color: rgba(248,244,255,0.75); line-height: 1.7;
}
/* NAME INPUT */
.name-row { margin-bottom: 28px; }
.name-input {
  background: var(--ink2); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 18px;
  font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 300;
  color: var(--white); outline: none; width: 100%;
  transition: border-color 0.2s;
}
.name-input:focus { border-color: var(--lav); }
.name-input::placeholder { color: var(--muted); }

/* SHARE SECTION */
.share-wrap {
  background: var(--ink2); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 32px; margin-bottom: 20px;
}
.share-label {
  font-family: 'Space Mono', monospace; font-size: 9px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.share-card {
  background: var(--ink3); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 16px 20px;
  font-size: 14px; line-height: 1.75; color: rgba(248,244,255,0.72);
  font-weight: 300; margin-bottom: 16px; white-space: pre-wrap;
}
.share-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

@media (max-width: 600px) {
  /* Layout */
  .app { padding: 80px 16px 32px; }
  .panel { width: 100%; }

  /* Results grids — all collapse to single column */
  .radar-section { grid-template-columns: 1fr; }
  .score-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .tier-grid { grid-template-columns: 1fr; }
  .thinkers-grid { grid-template-columns: 1fr; }

  /* Paddings tighten up */
  .report-wrap { padding: 20px; }
  .example-card { padding: 20px; }
  .cta-wrap { padding: 20px; }
  .share-wrap { padding: 20px 18px; }
  .we-spectrum-wrap { padding: 18px; }
  .growth-card { padding: 18px; }
  .locked-overlay { padding: 24px 18px; }
  .locked-blur { padding: 24px 18px; }

  /* Stacks */
  .intro-footer { flex-direction: column; align-items: flex-start; }
  .email-footer { flex-direction: column; align-items: flex-start; }
  .result-actions { flex-direction: column; align-items: stretch; }
  .result-actions .btn,
  .result-actions .btn-ghost { justify-content: center; width: 100%; }
  .share-actions { flex-direction: column; align-items: stretch; }
  .share-actions .btn-ghost { justify-content: center; }
  .exit-actions .btn { width: 100%; }

  /* Art canvas download row */
  .art-dl-row { flex-direction: column; align-items: stretch; }
  .res-toggle { width: 100%; justify-content: center; }
  .res-btn { flex: 1; }
  #dl-png-btn, #dl-gif-btn { width: 100%; justify-content: center; }

  /* Typography */
  .result-archetype { font-size: clamp(36px, 9vw, 56px); }
  .spectrum-score-val { font-size: 32px; }
  .sc-score { font-size: 22px; }
  .cta-hed { font-size: 24px; }
  .loading-hed { font-size: 26px; }
  .growth-stack-hed { font-size: 18px; }
  .growth-principle { font-size: 16px; }
}

/* ── Desktop — scale up and use the extra space ─────────────────── */
@media (min-width: 900px) {
  .panel { max-width: 780px; }
  .app { padding: 60px 40px; }

  .intro-title { font-size: clamp(72px, 11vw, 108px); }
  .intro-body { font-size: clamp(18px, 1.5vw, 22px); }
  .intro-kicker { font-size: clamp(18px, 1.8vw, 22px); }

  .q-text { font-size: clamp(28px, 3.5vw, 42px); }
  .opt { font-size: 16px; padding: 22px 26px; }

  .result-archetype { font-size: clamp(52px, 8vw, 88px); }
  .we-spectrum-wrap { padding: 32px 36px; }
  .spectrum-score-val { font-size: 46px; }
  .radar-section { gap: 20px; }
  .radar-card { padding: 24px; }
  .score-cell { padding: 18px 22px; }
  .sc-score { font-size: 32px; }
  .sc-type-label { font-size: 13px; }
  .sc-type-desc { font-size: 12px; }

  .example-card { padding: 40px; }
  .example-headline { font-size: clamp(21px, 2.4vw, 28px); }
  .example-body { font-size: 15px; }
  .example-we { font-size: 19px; }

  .locked-blur { font-size: 17px; padding: 44px; }
  .locked-hed { font-size: clamp(24px, 3vw, 34px); }

  .report-wrap { padding: 44px; }
  .report-wrap p { font-size: 17px; line-height: 1.85; }

  .growth-stack-hed { font-size: 24px; }
  .growth-stack-sub { font-size: 15px; }
  .growth-card { padding: 28px; }
  .growth-principle { font-size: 20px; }
  .growth-leader-why { font-size: 13px; }
  .growth-practice { font-size: 14px; }

  .cta-wrap { padding: 44px; }
  .cta-hed { font-size: 34px; }
  .cta-dek { font-size: 16px; }

  .email-hed { font-size: clamp(36px, 5vw, 58px); }
  .email-dek { font-size: 17px; }
  .we-reset-q { font-size: 26px; }
}

@media (min-width: 1200px) {
  .panel { max-width: 860px; }
  .intro-title { font-size: clamp(80px, 9vw, 114px); }
  .result-archetype { font-size: clamp(60px, 7.5vw, 96px); }
  .report-wrap p { font-size: 18px; }
  .example-headline { font-size: clamp(23px, 2.2vw, 30px); }
  .locked-hed { font-size: clamp(26px, 2.8vw, 38px); }
}

/* ── Intro preview card (desktop hero, right column top) ───────────── */
.intro-preview-card { display: none; }
.intro-preview-card > *:not([style*="mix-blend-mode"]) { position: relative; z-index: 1; }
.ipc-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(248,244,255,0.28); margin-bottom: 20px;
}
.ipc-archetype {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; line-height: 1.05;
  background: linear-gradient(135deg, var(--blue) 0%, var(--lav) 55%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 18px;
}
.ipc-score {
  font-family: 'Syncopate', sans-serif;
  font-size: 13px; letter-spacing: 0.1em; color: var(--lav);
  margin-bottom: 20px;
}
.ipc-spectrum-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.ipc-spectrum-lbl {
  font-family: 'Space Mono', monospace;
  font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); flex-shrink: 0;
}
.ipc-spectrum-track {
  flex: 1; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--lav) 50%, var(--blue) 100%);
  position: relative;
}
.ipc-spectrum-dot {
  position: absolute; right: 8%; top: 50%; transform: translate(50%, -50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue); border: 2px solid var(--ink);
  box-shadow: 0 0 12px var(--blue);
}
.ipc-dims { display: flex; flex-direction: column; gap: 9px; }
.ipc-dim-row { display: grid; grid-template-columns: 14px 1fr; grid-template-rows: auto auto; column-gap: 6px; row-gap: 3px; align-items: center; }
.ipc-dim-row > svg { grid-column: 1; grid-row: 1; }
.ipc-dim-name {
  font-family: 'Space Mono', monospace;
  font-size: 7px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(248,244,255,0.3);
  grid-column: 2; grid-row: 1;
}
.ipc-dim-track { height: 2px; background: rgba(255,255,255,0.07); border-radius: 2px; grid-column: 2; grid-row: 2; }
.ipc-dim-fill { height: 2px; border-radius: 2px; }

/* ── Wide desktop: 2-column intro ──────────────────────────────────── */
@media (min-width: 1100px) {
  .panel { max-width: 1080px; }

  /* Constrain non-intro screens to a comfortable reading width */
  #screen-questions, #screen-loading, #screen-email, #screen-exit {
    max-width: 760px; margin-left: auto; margin-right: auto;
  }

  /* 2-column split matching homepage: left = all content, right = card */
  #screen-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
    align-items: start;
  }
  #screen-intro .intro-kicker       { grid-column: 1; grid-row: 1; margin-bottom: 16px; }
  #screen-intro h1.intro-title {
    grid-column: 1; grid-row: 2; align-self: start;
    font-size: clamp(44px, 4vw, 64px);
    line-height: 0.92; margin-bottom: 24px;
  }
  #screen-intro .intro-rule         { display: none; }
  #screen-intro p.intro-body        { grid-column: 1; grid-row: 3; margin-bottom: 20px; }
  #screen-intro .dim-list           { grid-column: 1; grid-row: 4; margin-bottom: 20px; }
  #screen-intro .name-row           { grid-column: 1; grid-row: 5; margin-bottom: 16px; }
  #screen-intro .intro-footer       { grid-column: 1; grid-row: 6; }

  /* Preview card spans the full right column */
  .intro-preview-card {
    display: block;
    grid-column: 2; grid-row: 1 / 7;
    align-self: start;
    position: sticky; top: 100px;
    background: var(--ink2);
    border: 1px solid rgba(183,148,246,0.22);
    border-radius: 20px; padding: 32px 28px;
    box-shadow: 0 0 60px rgba(183,148,246,0.06);
    overflow: hidden;
  }

  /* Tighten intro left column so Begin button stays above the fold */
  #screen-intro h1.intro-title   { margin-bottom: 16px; }
  #screen-intro p.intro-body     { margin-bottom: 16px; }
  /* Dim-list is redundant at desktop — preview card covers it on the right */
  #screen-intro .dim-list        { display: none; }
  #screen-intro .name-row        { margin-bottom: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
/* VEXA ART */
.vexa-art-section { margin: 40px 0 32px; text-align: center; }
.vexa-art-kicker {
  font-family: 'Space Mono', monospace; font-size: 8px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(248,244,255,0.4); margin-bottom: 8px;
}
.vexa-art-sub {
  font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 300;
  color: rgba(248,244,255,0.35); margin-bottom: 20px;
}
.art-dl-row {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; align-items: center;
  margin-top: 16px;
}
.res-toggle {
  display: flex; border: 1px solid rgba(183,148,246,0.3); border-radius: 8px; overflow: hidden;
}
.res-btn {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.1em;
  padding: 8px 14px; background: transparent; color: rgba(183,148,246,0.55);
  border: none; cursor: pointer; transition: background 0.15s, color 0.15s;
}
.res-btn:not(:last-child) { border-right: 1px solid rgba(183,148,246,0.3); }
.res-btn-active { background: rgba(183,148,246,0.18) !important; color: #b794f6 !important; }

@media print {
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; color-adjust: exact !important; }
  .ambient, .grain, .share-wrap, .result-actions, .cta-wrap,
  #screen-intro, #screen-questions, #screen-loading, #screen-email, #screen-exit,
  .locked-report-wrap, nav, .lang-wrap, #report-progress, #report-actions-inline,
  #results-card-section, .art-dl-row, .promo-form, .promo-toggle,
  #assessment-overlay, #ww-consent, footer { display: none !important; }
  body { background: #0d0c14 !important; color: #f8f4ff !important; }
  .app { padding: 20px !important; }
  .panel { max-width: 100% !important; box-shadow: none !important; background: #0d0c14 !important; }
  .result-eyebrow { color: #00c9ff !important; }
  .result-archetype { font-size: 36px !important; }
  .result-archetype em { background: linear-gradient(135deg, #ff6b9d, #f5c842, #b794f6, #00c9ff) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; }
  .we-spectrum-wrap, .radar-card, .example-card, .growth-card {
    background: #1a1826 !important; border: 1px solid rgba(183,148,246,0.18) !important;
    break-inside: avoid; page-break-inside: avoid;
  }
  .report-wrap { background: #1a1826 !important; border: 1px solid rgba(183,148,246,0.18) !important; }
  .report-section { break-inside: avoid; page-break-inside: avoid; }
  .score-cell { break-inside: avoid; page-break-inside: avoid; }
  .score-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .radar-section { display: block !important; }
  .radar-card { max-width: 100% !important; }
  .vexa-art-section { break-inside: avoid; page-break-inside: avoid; }
  .thinkers-section { break-inside: avoid; page-break-inside: avoid; }
  .illus-wrap { display: none !important; }
  .screen.active { display: block !important; }
  .growth-stack { break-before: page; }
  @page { margin: 18mm 15mm; }
}
/* ── Cookie consent banner ─────────────────────────────────────── */
#ww-consent {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(18,16,30,0.97);
  border-top: 1px solid rgba(183,148,246,0.18);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 16px 24px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
#ww-consent.visible { transform: translateY(0); }
#ww-consent p {
  flex: 1; min-width: 220px;
  font-family: 'Cormorant Garamond', serif; font-size: 14px;
  color: rgba(248,244,255,0.6); line-height: 1.55; margin: 0;
}
#ww-consent p a { color: var(--lav); text-decoration: none; }
#ww-consent p a:hover { text-decoration: underline; }
.ww-consent-btns { display: flex; gap: 10px; flex-shrink: 0; }
.ww-consent-accept {
  font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 600;
  padding: 8px 20px; border-radius: 8px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--lav), var(--blue));
  color: var(--ink); letter-spacing: 0.02em; transition: opacity 0.2s;
}
.ww-consent-accept:hover { opacity: 0.88; }
.ww-consent-decline {
  font-family: 'Cormorant Garamond', serif; font-size: 14px;
  padding: 8px 16px; border-radius: 8px; cursor: pointer;
  background: transparent; border: 1px solid rgba(183,148,246,0.25);
  color: rgba(248,244,255,0.45); letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
}
.ww-consent-decline:hover { border-color: rgba(183,148,246,0.5); color: rgba(248,244,255,0.7); }
@media print { #ww-consent { display: none !important; } }
