:root {
  --bg: #0e0e0e;
  --bg-2: #111111;
  --fg: #f5f5f5;
  --fg-muted: #888;
  --accent: #ff4d00;
  --accent-warm: #ff8c00;
  --green: #22c55e;
  --blue: #3b82f6;
  --border: rgba(255,255,255,0.07);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(14,14,14,0.95) 0%, transparent 100%);
}
.wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--fg);
}
.tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,77,0,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255,140,0,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #0e0e0e 0%, #1a0a00 50%, #0e0e0e 100%);
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,77,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,77,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.warm-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 110%, rgba(255,77,0,0.08) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}
.headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 14vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}
.headline .line1 { color: var(--fg); }
.headline .line2 { color: var(--fg); }
.headline .line3 {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.tag {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.03);
}
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
}
.scroll-arrow {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--fg), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(0.7); }
}

/* SPREAD STRIP */
.spread {
  background: var(--accent);
  padding: 48px 48px;
}
.spread-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.spread-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-shrink: 0;
}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: #fff;
}
.stat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.spread-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.spread-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

/* SPORTS */
.sports {
  padding: 120px 48px;
  background: var(--bg-2);
}
.sports-header {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.6;
}
.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.sport-card {
  background: var(--bg);
  padding: 40px 28px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
  cursor: default;
}
.sport-card:hover {
  border-color: var(--accent);
}
.sport-icon {
  color: var(--accent);
  margin-bottom: 24px;
}
.sport-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.sport-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.sport-type {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* MAP FEATURE */
.map-feature {
  padding: 120px 48px;
  background: var(--bg);
}
.map-feature-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.map-screen {
  background: #0a0a0a;
  border: 1px solid rgba(255,77,0,0.2);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.map-grid {
  width: 100%;
  height: 100%;
}
.map-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  align-items: center;
}
.map-sport-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.map-sport-dot.skate { background: var(--accent); }
.map-sport-dot.longboard { background: var(--accent-warm); }
.map-sport-dot.snowboard { background: var(--blue); }
.map-sport-dot.mountainboard { background: var(--green); }
.map-feature-text .overline {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.map-feature-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 20px;
}
.map-feature-text p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  line-height: 1.5;
}
.feature-list svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* RUNS */
.runs {
  padding: 120px 48px;
  background: var(--bg-2);
}
.runs-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.runs-text .overline {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.runs-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 20px;
}
.runs-text > p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 36px;
}
.meetup-example {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.meetup-bubble {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.meetup-bubble.incoming {
  flex-direction: row;
}
.meetup-bubble:not(.incoming) {
  flex-direction: row-reverse;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  color: white;
}
.avatar.you {
  background: rgba(255,77,0,0.3);
  border: 1px solid var(--accent);
}
.bubble-content {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  max-width: 280px;
}
.user {
  display: block;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 4px;
  font-weight: 600;
}
.bubble-content p {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.5;
}
.gear-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.gear-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
}
.gear-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255,77,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.gear-item span {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 140px 48px;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-sports {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  background: var(--bg-2);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}
.footer-desc {
  font-size: 12px;
  color: var(--fg-muted);
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  margin-top: 24px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .map-feature-inner { grid-template-columns: 1fr; gap: 48px; }
  .runs-inner { grid-template-columns: 1fr; gap: 48px; }
  .spread-inner { flex-direction: column; gap: 24px; }
  .spread-divider { display: none; }
}
@media (max-width: 600px) {
  .topnav { padding: 20px 24px; }
  .sports-grid { grid-template-columns: 1fr; }
  .sports, .map-feature, .runs, .closing { padding: 80px 24px; }
  .spread { padding: 36px 24px; }
  .site-footer { padding: 36px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}