:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --fg: #f5f5f0;
  --fg-muted: #888888;
  --accent: #ff6b00;
  --accent-dim: rgba(255, 107, 0, 0.12);
  --border: rgba(255,255,255,0.08);
}

*, *::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: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: var(--fg);
  text-decoration: none;
}
.nav-logo .accent { color: var(--accent); }
.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 2rem 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,1) 0%,
    rgba(10,10,10,0.7) 50%,
    rgba(10,10,10,0.25) 100%
  );
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-lede {
  font-size: 1.1rem;
  color: rgba(245,245,240,0.7);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.stat { text-align: left; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Manifesto ── */
.manifesto {
  padding: 7rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.manifesto-label,
.features-label,
.athletes-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.manifesto-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: var(--fg);
  font-weight: 400;
}
.manifesto-body {
  font-size: 1rem;
  color: rgba(245,245,240,0.6);
  line-height: 1.8;
  margin-top: 0.5rem;
}
.manifesto-aside {
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
  margin-top: 1rem;
}
.manifesto-aside p {
  font-size: 1rem;
  color: rgba(245,245,240,0.8);
  line-height: 1.8;
  font-style: italic;
}

/* ── Features ── */
.features {
  padding: 7rem 2rem;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: var(--fg);
  font-weight: 400;
  margin-bottom: 4rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.feature-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.feature-card:hover .feature-img { transform: scale(1.04); }
.feature-body { padding: 2rem; }
.feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.feature-desc {
  font-size: 0.9rem;
  color: rgba(245,245,240,0.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.feature-list li {
  font-size: 0.8rem;
  color: rgba(245,245,240,0.5);
  padding-left: 1rem;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Athletes ── */
.athletes {
  padding: 7rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.athletes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.athletes-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: var(--fg);
  font-weight: 400;
  margin-bottom: 4rem;
}
.athletes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.athlete-type {
  background: var(--bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.athlete-icon {
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.athlete-type h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: var(--fg);
  font-weight: 400;
}
.athlete-type p {
  font-size: 0.82rem;
  color: rgba(245,245,240,0.45);
  line-height: 1.7;
}

/* ── Closer ── */
.closer { padding: 7rem 2rem; }
.closer-inner { max-width: 1200px; margin: 0 auto; }
.closer-rule {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 3rem;
}
.closer-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--fg);
  font-weight: 400;
  margin-bottom: 2rem;
}
.closer-body {
  font-size: 1.05rem;
  color: rgba(245,245,240,0.55);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.closer-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.closer-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.25);
}

/* ── Footer ── */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--fg);
}
.footer-logo .accent { color: var(--accent); }
.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.footer-copy {
  font-size: 0.7rem;
  color: rgba(245,245,240,0.2);
  margin-top: 1rem;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero { padding-bottom: 4rem; }
  .hero-headline { font-size: 3rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .athletes-grid { grid-template-columns: 1fr 1fr; }
  .features, .manifesto, .athletes, .closer { padding: 5rem 1.5rem; }
  .nav-inner { padding: 0.75rem 1.5rem; }
}
@media (max-width: 480px) {
  .athletes-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.5rem; }
}