/* ============================================================
   EcoSport — Sports Venue Lighting
   style.css
   ============================================================ */

/* ---------- Custom Properties — ECO-46 AWWWARDS Design System ---------- */
:root {
  /* Brand tokens */
  --pitch-black: #04060A;
  --turf-green: #00D64F;
  --broadcast-amber: #FFC107;

  /* System aliases */
  --primary: var(--pitch-black);
  --secondary: #080E1A;
  --accent: var(--turf-green);
  --accent-blue: #1565C0;
  --accent-amber: var(--broadcast-amber);
  --light: #F8F9FA;
  --white: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-muted: #7A8BA8;
  --electric: #69F0AE;

  /* Typography */
  --font-display: 'Bebas Neue', 'Barlow Condensed', Impact, sans-serif;
  --font-stats: 'Rajdhani', 'Barlow Condensed', sans-serif;
  --font-body: 'Rajdhani', 'Barlow', sans-serif;

  /* Shape */
  --radius-card: 6px;
  --radius-btn: 4px;

  /* Elevation */
  --shadow-dark: 0 4px 32px rgba(0, 0, 0, 0.5);
  --shadow-hover-dark: 0 8px 48px rgba(0, 0, 0, 0.7);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-accent {
  background: var(--accent);
  color: var(--primary);
}

.btn-accent:hover {
  background: var(--electric);
  color: var(--primary);
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.55), 0 4px 20px rgba(0, 230, 118, 0.3);
}

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: white;
}

.btn-ghost:hover {
  background: white;
  color: var(--primary);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-lg {
  font-size: 18px;
  padding: 18px 40px;
}

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--secondary);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 230, 118, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-eco {
  color: white;
}

.logo-sport {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.98);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body.nav-open .nav-overlay {
  display: flex;
}

.nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.nav-mobile-links a {
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-mobile-links a:hover {
  color: var(--accent);
}

.nav-mobile-links .btn-accent {
  font-size: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary);
  padding: 64px 0 0;
  border-top: 1px solid rgba(0, 230, 118, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 12px;
}

.footer-logo span:first-child {
  color: white;
}

.footer-logo .green {
  color: var(--accent);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-brand .parent-link a {
  color: var(--accent);
  transition: color 0.2s;
}

.footer-brand .parent-link a:hover {
  color: var(--electric);
}

.site-footer nav h3,
.site-footer nav h4,
.footer-contact h3,
.footer-contact h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
}

.site-footer nav a {
  color: var(--text-muted);
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.2s;
}

.site-footer nav a:hover {
  color: var(--accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 230, 118, 0.15);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--accent);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--electric);
}

/* ---------- Section Utilities ---------- */
.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--text-muted);
}

/* ---------- Page Hero ---------- */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: var(--primary);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-hero p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: var(--secondary);
  padding: 32px 24px;
}

.stats-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stats-strip-item {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-strip-item:last-child {
  border-right: none;
}

.stat-val {
  font-family: var(--font-stats);
  font-weight: 700;
  font-size: 32px;
  color: white;
  display: block;
}

.stat-lab {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.5s; }

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HOME — index.html
   ============================================================ */

/* Hero */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1691770127796-51657cc875e9?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,20,0.75) 0%, rgba(10,10,20,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 160px 24px 80px;
  max-width: 960px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0, 230, 118, 0.35);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 140px;
  line-height: 0.88;
  letter-spacing: 0.03em;
  color: white;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: 0 0 80px rgba(0, 214, 79, 0.45);
}

@media (max-width: 1024px) {
  .hero-headline { font-size: 100px; }
}

@media (max-width: 767px) {
  .hero-headline { font-size: 72px; letter-spacing: 0.02em; }
}

.hero-headline .line-green {
  color: var(--accent);
  display: block;
  text-shadow: 0 0 60px rgba(0, 230, 118, 0.6), 0 0 120px rgba(0, 230, 118, 0.25);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-hint i {
  font-size: 20px;
}

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

/* Venue Cards Grid */
.venue-types-section {
  background: var(--primary);
  padding: 96px 0;
}

.venue-types-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.venue-types-section .section-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  color: white;
  margin-top: 12px;
}

.venue-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.venue-card {
  background: var(--secondary);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.venue-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover-dark);
}

.card-top-bar {
  height: 4px;
  background: var(--accent);
  flex-shrink: 0;
}

.card-inner {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 230, 118, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon i {
  font-size: 26px;
  color: var(--accent);
}

.venue-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: white;
  margin-bottom: 12px;
  line-height: 1.2;
}

.venue-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.2s;
  margin-top: auto;
}

.card-link:hover {
  color: var(--electric);
}

/* Technology Teaser */
.tech-teaser {
  background: var(--primary);
  padding: 96px 0;
  border-left: none;
  position: relative;
}

.tech-teaser::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}

.tech-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.tech-teaser-left h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}

.tech-teaser-left p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.tech-cta-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}

.tech-cta-link:hover {
  color: var(--electric);
  gap: 12px;
}

.tech-feature-tiles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-tile {
  background: var(--secondary);
  border-radius: var(--radius-card);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  transition: transform 0.2s ease;
}

.tech-tile:hover {
  transform: translateX(4px);
}

.tech-tile h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: white;
  margin-bottom: 6px;
}

.tech-tile p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Featured Projects Teaser */
.projects-teaser {
  background: var(--secondary);
  padding: 96px 0;
}

.projects-teaser-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 24px;
}

.projects-teaser-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: white;
}

.projects-view-all {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  transition: color 0.2s;
}

.projects-view-all:hover {
  color: var(--electric);
}

.projects-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-preview-card {
  background: var(--primary);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.project-preview-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.project-preview-img {
  height: 200px;
  background-color: var(--secondary);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.project-preview-card:hover .project-preview-img {
  transform: scale(1.04);
}

.project-preview-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 20, 0.7) 100%);
}

.project-preview-info {
  padding: 20px;
}

.project-preview-info h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: white;
  margin-bottom: 6px;
}

.project-preview-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* Consultation CTA */
.cta-banner {
  background: var(--primary);
  border-top: 2px solid var(--accent);
  padding: 96px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  color: white;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ============================================================
   VENUES — venues.html
   ============================================================ */

.venues-hero {
  background: var(--primary);
  padding: 140px 24px 72px;
  text-align: center;
  position: relative;
}

.venues-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.venue-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.venue-section:nth-child(even) {
  background: var(--secondary);
}

.venue-section:nth-child(odd) {
  background: var(--primary);
}

.venue-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 44px;
}

.venue-badge {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-badge i {
  font-size: 30px;
  color: var(--accent);
}

.venue-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  color: white;
  line-height: 1.1;
  margin-bottom: 8px;
}

.venue-standard {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.venue-specs h3,
.venue-solution h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
}

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

.venue-apps {
  font-size: 14px;
  color: var(--text-muted);
}

.venue-apps strong {
  color: white;
  font-weight: 600;
}

.venues-bottom-cta {
  background: var(--primary);
  border-top: 2px solid var(--accent);
  padding: 80px 24px;
  text-align: center;
}

.venues-bottom-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  color: white;
  margin-bottom: 16px;
}

.venues-bottom-cta p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 16px;
}

/* ============================================================
   TECHNOLOGY — technology.html
   ============================================================ */

.tech-hero {
  background: var(--primary);
  padding: 140px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tech-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(0, 230, 118, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.tech-section {
  padding: 80px 0;
}

.tech-section:nth-child(even) {
  background: var(--secondary);
}

.tech-section:nth-child(odd) {
  background: var(--primary);
}

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

.tech-section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  color: white;
  margin-bottom: 8px;
  line-height: 1.15;
}

.tech-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.tech-body {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 720px;
}

/* Spec table */
.spec-table-card {
  background: var(--secondary);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table thead {
  background: rgba(0, 230, 118, 0.08);
}

.spec-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 14px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 230, 118, 0.15);
}

.spec-table td {
  padding: 14px 24px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table td:first-child {
  color: var(--text-muted);
  width: 40%;
}

.spec-table td:last-child {
  color: white;
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 15px;
}

/* Feature list */
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  background: var(--secondary);
  padding: 14px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-list li i {
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
}

/* Stat cards */
.tech-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.tech-stat-card {
  background: var(--primary);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s;
}

.tech-stat-card:hover {
  border-color: rgba(0, 230, 118, 0.3);
}

.tech-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.tech-stat-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: white;
  display: block;
  margin-bottom: 6px;
}

.tech-stat-desc {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

/* Process steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

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

.step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  min-width: 64px;
  text-align: right;
  opacity: 0.85;
}

.step-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: white;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   PROJECTS — projects.html
   ============================================================ */

.projects-hero {
  background: var(--primary);
  padding: 140px 24px 72px;
  text-align: center;
}

.projects-section {
  background: var(--primary);
  padding: 80px 0 100px;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.project-card {
  background: var(--secondary);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover-dark);
}

.project-img-placeholder {
  height: 220px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 80%, rgba(0, 230, 118, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, transparent 50%, rgba(10, 10, 20, 0.7) 100%);
}

.project-img-placeholder i {
  font-size: 80px;
  color: rgba(0, 230, 118, 0.15);
  position: relative;
  z-index: 1;
}

.project-year {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

.project-info {
  padding: 24px;
}

.project-sport-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.project-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}

.project-detail {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.project-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.stat-pill {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 12px;
  border-radius: 4px;
}

.projects-cta {
  background: var(--secondary);
  border-top: 2px solid var(--accent);
  padding: 80px 24px;
  text-align: center;
}

.projects-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  color: white;
  margin-bottom: 16px;
}

.projects-cta p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}

/* ============================================================
   CONTACT — contact.html
   ============================================================ */

.contact-hero {
  background: var(--primary);
  padding: 140px 24px 60px;
  text-align: center;
}

.contact-main {
  background: var(--primary);
  padding: 60px 0 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: white;
  margin-bottom: 8px;
}

.contact-form-wrap .form-intro {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: white;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2390A4AE' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(144, 164, 174, 0.5);
}

.form-group select option {
  background: var(--secondary);
  color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 56px 24px;
  background: var(--secondary);
  border: 1px solid var(--accent);
  border-radius: 8px;
}

.success-icon {
  font-size: 64px;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: white;
  margin-bottom: 12px;
}

/* ============================================================
   Stadium Lighting Simulator — Phase 3
   ============================================================ */
.stadium-simulator {
  padding: 80px 0 64px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--pitch-black) 100%);
}

.sim-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 40px auto 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  aspect-ratio: 16 / 9;
  box-shadow: 0 0 60px rgba(0, 214, 79, 0.12), var(--shadow-dark);
}

.sim-before,
.sim-after {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=960&q=80');
  background-size: cover;
  background-position: center top;
}

.sim-before {
  filter: brightness(0.28) sepia(0.7) hue-rotate(-15deg) saturate(1.5);
}

.sim-after {
  clip-path: inset(0 50% 0 0);
  filter: brightness(1.2) saturate(1.1);
  will-change: clip-path;
}

.sim-label {
  position: absolute;
  top: 20px;
  padding: 5px 14px;
  font-family: var(--font-stats);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  pointer-events: none;
}

.sim-label-before {
  left: 20px;
  background: rgba(0, 0, 0, 0.65);
  color: #FF8F00;
  border: 1px solid rgba(255, 143, 0, 0.4);
}

.sim-label-after {
  right: 20px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--accent);
  border: 1px solid rgba(0, 214, 79, 0.4);
}

.sim-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.sim-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0, 214, 79, 0.6);
}

.sim-handle-grip {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--pitch-black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(0, 214, 79, 0.5), 0 2px 8px rgba(0,0,0,0.6);
  position: relative;
  pointer-events: all;
  cursor: ew-resize;
}

.sim-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-family: var(--font-stats);
}

/* View Transitions API — Phase 3 */
@view-transition {
  navigation: auto;
}

.home-hero {
  view-transition-name: sport-hero;
}

@keyframes sport-vt-fade-in {
  from { opacity: 0; }
}

@keyframes sport-vt-fade-out {
  to { opacity: 0; }
}

::view-transition-old(sport-hero) {
  animation: 300ms ease-in both sport-vt-fade-out;
}

::view-transition-new(sport-hero) {
  animation: 400ms ease-out both sport-vt-fade-in;
}

.form-success p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto;
}

/* Contact sidebar */
.contact-sidebar {
  position: sticky;
  top: 100px;
}

.contact-trust-intro {
  margin-bottom: 28px;
}

.contact-trust-intro h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: white;
  margin-bottom: 8px;
}

.contact-trust-intro p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.trust-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.trust-card {
  background: var(--secondary);
  border-radius: var(--radius-card);
  border-left: 3px solid var(--accent);
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-card-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.trust-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
}

.contact-response-note {
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-response-note i {
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
}

.contact-response-note p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.contact-response-note strong {
  color: white;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1279px) {
  .hero-headline { font-size: 72px; }
  .venue-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 1023px) {
  .tech-teaser-inner { grid-template-columns: 1fr; gap: 40px; }
  .venue-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-container > .btn-accent { display: none; }

  /* Typography */
  .hero-headline { font-size: 52px; }
  .page-hero h1 { font-size: 36px; }
  .cta-banner h2 { font-size: 36px; }

  /* Stats strip */
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-item:nth-child(2) { border-right: none; }
  .stats-strip-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.1); }
  .stats-strip-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.1); }

  /* Grids */
  .venue-cards-grid { grid-template-columns: 1fr; }
  .projects-preview-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .tech-stats-grid { grid-template-columns: 1fr 1fr; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Technology */
  .tech-section h2 { font-size: 32px; }
  .step-number { font-size: 36px; min-width: 48px; }

  /* Venue sections */
  .venue-header { flex-direction: column; }
  .venue-header h2 { font-size: 28px; }

  /* Projects hero */
  .projects-teaser-header { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* General */
  .venue-types-section { padding: 64px 0; }
  .venue-types-section .section-header h2 { font-size: 32px; }
  .tech-teaser { padding: 64px 0; }
  .projects-teaser { padding: 64px 0; }
  .projects-section { padding: 60px 0 80px; }
  .cta-banner { padding: 64px 24px; }
}

@media (max-width: 479px) {
  .hero-headline { font-size: 40px; }
  .tech-stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Venue Lighting Configurator
   ============================================================ */
.venue-configurator {
  padding: 100px 0;
  background: #070710;
  position: relative;
  overflow: hidden;
}
.venue-configurator::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,230,118,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.venue-configurator .section-label { color: var(--accent); }
.venue-configurator .section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.venue-configurator .section-header p { color: var(--text-muted); font-size: 17px; }

.config-wrap {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.config-step-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.config-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.config-option {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.config-option:hover {
  border-color: rgba(0,230,118,0.3);
  background: rgba(0,230,118,0.04);
}
.config-option.selected {
  border-color: var(--accent);
  background: rgba(0,230,118,0.08);
  box-shadow: 0 0 0 1px var(--accent);
}
.config-option-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.config-option-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: white;
  line-height: 1.3;
}
.config-option-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Results panel */
.config-results {
  background: rgba(0,230,118,0.04);
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: 16px;
  padding: 40px;
  position: sticky;
  top: 100px;
  transition: opacity 0.4s;
}
.config-results.empty {
  opacity: 0.4;
}
.config-results-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.config-results-sport {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.config-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 16px;
}
.config-spec-row:last-of-type { border-bottom: none; }
.config-spec-key {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.config-spec-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: white;
  text-align: right;
}
.config-spec-val.highlight { color: var(--accent); }
.config-broadcast-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 20px;
}
.config-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.config-cta {
  margin-top: 28px;
}
.config-placeholder {
  text-align: center;
  padding: 48px 0;
}
.config-placeholder p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* FAQ - Sport */
.sport-faq {
  padding: 96px 0;
  background: var(--secondary);
}
.sport-faq .section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: white;
}
.sport-faq .section-header p { color: var(--text-muted); font-size: 16px; }
.sport-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.sport-faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.sport-faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
  transition: background 0.2s;
}
.sport-faq-q:hover { background: rgba(255,255,255,0.03); }
.sport-faq-q h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: white;
  line-height: 1.4;
  flex: 1;
}
.sport-faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.sport-faq-item.open .sport-faq-icon {
  background: var(--accent);
  color: #0A0A14;
  transform: rotate(45deg);
}
.sport-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease;
  padding: 0 24px;
}
.sport-faq-item.open .sport-faq-a {
  max-height: 400px;
  padding: 0 24px 24px;
}
.sport-faq-a p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
@media (max-width: 767px) {
  .config-wrap { grid-template-columns: 1fr; }
  .config-results { position: static; }
  .sport-faq-grid { grid-template-columns: 1fr; }
  .config-options { grid-template-columns: 1fr; }
  .venue-configurator .section-header h2 { font-size: 32px; }
}

/* ---------------------------------------------------------
   Stadium Light Beams — hero effect
   --------------------------------------------------------- */
.home-hero {
  position: relative;
  overflow: hidden;
}

.stadium-beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.beam {
  position: absolute;
  top: -10%;
  width: 3px;
  height: 130%;
  background: linear-gradient(
    180deg,
    rgba(0, 230, 118, 0) 0%,
    rgba(0, 230, 118, 0.25) 30%,
    rgba(0, 230, 118, 0.55) 60%,
    rgba(0, 230, 118, 0.15) 85%,
    rgba(0, 230, 118, 0) 100%
  );
  filter: blur(2px);
  transform-origin: top center;
  opacity: 0;
  animation: beamSweep 8s ease-in-out infinite;
}

.beam-1 { left: 15%; animation-delay: 0s;   animation-duration: 9s; }
.beam-2 { left: 35%; animation-delay: 1.8s; animation-duration: 8.5s; }
.beam-3 { left: 62%; animation-delay: 3.2s; animation-duration: 9.5s; }
.beam-4 { left: 82%; animation-delay: 4.5s; animation-duration: 8s; }

@keyframes beamSweep {
  0%   { opacity: 0; transform: rotate(-8deg) scaleX(1); }
  15%  { opacity: 1; transform: rotate(0deg) scaleX(1.5); }
  45%  { opacity: 0.7; transform: rotate(5deg) scaleX(1); }
  70%  { opacity: 1; transform: rotate(-3deg) scaleX(2); }
  90%  { opacity: 0.4; transform: rotate(7deg) scaleX(1.2); }
  100% { opacity: 0; transform: rotate(-8deg) scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .beam { animation: none; opacity: 0; }
}

/* ---------------------------------------------------------
   Enhanced hero scroll hint
   --------------------------------------------------------- */
.hero-scroll-hint {
  animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-hint { animation: none; }
}

/* ---------------------------------------------------------
   Stats strip entrance
   --------------------------------------------------------- */
.stats-strip.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
   Performance
   --------------------------------------------------------- */
.venue-types-section,
.tech-teaser,
.projects-teaser,
.cta-banner {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

/* ---------------------------------------------------------
   Hero content animation (overridden by GSAP on load)
   --------------------------------------------------------- */
.hero-content {
  animation: sportHeroIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes sportHeroIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------------
   Phase 2 — Muted video background
   --------------------------------------------------------- */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
  pointer-events: none;
}

/* Darken overlay above video */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5, 8, 18, 0.78) 0%,
    rgba(5, 8, 18, 0.5) 55%,
    rgba(5, 8, 18, 0.65) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ---------------------------------------------------------
   Phase 2 — GSAP spotlight rig
   --------------------------------------------------------- */
.gsap-rig {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}

.gsap-spot {
  position: absolute;
  inset: 0;
  clip-path: circle(0% at 50% 50%);
}

.gsap-spot-1 {
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 190, 0.22) 0%, transparent 55%);
}
.gsap-spot-2 {
  background: radial-gradient(circle at 100% 0%, rgba(255, 255, 190, 0.22) 0%, transparent 55%);
}
.gsap-spot-3 {
  background: radial-gradient(circle at 0% 100%, rgba(255, 255, 190, 0.18) 0%, transparent 55%);
}
.gsap-spot-4 {
  background: radial-gradient(circle at 100% 100%, rgba(255, 255, 190, 0.18) 0%, transparent 55%);
}

/* ---------------------------------------------------------
   Phase 2 — Intro darkness veil
   --------------------------------------------------------- */
.hero-intro-veil {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 15;
  pointer-events: none;
}

/* With GSAP managing the animation, suppress CSS animation on content */
.hero-intro-veil ~ .stadium-beams,
.hero-intro-veil ~ .hero-content {
  /* GSAP handles opacity; prevent CSS animation from conflicting */
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-intro-veil { display: none; }
  .gsap-rig { display: none; }
}

.hero-eyebrow {
  animation: sportHeroIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both 0.1s;
}

/* ---------------------------------------------------------
   Venue card top bar color animation
   --------------------------------------------------------- */
.venue-card .card-top-bar {
  background: var(--accent);
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.venue-cards-grid.revealed .venue-card .card-top-bar {
  transform: scaleX(1);
}

.venue-cards-grid.revealed .venue-card:nth-child(1) .card-top-bar { transition-delay: 0.05s; }
.venue-cards-grid.revealed .venue-card:nth-child(2) .card-top-bar { transition-delay: 0.15s; }
.venue-cards-grid.revealed .venue-card:nth-child(3) .card-top-bar { transition-delay: 0.25s; }
.venue-cards-grid.revealed .venue-card:nth-child(4) .card-top-bar { transition-delay: 0.35s; }
.venue-cards-grid.revealed .venue-card:nth-child(5) .card-top-bar { transition-delay: 0.45s; }
.venue-cards-grid.revealed .venue-card:nth-child(6) .card-top-bar { transition-delay: 0.55s; }

/* ── Venue Lighting Schematic (ECO-49) ──────────────────── */
.field-schematic {
  padding: 80px 0;
  background: var(--secondary);
}
.field-schematic .section-header { margin-bottom: 36px; }
.field-schematic .section-header h2 { color: var(--text-primary); }
.field-schematic .section-header p  { color: var(--text-muted); max-width: 560px; }

.schematic-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}
.schematic-svg-container {
  background: #0c180c;
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,214,79,0.12);
  overflow: hidden;
}
#fieldSVG { width: 100%; height: auto; display: block; }
.light-spot {
  fill: rgba(255,255,255,0.10);
  stroke: rgba(255,255,255,0.28);
  stroke-width: 1.5;
  cursor: pointer;
  transition: fill 0.2s, stroke 0.2s;
}
.light-spot:hover {
  fill: rgba(0,214,79,0.28);
  stroke: var(--accent);
}
.light-spot.active {
  fill: var(--accent);
  stroke: rgba(255,255,255,0.85);
  stroke-width: 2;
}
.light-spot:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
@keyframes spot-shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}
.light-spot.shake { animation: spot-shake 0.4s ease; }
.glow-circle { mix-blend-mode: screen; }

.schematic-data-overlay {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.schematic-metric { display: flex; flex-direction: column; gap: 4px; }
.schematic-metric--full { gap: 8px; }
.sm-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-family: var(--font-display);
}
.sm-val {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.sm-max   { font-size: 14px; color: rgba(255,255,255,0.3); display: inline-block; margin-left: 2px; }
.sm-val-sm    { font-size: 16px; }
.sm-val-class { font-size: 13px; color: rgba(255,255,255,0.65); font-family: var(--font-body); }
.fc-bar-wrap  { height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.fc-bar       { height: 100%; background: var(--accent); border-radius: 3px; transition: width 0.4s ease; }
.schematic-hint { font-size: 11px; color: rgba(255,255,255,0.28); line-height: 1.5; }
@media (max-width: 900px) {
  .schematic-wrap { grid-template-columns: 1fr; }
}
