:root {
  --bg: #0a0a0a;
  --fg: #f0ede8;
  --accent: #e63946;
  --accent-dim: #b8303b;
  --muted: #6b6560;
  --card-bg: #141414;
  --card-border: #2a2a2a;
  --section-gap: clamp(80px, 12vw, 160px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background: radial-gradient(ellipse at 30% 20%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(230, 57, 70, 0.04) 0%, transparent 40%),
              var(--bg);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.label-mark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.lede {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 1.5rem;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* SECTION LABEL */
.section-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 3rem;
}

/* ROSTER */
.roster {
  padding: var(--section-gap) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.roster-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.roster-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-2px);
}

.roster-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.roster-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

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

/* EDGE */
.edge {
  padding: var(--section-gap) 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, #0f0808 50%, var(--bg) 100%);
}

.edge-content {
  max-width: 1200px;
  margin: 0 auto;
}

.edge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.edge-item h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.edge-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: var(--section-gap) 2rem;
  text-align: center;
}

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

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.closing p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* FOOTER */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--card-border);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--accent);
}

.footer-details {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-divider {
  margin: 0 0.75rem;
  opacity: 0.4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .roster-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}