/* BASE RESET & TOKENS */
:root {
  --bg: #0A0E1A;
  --bg-2: #111524;
  --bg-3: #161B2E;
  --fg: #E8EAF0;
  --fg-muted: #8B90A8;
  --accent: #FF6B35;
  --accent-dim: rgba(255, 107, 53, 0.15);
  --border: #1E2438;
  --radius: 12px;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* NAV */
.topbar { position: sticky; top: 0; z-index: 100; background: rgba(10,14,26,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.topbar-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 56px; display: flex; align-items: center; justify-content: space-between; }
.wordmark { font-family: var(--font-head); font-size: 22px; letter-spacing: 3px; color: var(--fg); }
.nav-tagline { font-size: 13px; color: var(--fg-muted); font-weight: 500; letter-spacing: 0.5px; }

/* SECTION COMMONS */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { font-size: 11px; font-weight: 600; letter-spacing: 4px; color: var(--accent); margin-bottom: 12px; text-transform: uppercase; }
.section-title { font-family: var(--font-head); font-size: clamp(32px, 5vw, 52px); letter-spacing: 2px; color: var(--fg); line-height: 1.1; margin-bottom: 16px; }
.section-sub { color: var(--fg-muted); font-size: 16px; max-width: 500px; margin: 0 auto; }

/* HERO */
.hero { padding: 80px 24px 0; max-width: 1100px; margin: 0 auto; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-badge { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 4px; color: var(--accent); border: 1px solid var(--accent); padding: 6px 12px; border-radius: 20px; margin-bottom: 24px; text-transform: uppercase; }
.hero-headline { font-family: var(--font-head); font-size: clamp(48px, 7vw, 80px); line-height: 1.0; letter-spacing: 3px; color: var(--fg); margin-bottom: 20px; }
.hero-sub { font-size: 16px; color: var(--fg-muted); max-width: 420px; line-height: 1.7; margin-bottom: 36px; }
.hero-stats-row { display: flex; flex-direction: column; gap: 12px; }
.hero-stat-item { display: flex; flex-direction: column; gap: 6px; }
.hero-stat-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--fg-muted); text-transform: uppercase; }
.bar-wrap { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.bar-fill { height: 100%; width: var(--w, 50%); background: var(--accent); border-radius: 2px; }

/* SCORE CARD */
.score-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.score-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.card-label { font-size: 9px; font-weight: 600; letter-spacing: 4px; color: var(--fg-muted); text-transform: uppercase; }
.big-score { font-family: var(--font-head); font-size: 96px; line-height: 1; color: var(--accent); letter-spacing: 4px; }
.card-archetype { display: flex; align-items: center; gap: 12px; padding: 12px; background: var(--accent-dim); border-radius: 10px; }
.archetype-icon { flex-shrink: 0; }
.archetype-name { font-family: var(--font-head); font-size: 16px; letter-spacing: 2px; color: var(--fg); }
.archetype-tier { font-size: 12px; color: var(--accent); font-weight: 500; }
.card-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.card-metric { display: flex; flex-direction: column; align-items: center; padding: 10px 6px; background: var(--bg-3); border-radius: 8px; }
.cm-val { font-family: var(--font-head); font-size: 20px; color: var(--fg); }
.cm-label { font-size: 9px; color: var(--fg-muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.card-radar { display: flex; justify-content: center; }
.card-badge-row { display: flex; gap: 8px; }
.micro-badge { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 500; color: var(--fg-muted); background: var(--bg-3); padding: 6px 10px; border-radius: 20px; }

/* HERO PROOF ROW */
.hero-bottom { margin-top: 72px; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.proof-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.proof-num { font-family: var(--font-head); font-size: 32px; color: var(--accent); letter-spacing: 2px; }
.proof-label { font-size: 12px; color: var(--fg-muted); max-width: 160px; margin-top: 4px; }
.proof-sep { width: 1px; height: 40px; background: var(--border); }

/* HOW IT WORKS */
.how-it-works { padding: 100px 24px; max-width: 1100px; margin: 0 auto; }
.steps-row { display: grid; grid-template-columns: 1fr 60px 1fr 60px 1fr; align-items: start; gap: 0; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.step-num { font-family: var(--font-head); font-size: 11px; letter-spacing: 3px; color: var(--accent); }
.step-title { font-family: var(--font-head); font-size: 20px; letter-spacing: 1px; color: var(--fg); }
.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.step-connector { display: flex; align-items: center; justify-content: center; padding-top: 32px; }

/* FEATURES */
.features { padding: 100px 24px; background: var(--bg-2); }
.features .section-header { max-width: 1100px; margin-left: auto; margin-right: auto; }
.features-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 14px; transition: border-color 0.2s; }
.feat-card:hover { border-color: var(--accent); }
.feat-primary { border-color: var(--accent); background: linear-gradient(135deg, var(--bg) 0%, rgba(255,107,53,0.04) 100%); }
.feat-title { font-family: var(--font-head); font-size: 18px; letter-spacing: 1.5px; color: var(--fg); }
.feat-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }
.feat-icon { display: flex; }

/* ARCHETYPES */
.archetypes-section { padding: 100px 24px; max-width: 1100px; margin: 0 auto; }
.archetypes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.arch-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.arch-header { display: flex; align-items: center; gap: 12px; }
.arch-name { font-family: var(--font-head); font-size: 15px; letter-spacing: 2px; color: var(--fg); }
.arch-trait { font-size: 12px; color: var(--fg-muted); }
.arch-stats { display: flex; gap: 12px; }
.arch-stat { display: flex; flex-direction: column; align-items: center; flex: 1; background: var(--bg-3); padding: 8px; border-radius: 8px; font-size: 10px; color: var(--fg-muted); }
.arch-stat span:last-child { font-family: var(--font-head); font-size: 16px; color: var(--fg); }
.arch-focus { font-size: 12px; color: var(--accent); font-weight: 500; }

/* VIRAL */
.viral-section { padding: 100px 24px; background: var(--bg-2); }
.viral-section .section-header { max-width: 1100px; margin: 0 auto 48px; }
.viral-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.viral-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.viral-title { font-family: var(--font-head); font-size: 18px; letter-spacing: 1.5px; color: var(--fg); }
.viral-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }
.viral-share { border-color: var(--accent); }

/* CLOSING */
.closing { padding: 100px 24px; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: var(--font-head); font-size: clamp(48px, 8vw, 96px); letter-spacing: 4px; color: var(--fg); margin-bottom: 20px; }
.closing-body { font-size: 18px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 48px; }
.closing-cta { display: flex; align-items: center; justify-content: center; gap: 32px; padding: 32px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 16px; }
.cta-score { text-align: center; }
.cta-score-num { font-family: var(--font-head); font-size: 72px; color: var(--accent); line-height: 1; }
.cta-score-label { font-size: 9px; letter-spacing: 4px; color: var(--fg-muted); margin-top: 4px; }
.cta-info { text-align: left; }
.cta-line { font-family: var(--font-head); font-size: 22px; letter-spacing: 1px; color: var(--fg); margin-bottom: 6px; }
.cta-sub { font-size: 14px; color: var(--fg-muted); }

/* FOOTER */
.site-footer { padding: 40px 24px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { font-family: var(--font-head); font-size: 16px; letter-spacing: 3px; color: var(--fg-muted); }
.footer-copy { font-size: 13px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .score-card { display: none; }
  .steps-row { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .archetypes-grid { grid-template-columns: 1fr 1fr; }
  .viral-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .archetypes-grid { grid-template-columns: 1fr; }
  .proof-row { gap: 20px; }
  .proof-sep { display: none; }
  .closing-cta { flex-direction: column; text-align: center; }
  .cta-info { text-align: center; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}