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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ===== COLOR SYSTEM ===== */
:root {
  --bg: #0b0b18;
  --surface: #11112a;
  --surface-2: #171735;
  --border: rgba(99, 102, 241, 0.15);
  --border-em: rgba(16, 185, 129, 0.25);
  --indigo-900: #1e1b4b;
  --indigo-700: #3730a3;
  --indigo-500: #6366f1;
  --indigo-400: #818cf8;
  --indigo-300: #a5b4fc;
  --emerald: #10b981;
  --emerald-dim: #064e3b;
  --emerald-glow: rgba(16, 185, 129, 0.12);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #475569;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --font-sans: 'Inter', system-ui, sans-serif;
  --max-w: 1100px;
  --radius: 6px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.mono {
  font-family: var(--font-mono);
}

.emerald {
  color: var(--emerald);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 11, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--emerald);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--text);
}

.nav-login {
  color: var(--text-muted) !important;
  border: 1px solid var(--border) !important;
  padding: 6px 14px !important;
  border-radius: var(--radius) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: border-color 0.2s, color 0.2s !important;
}

.nav-login:hover {
  border-color: var(--indigo-500) !important;
  color: var(--text) !important;
}

.nav-cta {
  background: var(--emerald) !important;
  color: #0b0b18 !important;
  padding: 7px 16px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.9 !important;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--emerald-glow);
  border: 1px solid var(--border-em);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '●';
  font-size: 8px;
}

.beta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--emerald-glow);
  border: 1px solid var(--border-em);
  padding: 4px 10px;
  border-radius: 100px;
  vertical-align: middle;
}

h1 {
  font-family: var(--font-mono);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

h1 em {
  font-style: normal;
  color: var(--emerald);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  font-weight: 400;
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-proof {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.proof-num span {
  color: var(--emerald);
}

.proof-label {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald);
  color: #0b0b18;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.35);
}

.btn-primary::after {
  content: '→';
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  color: var(--text);
  border-color: var(--indigo-500);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 15px;
  text-decoration: none;
  padding: 14px 0;
  transition: color 0.2s;
}

.btn-login:hover {
  color: var(--text);
}

/* ===== SECTION COMMON ===== */
section {
  padding: 100px 24px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
}

h2 {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

h3 {
  font-family: var(--font-mono);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 64px;
}

/* ===== PAGE HEADER (non-hero pages) ===== */
.page-header {
  padding: 120px 24px 64px;
  border-bottom: 1px solid var(--border);
}

.page-header .container {
  max-width: 800px;
}

/* ===== ACCESS MODES ===== */
#access {
  border-top: 1px solid var(--border);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.access-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  transition: border-color 0.2s;
}

.access-card:hover {
  border-color: var(--border-em);
}

.access-card.featured {
  border-left: 3px solid var(--emerald);
}

.access-type {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
}

.access-title {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.access-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.access-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.access-list li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.access-list li::before {
  content: '→';
  color: var(--emerald);
  font-family: var(--font-mono);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.access-code {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--indigo-300);
  overflow-x: auto;
}

.access-code .comment {
  color: var(--text-dim);
}

/* ===== SKILLS GRID ===== */
#skills {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.skill-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.2s;
  position: relative;
}

.skill-card:hover {
  background: var(--surface-2);
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.skill-card:hover::before {
  opacity: 1;
}

.skill-id {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.skill-badge {
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: var(--indigo-300);
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}

.skill-badge-start {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--emerald);
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}

.skill-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.skill-name {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.skill-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.skill-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  flex-wrap: wrap;
}

.skill-meta .tag {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--indigo-300);
  padding: 3px 8px;
  border-radius: 4px;
}

.skill-card-featured {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--emerald);
  border-radius: 8px;
  padding: 40px 36px;
  margin-bottom: 24px;
  position: relative;
}

.skills-connector {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 0 16px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== HOW IT WORKS ===== */
#how {
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 48px;
  counter-reset: step;
}

.step {
  counter-increment: step;
  position: relative;
}

.step::before {
  content: '0' counter(step);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--emerald);
  display: block;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== PERSONAS ===== */
#for {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.personas {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.persona {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  transition: border-color 0.2s;
  text-decoration: none;
  display: block;
}

.persona:hover {
  border-color: var(--border-em);
}

.persona-role {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.persona-stage {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.persona-headline {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.persona-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.persona-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--emerald);
  text-decoration: none;
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* ===== FAQ ===== */
#faq {
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 40px;
}

.faq-item {}

.faq-q {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-a {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-a a {
  color: var(--indigo-300);
  text-decoration: none;
  border-bottom: 1px solid rgba(99, 102, 241, 0.3);
  transition: color 0.2s, border-color 0.2s;
}

.faq-a a:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

/* ===== CTA ===== */
#cta {
  text-align: center;
  background: linear-gradient(135deg, var(--indigo-900) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 20px;
}

#cta p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-already {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-dim);
}

.cta-already a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

.cta-already a:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

/* ===== FOUNDER ===== */
.founder-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--emerald);
  border-radius: 8px;
  padding: 40px 36px;
  max-width: 680px;
}

.founder-block p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.founder-block p:last-child {
  margin-bottom: 0;
}

.founder-sig {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== CONTENT PROSE ===== */
.prose {
  max-width: 720px;
}

.prose p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.prose h3 {
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 16px;
}

.prose a {
  color: var(--indigo-300);
  text-decoration: none;
  border-bottom: 1px solid rgba(99, 102, 241, 0.3);
}

.prose a:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.prose ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.prose ul li {
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.prose ul li::before {
  content: '→';
  color: var(--emerald);
  font-family: var(--font-mono);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===== FORM ELEMENTS ===== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--emerald);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--emerald);
  flex-shrink: 0;
}

.form-checkbox-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
}

.form-success {
  background: var(--emerald-glow);
  border: 1px solid var(--border-em);
  border-radius: 8px;
  padding: 32px 36px;
}

.form-success p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

.form-error {
  font-size: 14px;
  color: #f87171;
  margin-top: 8px;
}

/* ===== DIVIDER ===== */
.divider {
  width: 40px;
  height: 1px;
  background: var(--emerald);
  margin: 24px 0;
  opacity: 0.5;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px;
  background: var(--surface);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.footer-logo span {
  color: var(--emerald);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-muted);
}

.footer-legal {
  font-size: 12px;
  color: var(--text-dim);
  width: 100%;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-legal a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--text-muted);
}

/* ===== SAMPLE OUTPUT ===== */
.sample-output {
  background: #0a0a14;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  max-width: 720px;
}

.sample-output-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.sample-output-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.copy-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3px 8px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.copy-btn:hover { color: var(--emerald); border-color: var(--border-em); }
.copy-btn.copied { color: var(--emerald); border-color: var(--border-em); }

.sample-output pre {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--indigo-300);
  line-height: 1.7;
  overflow-x: auto;
  white-space: pre;
}

/* ===== ASSESSMENT ===== */
.assessment-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}

.assessment-card-title {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.assessment-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.assessment-subtotal {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.assessment-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.assessment-question:last-child { border-bottom: none; }

.assessment-question input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--emerald);
  cursor: pointer;
}

.assessment-question label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.assessment-question input:checked + label {
  color: var(--text);
}

.assessment-submit {
  position: sticky;
  bottom: 32px;
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

.assessment-results { display: none; }
.assessment-results.visible { display: block; }
.assessment-questions.hidden { display: none; }

.result-card {
  background: var(--surface);
  border: 1px solid var(--border-em);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}

.result-stage-title {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.result-stage-subtitle {
  font-size: 13px;
  color: var(--emerald);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.result-profile {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

.score-breakdown { margin-bottom: 24px; }

.score-row { margin-bottom: 12px; }

.score-row-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.score-row-label.dominant { color: var(--text); font-weight: 600; }

.score-bar-track {
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  background: var(--emerald);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.result-section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.result-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.result-next-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.result-next-steps li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.result-next-steps li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--emerald);
}

.methodology-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 32px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.methodology-note p + p { margin-top: 12px; }

.methodology-note strong { color: var(--text); }

.methodology-note ul {
  margin: 8px 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .access-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  #hero { padding: 100px 16px 60px; }
  .hero-proof { gap: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  section { padding: 64px 16px; }
  .page-header { padding: 100px 16px 48px; }
}
