/* ============================================================
   ZURAI QUEST — MAIN STYLESHEET
   Brand: Navy #0D1B3E / #1A2B5F | Gold #E8A020 / #D4900A
   ============================================================ */

:root {
  --navy-deep:    #0D1B3E;
  --navy-mid:     #1A2B5F;
  --navy-light:   #243570;
  --gold:         #E8A020;
  --gold-light:   #F5C65A;
  --gold-dark:    #C4880A;
  --white:        #FFFFFF;
  --grey-100:     #F4F6FA;
  --grey-300:     #BCC4D4;
  --grey-500:     #6B7A99;
  --text-primary: #FFFFFF;
  --text-muted:   rgba(255,255,255,0.65);
  --glass-bg:     rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --shadow-gold:  0 0 40px rgba(232,160,32,0.18);
  --shadow-card:  0 8px 40px rgba(0,0,0,0.35);
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-main:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--navy-deep);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font-main); cursor: pointer; border: none; outline: none; }
input, select, textarea { font-family: var(--font-main); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; }

.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.text-sm     { font-size: 0.875rem; }
.text-lg     { font-size: 1.15rem; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ---- ANIMATED BACKGROUND ---- */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, #1A3A7A 0%, var(--navy-deep) 60%);
  overflow: hidden;
}
.page-bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.06) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: float-orb 18s ease-in-out infinite;
}
.page-bg::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,43,95,0.8) 0%, transparent 70%);
  bottom: -100px; left: -50px;
  animation: float-orb 22s ease-in-out infinite reverse;
}
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.97); }
}

/* ---- GRID PATTERN ---- */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(232,160,32,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: rgba(13,27,62,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(232,160,32,0.4);
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: var(--glass-bg);
}
.nav-links .nav-badge {
  font-size: 0.7rem;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 4px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  border-radius: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 20px 24px;
  gap: 4px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #C98510);
  color: var(--navy-deep);
  box-shadow: 0 4px 24px rgba(232,160,32,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,160,32,0.5);
  color: var(--navy-deep);
}
.btn-gold:active { transform: translateY(0); }
.btn-outline {
  border: 1.5px solid var(--glass-border);
  color: var(--text-muted);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232,160,32,0.06);
}
.btn-ghost { color: var(--text-muted); background: none; }
.btn-ghost:hover { color: var(--white); background: var(--glass-bg); }
.btn-lg { padding: 15px 34px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; border-radius: var(--radius-sm); }
.btn-full { width: 100%; }
.btn-icon { padding: 10px 12px; }

/* ---- CARD ---- */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(232,160,32,0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.card-gold { border-color: rgba(232,160,32,0.3); background: rgba(232,160,32,0.04); }

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-gold { background: rgba(232,160,32,0.15); color: var(--gold); border: 1px solid rgba(232,160,32,0.3); }
.badge-green { background: rgba(16,185,129,0.12); color: #34D399; border: 1px solid rgba(16,185,129,0.25); }
.badge-blue  { background: rgba(59,130,246,0.12); color: #60A5FA; border: 1px solid rgba(59,130,246,0.25); }
.badge-red   { background: rgba(239,68,68,0.12); color: #F87171; border: 1px solid rgba(239,68,68,0.25); }
.badge-purple{ background: rgba(139,92,246,0.12); color: #A78BFA; border: 1px solid rgba(139,92,246,0.25); }

/* ---- SECTION HEADER ---- */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-tag::before { content: '— '; }
.section-title { margin-bottom: 14px; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; }
.section-subtitle.center { margin: 0 auto; }
.section-header { margin-bottom: 52px; }
.section-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px 0 22px;
  border-radius: 2px;
}
.section-divider.center { margin: 18px auto 22px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.hero-eyebrow::before { content: '✦'; font-size: 0.7rem; }
.hero-headline { margin-bottom: 20px; }
.hero-headline strong { color: var(--gold); }
.hero-sub { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 36px; max-width: 500px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* ---- HERO VISUAL ---- */
.hero-visual { position: relative; }
.hero-card-stack { position: relative; height: 440px; }
.hero-card-main {
  position: absolute;
  width: 100%; max-width: 380px;
  right: 0; top: 20px;
  background: linear-gradient(145deg, rgba(26,43,95,0.9), rgba(13,27,62,0.95));
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: var(--radius-xl);
  padding: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 50px rgba(232,160,32,0.08);
}
.hero-card-bg {
  position: absolute;
  width: 90%; max-width: 340px;
  right: 20px; top: 0;
  background: rgba(26,43,95,0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  height: 200px;
  transform: rotate(3deg);
}
.archetype-preview {
  text-align: center;
  padding: 10px 0;
}
.archetype-icon-hero {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  box-shadow: 0 0 40px rgba(232,160,32,0.4);
  animation: pulse-gold 3s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 30px rgba(232,160,32,0.3); }
  50% { box-shadow: 0 0 60px rgba(232,160,32,0.6); }
}
.archetype-name-hero {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.archetype-sub-hero { font-size: 0.85rem; color: var(--text-muted); margin: 6px 0 20px; }
.match-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}
.match-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.ai-score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 4px;
}
.ai-score-label { font-size: 0.78rem; color: var(--text-muted); }
.ai-score-val { font-weight: 700; color: var(--gold); font-size: 0.9rem; }
.hero-floating-pill {
  position: absolute;
  background: rgba(13,27,62,0.95);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.hero-floating-pill.pill-1 { left: -20px; bottom: 80px; animation: float1 4s ease-in-out infinite; }
.hero-floating-pill.pill-2 { right: -10px; bottom: 20px; animation: float2 5s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; animation: blink 1.5s ease-in-out infinite; }
.pill-dot.green { background: #34D399; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ---- HOW IT WORKS ---- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card {
  text-align: center;
  padding: 36px 24px;
}
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,160,32,0.2), rgba(232,160,32,0.05));
  border: 1px solid rgba(232,160,32,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 20px;
}
.step-icon { font-size: 2rem; margin-bottom: 14px; }
.step-title { font-size: 1.1rem; margin-bottom: 10px; }
.step-desc { font-size: 0.9rem; color: var(--text-muted); }
@media (max-width: 700px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

/* ---- ARCHETYPES PREVIEW ---- */
.archetypes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.archetype-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.archetype-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--arch-color, var(--gold));
  opacity: 0.8;
}
.archetype-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--arch-color, var(--gold));
}
.arch-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.arch-name { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.arch-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.arch-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.arch-careers-preview { display: flex; gap: 6px; flex-wrap: wrap; }
.arch-career-tag {
  font-size: 0.72rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3px 10px;
  color: var(--text-muted);
}

/* ---- STATS BAND ---- */
.stats-band {
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-item .label { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; }
@media (max-width: 640px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ---- ASSESSMENT PAGE ---- */
.quest-page {
  min-height: 100vh;
  padding: 100px 0 60px;
  display: flex;
  flex-direction: column;
}
.quest-header {
  text-align: center;
  margin-bottom: 48px;
}
.quest-progress-wrap {
  margin-bottom: 40px;
}
.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 6px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 12px rgba(232,160,32,0.5);
}
.dimension-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.dim-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  transition: var(--transition);
}
.dim-tag.active {
  background: rgba(232,160,32,0.12);
  border-color: rgba(232,160,32,0.4);
  color: var(--gold);
}

.question-wrap {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.question-number {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.question-text {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
}
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
@media (max-width: 560px) { .options-grid { grid-template-columns: 1fr; } }
.option-btn {
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: left;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  line-height: 1.5;
}
.option-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,160,32,0.08), transparent);
  opacity: 0;
  transition: var(--transition);
}
.option-btn:hover {
  border-color: rgba(232,160,32,0.5);
  color: var(--white);
  transform: translateY(-2px);
}
.option-btn:hover::before { opacity: 1; }
.option-btn.selected {
  border-color: var(--gold);
  color: var(--white);
  background: rgba(232,160,32,0.08);
  box-shadow: 0 0 20px rgba(232,160,32,0.15);
}
.option-btn.selected::before { opacity: 1; }
.option-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-right: 10px;
  flex-shrink: 0;
  transition: var(--transition);
}
.option-btn.selected .option-letter {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.option-inner { display: flex; align-items: flex-start; }
.question-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ai-processing {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.ai-spinner {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(232,160,32,0.1);
  border-top-color: var(--gold);
  margin: 0 auto 24px;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ai-label { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 8px; }
.ai-sublabel { font-size: 0.85rem; color: var(--grey-500); }

/* ---- RESULTS PAGE ---- */
.results-page { padding: 100px 0 80px; }
.archetype-reveal {
  text-align: center;
  padding: 60px 20px;
  position: relative;
}
.archetype-reveal-icon {
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  margin: 0 auto 24px;
  position: relative;
}
.archetype-reveal-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--arch-color, var(--gold));
  opacity: 0.4;
  animation: ring-pulse 2s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%,100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 0.1; }
}
.archetype-reveal-type {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.7;
}
.archetype-reveal-name {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.archetype-reveal-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
  font-style: italic;
}
.archetype-reveal-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}
.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 700px;
  margin: 40px auto 0;
}
.dimension-bar {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.dim-label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; display: flex; justify-content: space-between; }
.dim-track { height: 4px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.dim-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }
@media (max-width: 560px) { .dimensions-grid { grid-template-columns: 1fr; } }

.careers-section { padding: 60px 0; border-top: 1px solid var(--glass-border); }
.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.career-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}
.career-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.career-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,160,32,0.3);
  box-shadow: var(--shadow-card);
  color: inherit;
}
.career-card:hover::after { opacity: 1; }
.career-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; gap: 10px; }
.career-name { font-size: 1.05rem; font-weight: 700; line-height: 1.3; }
.career-match-pct {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(232,160,32,0.1);
  border-radius: 6px;
  padding: 3px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.career-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.career-metrics { display: flex; gap: 10px; flex-wrap: wrap; }
.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 8px 12px;
  flex: 1;
  min-width: 70px;
}
.metric-val { font-size: 1.1rem; font-weight: 800; color: var(--white); }
.metric-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-top: 2px; }
.metric-val.high { color: #34D399; }
.metric-val.medium { color: #F59E0B; }
.metric-val.risk { color: #F87171; }

/* ---- CAREER DETAIL PAGE ---- */
.career-detail-hero {
  padding: 100px 0 60px;
}
.career-detail-header { margin-bottom: 40px; }
.career-breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.career-breadcrumb a { color: var(--text-muted); }
.career-breadcrumb a:hover { color: var(--gold); }
.career-detail-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.career-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 768px) { .career-detail-grid { grid-template-columns: 1fr; } }
.career-sidebar-card { padding: 24px; }
.sidebar-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--glass-border); }
.sidebar-row:last-child { border-bottom: none; }
.sidebar-label { font-size: 0.82rem; color: var(--text-muted); }
.sidebar-val { font-weight: 600; font-size: 0.95rem; }
.score-ring-wrap { text-align: center; padding: 20px 0; }
.score-ring {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 10px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.score-ring-inner { font-size: 1.6rem; font-weight: 900; }
.skills-list { list-style: none; }
.skills-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
}
.skills-list li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0; }

/* ---- EXPLORE PAGE ---- */
.explore-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  align-items: center;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--glass-border);
  color: var(--text-muted);
  background: var(--glass-bg);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232,160,32,0.06);
}
.explore-search {
  flex: 1; max-width: 300px;
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: 20px;
  padding: 9px 18px;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.explore-search:focus { border-color: var(--gold); }
.explore-search::placeholder { color: var(--grey-500); }

/* ---- SPACE / LIFE PLACEHOLDER ---- */
.stage-placeholder {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  text-align: center;
}
.stage-badge {
  display: inline-block;
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.stage-icon-wrap {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
}
.stage-icon-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(232,160,32,0.3);
  animation: rotate-ring 12s linear infinite;
}
@keyframes rotate-ring { to { transform: rotate(360deg); } }
.coming-soon-countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 10px 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 24px auto 0;
}
.stage-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 48px auto 0;
  text-align: left;
}
@media (max-width: 640px) { .stage-features { grid-template-columns: 1fr; } }
.stage-feature {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.stage-feature-icon { font-size: 1.4rem; margin-bottom: 10px; }
.stage-feature-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.stage-feature-desc { font-size: 0.82rem; color: var(--text-muted); }

/* ---- CONTENT PAGES (BLOG / MINDMAPS / PODCASTS) ---- */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.content-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.content-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,160,32,0.3);
  box-shadow: var(--shadow-card);
  color: inherit;
}
.content-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.content-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13,27,62,0.8));
}
.content-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.content-card-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.content-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.content-card-short { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.content-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.78rem;
  color: var(--grey-500);
}
.empty-content {
  text-align: center;
  padding: 80px 20px;
  max-width: 400px;
  margin: 0 auto;
}
.empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.4; }
.empty-title { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-muted); }
.empty-desc { font-size: 0.88rem; color: var(--grey-500); }

/* ---- ABOUT PAGE ---- */
.about-hero { padding: 120px 0 60px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.founder-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
}
.founder-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 0 40px rgba(232,160,32,0.3);
}
.founder-name { font-size: 1.4rem; font-weight: 800; }
.founder-title { font-size: 0.85rem; color: var(--gold); margin-top: 4px; }
.founder-quote {
  margin: 20px 0;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-muted);
  text-align: left;
}

/* ---- PRO PAGE ---- */
.pro-hero { padding: 120px 0 60px; }
.pro-form-wrap { max-width: 520px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; color: var(--text-muted); }
.form-input, .form-select {
  width: 100%;
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,160,32,0.1); }
.form-input::placeholder { color: var(--grey-500); }
.form-select option { background: var(--navy-deep); color: var(--white); }
.form-note { font-size: 0.8rem; color: var(--grey-500); margin-top: 6px; }
.pro-perks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 28px 0; }
.pro-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 14px;
}
.pro-perk-icon { font-size: 1.2rem; flex-shrink: 0; }
.pro-perk-text { font-size: 0.85rem; color: var(--text-muted); }
.pro-perk-title { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
@media (max-width: 480px) { .pro-perks-grid { grid-template-columns: 1fr; } }
.success-msg {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.success-icon { font-size: 3rem; margin-bottom: 16px; }

/* ---- FOOTER ---- */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--glass-border);
  margin-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.footer-col-title { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.82rem;
  color: var(--grey-500);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.72rem;
}

/* ---- TOAST / ALERT ---- */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.alert-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25); color: #34D399; }
.alert-error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #F87171; }
.alert-info    { background: rgba(232,160,32,0.08); border: 1px solid rgba(232,160,32,0.2); color: var(--gold); }

/* ---- AI CHIP ---- */
.ai-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #A78BFA;
  letter-spacing: 0.04em;
}
.ai-chip::before { content: '✦'; font-size: 0.6rem; }

/* ---- DISRUPTION GAUGE ---- */
.disruption-bar-wrap { margin-top: 8px; }
.disruption-bar {
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  overflow: hidden;
  margin-top: 6px;
}
.disruption-fill {
  height: 100%;
  border-radius: 5px;
}
.disruption-low    .disruption-fill { background: #34D399; }
.disruption-medium .disruption-fill { background: #F59E0B; }
.disruption-high   .disruption-fill { background: #F87171; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-in { animation: fadeInUp 0.5s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ---- MISC ---- */
.divider { height: 1px; background: var(--glass-border); margin: 40px 0; }
.mt-auto { margin-top: auto; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.gap-3 { gap: 12px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- HIGH CONTRAST MODE ---- */
@media (prefers-contrast: high) {
  :root {
    --glass-bg: rgba(255,255,255,0.1);
    --glass-border: rgba(255,255,255,0.3);
    --text-muted: rgba(255,255,255,0.85);
  }
}
/* ---- FOCUS ACCESSIBILITY ---- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- PRINT ---- */
@media print {
  .navbar, .footer, .page-bg, .grid-overlay { display: none; }
  body { background: white; color: black; }
}
