:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #e8e4df;
  --fg-muted: #8a8580;
  --fg-dim: #5a5652;
  --accent: #d4a04a;
  --accent-dim: rgba(212, 160, 74, 0.15);
  --accent-glow: rgba(212, 160, 74, 0.08);
  --win: #5cb85c;
  --gap: #c9544d;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 10% 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid { max-width: 800px; }

.hero-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 32px;
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(212, 160, 74, 0.25);
  border-radius: 4px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: #fff;
}

.hero h1 .accent {
  color: var(--accent);
}

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

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-stat { text-align: left; }

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-dim);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ---- METRICS ---- */
.metrics {
  padding: 100px 10%;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.section-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.metrics-header { margin-bottom: 56px; }

.metrics-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
  max-width: 600px;
}

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

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.3s ease;
}

.metric-card:hover {
  border-color: rgba(212, 160, 74, 0.2);
}

.metric-icon {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.metric-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.metric-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 10%;
}

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

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }

.feature-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.feature-text p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Cycle Display */
.cycle-display {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.cycle-item {
  padding: 14px 20px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg-dim);
  margin-bottom: 8px;
  background: var(--bg-elevated);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.cycle-item:last-child { margin-bottom: 0; }

.cycle-item.active {
  color: var(--accent);
  background: var(--accent-dim);
  border-left-color: var(--accent);
}

/* Intel Display */
.intel-display {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.intel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.intel-row:last-child { border-bottom: none; }

.intel-name {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--fg);
}

.intel-status {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 4px;
}

.intel-status.win {
  color: var(--win);
  background: rgba(92, 184, 92, 0.1);
}

.intel-status.gap {
  color: var(--gap);
  background: rgba(201, 84, 77, 0.1);
}

/* ---- PHILOSOPHY ---- */
.philosophy {
  padding: 100px 10%;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.philosophy blockquote {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.8;
  position: relative;
  padding: 0 20px;
}

.philosophy blockquote::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 32px;
}

.philosophy-attr {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--fg-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 10%;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 24px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 620px;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 48px 10%;
  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 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-dim);
}

/* ---- CTA BUTTON ---- */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212, 160, 74, 0.25);
}

.hero-cta:hover {
  background: #e0b05a;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(212, 160, 74, 0.35);
}

.hero-cta:active {
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    padding: 100px 6% 60px;
    min-height: auto;
  }

  .hero-stat-row {
    gap: 20px;
  }

  .metrics { padding: 60px 6%; }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .features { padding: 60px 6%; }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }

  .feature-row.reverse .feature-text { order: 1; }
  .feature-row.reverse .feature-visual { order: 2; }

  .philosophy { padding: 60px 6%; }

  .closing { padding: 60px 6%; }

  .site-footer { padding: 32px 6%; }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  
  .hero-stat-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider { display: none; }

  .metric-card { padding: 24px; }
}