:root {
  --bg: #0C0E14;
  --bg-2: #131620;
  --bg-card: #1A1D2B;
  --fg: #E8E5DF;
  --fg-muted: #8A8A96;
  --accent: #E8873A;
  --accent-dim: rgba(232, 135, 58, 0.12);
  --indigo: #2A2F4A;
  --green: #5BB98B;
  --border: rgba(255,255,255,0.07);
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  padding: 100px 80px 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(232,135,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* HERO SCORE CARD */
.hero-score-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.score-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.score-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.score-value {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
}

.score-bar-wrap {
  height: 6px;
  background: var(--indigo);
  border-radius: 99px;
  margin-bottom: 32px;
}

.score-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #F5A96A);
  border-radius: 99px;
}

.score-dimensions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.dim-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.dim-row span:first-child {
  color: var(--fg-muted);
}

.dim-score {
  font-weight: 600;
  color: var(--fg);
}

.score-footer {
  font-size: 11px;
  color: var(--fg-muted);
  opacity: 0.6;
  text-align: right;
}

/* SHARED SECTION STYLES */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

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

/* SCOREBOARD SECTION */
.scoreboard {
  padding: 100px 80px;
  background: var(--bg-2);
}

.scoreboard-inner { max-width: 1100px; margin: 0 auto; }

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}

.card:hover { border-color: rgba(232,135,58,0.3); }

.card-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* MISSION SECTION */
.mission {
  padding: 100px 80px;
  background: var(--bg);
}

.mission-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin-bottom: 20px;
}

.mission-quote cite {
  font-size: 12px;
  color: var(--fg-muted);
  padding-left: 28px;
  letter-spacing: 0.05em;
}

.mission-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.mission-text p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* TIMELINE SECTION */
.timeline {
  padding: 100px 80px;
  background: var(--bg-2);
}

.timeline-inner { max-width: 900px; margin: 0 auto; }

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING SECTION */
.closing {
  padding: 120px 80px;
  background: var(--bg);
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--accent);
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

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

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
}

.footer-legal {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 32px; gap: 48px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .scoreboard, .mission, .timeline, .closing { padding: 60px 32px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .hero-headline { font-size: 36px; }
}