:root {
  --bg: #0F1629;
  --surface: #1A2540;
  --surface-2: #243050;
  --fg: #F0F4FF;
  --fg-muted: #8892AA;
  --accent: #00D4AA;
  --accent-dim: rgba(0, 212, 170, 0.12);
  --accent-glow: rgba(0, 212, 170, 0.25);
  --border: rgba(240, 244, 255, 0.08);
  --font-display: 'Syne', 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;
}

/* HERO */
.hero {
  padding: 120px 80px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-eyebrow { margin-bottom: 32px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
}

.badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  background: var(--surface);
}

.stat {
  padding: 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 160px;
  line-height: 1.4;
}

/* SCORECARD */
.scorecard {
  padding: 0 80px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.scorecard-inner {}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 16px;
}

.section-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.scorecard-header { margin-bottom: 0; }

.score-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.score-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 12px 20px;
  position: relative;
  overflow: hidden;
}

.score-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  border-radius: 3px 0 0 3px;
  opacity: 0.6;
}

.score-icon {
  grid-row: 1;
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-content {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.score-dimension {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
}

.score-bar-wrap {
  width: 100%;
  height: 6px;
  background: var(--surface-2);
  border-radius: 100px;
  overflow: hidden;
}

.score-bar {
  height: 100%;
  width: calc(var(--score) * 1%);
  background: linear-gradient(90deg, var(--accent), #00ffcc);
  border-radius: 100px;
  box-shadow: 0 0 12px var(--accent-glow);
}

.score-out-of {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}

.score-issue {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}

/* DIMENSIONS */
.dimensions {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 80px;
}

.dimensions-inner { max-width: 1400px; margin: 0 auto; }

.dim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.dim-card {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
}

.dim-card:last-child { border-right: none; }

.dim-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 24px;
}

.dim-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.2;
}

.dim-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.dim-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dim-features li {
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.dim-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.01em;
  max-width: 860px;
  margin-bottom: 40px;
  padding-left: 32px;
  border-left: 3px solid var(--accent);
}

.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* CLOSING */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 100px 80px;
}

.closing-inner { max-width: 1400px; margin: 0 auto; text-align: center; }

.closing-badge { margin-bottom: 32px; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.closing-type { display: flex; justify-content: center; }

.type-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  margin: 0 6px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 80px 40px;
}

.footer-inner { max-width: 1400px; margin: 0 auto; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0, 212, 170, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  max-width: 480px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero, .scorecard, .dimensions, .manifesto, .closing, .footer {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hero { padding-top: 80px; padding-bottom: 60px; }
  .score-grid { grid-template-columns: 1fr; }
  .dim-grid { grid-template-columns: 1fr; }
  .dim-card { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 0; }
  .dim-card:last-child { border-bottom: none; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: auto; height: 1px; }
}

@media (max-width: 600px) {
  .hero, .scorecard, .dimensions, .manifesto, .closing, .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-headline { font-size: 2.4rem; }
  .manifesto-quote { font-size: 1.2rem; padding-left: 20px; }
  .type-tag { display: block; margin: 6px 0; }
}
