/* ==========================================================================
   HATCO SPORTS INFRA - COMING SOON STYLESHEET
   Brand Colors: Primary #204F37 | Secondary/Accent #FAFF54
   Aesthetic: Premium Sports Infrastructure, Court Markings, Architectural CAD
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Brand Color Palette */
  --color-primary: #204F37;              /* Hatco Brand Green */
  --color-primary-dark: #143524;         /* Deep stadium green */
  --color-primary-darker: #0c1e15;       /* Base canvas darkest green */
  --color-primary-light: #2b6a4a;        /* Lighter green border & accents */
  --color-primary-surface: #183e2b;      /* Card background tone */
  
  --color-accent: #FAFF54;               /* Hatco Electric Yellow / Lime */
  --color-accent-hover: #f7fd2b;         /* Button active hover */
  --color-accent-glow: rgba(250, 255, 84, 0.45);
  --color-accent-subtle: rgba(250, 255, 84, 0.12);
  --color-accent-border: rgba(250, 255, 84, 0.28);
  
  --color-text-main: #FFFFFF;
  --color-text-muted: #bcd6c7;
  --color-text-dim: #7da58e;
  --color-dark-text: #0c1e15;            /* For text on yellow buttons */
  
  /* Court & Blueprint Elements */
  --court-line: rgba(250, 255, 84, 0.2);
  --court-line-bold: rgba(250, 255, 84, 0.4);
  --grid-line: rgba(255, 255, 255, 0.05);
  --glass-bg: rgba(18, 44, 30, 0.72);
  --glass-border: rgba(250, 255, 84, 0.18);
  
  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout & Spacing */
  --container-max-width: 1240px;
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-normal: 0.35s var(--ease-smooth);
  --transition-spring: 0.6s var(--ease-spring);
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-primary-darker);
  color: var(--color-text-main);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--color-primary-darker);
  color: var(--color-text-main);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input {
  font-family: inherit;
  font-size: inherit;
}

.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;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 5vw, 2.5rem);
  padding-right: clamp(1.25rem, 5vw, 2.5rem);
}

.text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   3. Custom Interactive Cursor (Desktop)
   -------------------------------------------------------------------------- */
.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, opacity 0.3s ease;
  box-shadow: 0 0 10px var(--color-accent);
  display: none;
}

.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
  opacity: 0.75;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .custom-cursor-dot,
  .custom-cursor-ring {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   4. Background Atmosphere: Stadium Lights & Blueprint Grid
   -------------------------------------------------------------------------- */
.bg-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Ambient Stadium Floodlight Glows */
.stadium-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  will-change: transform;
}

.stadium-glow.top-left {
  top: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(250, 255, 84, 0.22) 0%, rgba(32, 79, 55, 0.4) 60%, transparent 80%);
  animation: stadiumDrift 18s ease-in-out infinite alternate;
}

.stadium-glow.top-right {
  top: -120px;
  right: -100px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(32, 79, 55, 0.7) 0%, rgba(43, 106, 74, 0.35) 50%, transparent 75%);
  animation: stadiumDrift 22s ease-in-out infinite alternate-reverse;
}

.stadium-glow.center-field {
  top: 45%;
  left: 50%;
  width: 900px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(32, 79, 55, 0.4) 0%, rgba(20, 53, 36, 0.2) 60%, transparent 80%);
}

@keyframes stadiumDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.1); }
}

/* Interactive Blueprint Grid Canvas */
.blueprint-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

/* Court Lines SVG Overlay */
.court-lines-svg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--color-accent);
}

.court-lines-svg {
  width: 100%;
  height: 100%;
  opacity: 0.65;
  animation: courtPulse 8s ease-in-out infinite alternate;
}

@keyframes courtPulse {
  0% { opacity: 0.5; }
  100% { opacity: 0.8; }
}

/* Artificial turf subtle micro-texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(250, 255, 84, 0.05) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   5. Loading Screen
   -------------------------------------------------------------------------- */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: var(--color-primary-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem;
}

.loader-emblem-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 0.5rem;
}

.loader-svg {
  width: 100%;
  height: 100%;
  animation: loaderSpin 12s linear infinite;
}

.loader-track-progress {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: drawTrack 1.8s ease-out forwards;
}

.loader-arc {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawArc 1.4s ease-out forwards;
}

.loader-arc.arc-1 { animation-delay: 0.1s; }
.loader-arc.arc-2 { animation-delay: 0.25s; }
.loader-arc.arc-3 { animation-delay: 0.4s; }
.loader-arc.arc-4 { animation-delay: 0.55s; }

@keyframes drawTrack {
  to { stroke-dashoffset: 40; }
}

@keyframes drawArc {
  to { stroke-dashoffset: 0; }
}

@keyframes loaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-brand-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  text-shadow: 0 0 20px var(--color-accent-glow);
}

.loader-brand-subtitle {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: #ffffff;
  margin-top: -0.5rem;
}

.loader-bar-track {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.75rem;
  position: relative;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
  transition: width 0.15s ease-out;
}

.loader-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--color-text-dim);
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(12, 30, 21, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(250, 255, 84, 0.12);
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(12, 30, 21, 0.92);
  border-bottom-color: rgba(250, 255, 84, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
  position: relative;
}

.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-normal), filter var(--transition-normal);
}

.brand-link:hover .brand-logo {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 0 12px var(--color-accent-glow));
}

.header-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.95rem;
  background: rgba(32, 79, 55, 0.55);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 8px var(--color-accent);
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  animation: pulseBeacon 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseBeacon {
  0% { transform: scale(0.8); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* --------------------------------------------------------------------------
   7. Common Layout, Typography & UI Elements
   -------------------------------------------------------------------------- */
main {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
}

section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-header {
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem) auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.kicker-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--color-accent);
  box-shadow: 0 0 6px var(--color-accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text-main);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Reveal Items for Scroll Observer */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* Court Corner Architectural Brackets */
.corner-bracket {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(250, 255, 84, 0.35);
  border-style: solid;
  pointer-events: none;
  display: none;
}

@media (min-width: 768px) {
  .corner-bracket {
    display: block;
  }
}

.top-left-bracket { top: 20px; left: 20px; border-width: 2px 0 0 2px; }
.top-right-bracket { top: 20px; right: 20px; border-width: 2px 2px 0 0; }
.bottom-left-bracket { bottom: 20px; left: 20px; border-width: 0 0 2px 2px; }
.bottom-right-bracket { bottom: 20px; right: 20px; border-width: 0 2px 2px 0; }

/* --------------------------------------------------------------------------
   8. Full-Screen Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6rem) 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(32, 79, 55, 0.6) 0%, rgba(12, 30, 21, 0.95) 75%);
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Blueprint HUD Badge */
.blueprint-hud-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(18, 44, 30, 0.85);
  border: 1px solid rgba(250, 255, 84, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-dim);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hud-marker {
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 1px;
}

.hud-code {
  color: var(--color-accent);
  padding-left: 0.4rem;
  border-left: 1px solid rgba(250, 255, 84, 0.2);
}

.hero-tag-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(250, 255, 84, 0.12);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 0 16px rgba(250, 255, 84, 0.18);
}

.badge-bolt {
  color: var(--color-accent);
  animation: boltFlicker 2.5s infinite;
}

@keyframes boltFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(32, 79, 55, 0.75);
  border: 1px solid var(--color-primary-light);
  color: var(--color-text-main);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pin-icon {
  color: var(--color-accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-text-main);
  max-width: 980px;
  margin-bottom: 1.5rem;
}

.br-desktop {
  display: inline;
}

@media (max-width: 768px) {
  .br-desktop {
    display: none;
  }
}

.title-highlight {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 25px rgba(250, 255, 84, 0.3);
}

.title-highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(250, 255, 84, 0.25);
  border-radius: 3px;
  z-index: -1;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 760px;
  margin-bottom: 2.2rem;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
  text-decoration: none;
  min-height: 52px;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-dark-text);
  box-shadow: 0 4px 20px rgba(250, 255, 84, 0.35);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  box-shadow: 0 6px 28px rgba(250, 255, 84, 0.55);
  transform: translateY(-2px);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-outline {
  background: rgba(32, 79, 55, 0.4);
  color: var(--color-text-main);
  border-color: var(--color-primary-light);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(32, 79, 55, 0.85);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-subtext {
  font-size: 0.75rem;
  color: var(--color-accent);
  padding-left: 0.35rem;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   9. One-Week Countdown Section
   -------------------------------------------------------------------------- */
.countdown-wrapper {
  width: 100%;
  max-width: 820px;
  background: rgba(18, 44, 30, 0.8);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(250, 255, 84, 0.15);
  position: relative;
  overflow: hidden;
}

.countdown-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.countdown-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  color: var(--color-text-muted);
}

.clock-icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.countdown-text {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  font-weight: 500;
}

.countdown-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2.5vw, 1.5rem);
}

.time-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 130px;
}

.time-gauge {
  position: relative;
  width: clamp(72px, 16vw, 110px);
  height: clamp(72px, 16vw, 110px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gauge-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gauge-bg {
  fill: rgba(12, 30, 21, 0.7);
  stroke: rgba(250, 255, 84, 0.1);
  stroke-width: 4;
}

.gauge-bar {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.6s ease;
  filter: drop-shadow(0 0 5px var(--color-accent-glow));
}

.time-value-wrap {
  position: relative;
  z-index: 2;
}

.time-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
}

.time-label {
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 1.2vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-top: 0.8rem;
}

.countdown-divider {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: rgba(250, 255, 84, 0.4);
  align-self: flex-start;
  margin-top: clamp(20px, 4vw, 32px);
  user-select: none;
}

/* Zero / Launch reached message */
.countdown-finished {
  padding: 1.5rem 1rem;
  text-align: center;
}

.countdown-finished.hidden {
  display: none;
}

.ready-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 0.5rem;
}

.ready-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  text-shadow: 0 0 25px var(--color-accent-glow);
  margin-bottom: 0.5rem;
}

.ready-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   10. Sports Infrastructure Showcase Section
   -------------------------------------------------------------------------- */
.services-section {
  background-color: var(--color-primary-dark);
  border-top: 1px solid rgba(250, 255, 84, 0.1);
  border-bottom: 1px solid rgba(250, 255, 84, 0.1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  background: rgba(18, 44, 30, 0.7);
  border: 1px solid rgba(250, 255, 84, 0.14);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 255, 84, 0.45);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35), 0 0 20px rgba(250, 255, 84, 0.1);
}

.service-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.card-corner-spec {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-text-dim);
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: rgba(32, 79, 55, 0.55);
  border: 1px solid var(--color-accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08) rotate(-2deg);
  background: rgba(250, 255, 84, 0.15);
  box-shadow: 0 0 16px rgba(250, 255, 84, 0.25);
}

.service-svg {
  width: 32px;
  height: 32px;
}

.service-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-text-main);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.service-specs {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-specs li span {
  color: var(--color-accent);
  font-weight: 600;
}

/* Wide card for Custom Infrastructure */
@media (min-width: 1024px) {
  .service-card-wide {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 2rem;
    align-items: start;
  }

  .service-card-wide .service-icon-wrap {
    grid-row: span 3;
    width: 80px;
    height: 80px;
  }

  .service-card-wide .service-svg {
    width: 44px;
    height: 44px;
  }

  .custom-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 2rem;
  }
}

/* --------------------------------------------------------------------------
   11. About Hatco Sports Infra Section
   -------------------------------------------------------------------------- */
.about-section {
  background-color: var(--color-primary-darker);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.about-content .section-title {
  text-align: left;
}

.about-lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.about-body {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.2rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar-bullet {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 0.2rem;
}

.pillar-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.about-meta-tag {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  background: rgba(32, 79, 55, 0.5);
  border: 1px solid var(--color-accent-border);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.meta-sep {
  color: var(--color-accent);
  opacity: 0.5;
}

.meta-label {
  color: var(--color-text-dim);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.meta-val {
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Blueprint Visual Frame */
.blueprint-frame {
  background: rgba(14, 34, 23, 0.9);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(250, 255, 84, 0.08);
  overflow: hidden;
  position: relative;
}

.blueprint-header-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.2rem;
  background: rgba(11, 26, 18, 0.95);
  border-bottom: 1px solid rgba(250, 255, 84, 0.15);
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.cad-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(250, 255, 84, 0.35);
}

.cad-dot:first-child { background-color: #FAFF54; }

.cad-title {
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-left: 0.5rem;
  flex-grow: 1;
}

.cad-scale {
  color: var(--color-accent);
  font-weight: 700;
}

.blueprint-canvas-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at center, rgba(32, 79, 55, 0.5) 0%, rgba(11, 26, 18, 0.95) 85%);
  overflow: hidden;
}

.blueprint-schematic-svg {
  width: 100%;
  height: 100%;
}

/* CAD Animation */
.cad-arc {
  animation: cadArcPulse 6s ease-in-out infinite alternate;
}

.cad-arc-1 { animation-delay: 0s; }
.cad-arc-2 { animation-delay: 0.5s; }
.cad-arc-3 { animation-delay: 1s; }
.cad-arc-4 { animation-delay: 1.5s; }
.cad-arc-5 { animation-delay: 2s; }

@keyframes cadArcPulse {
  0% { stroke-opacity: 0.4; }
  100% { stroke-opacity: 0.95; filter: drop-shadow(0 0 4px var(--color-accent)); }
}

.blueprint-scanner {
  animation: scannerSweep 5s ease-in-out infinite alternate;
}

@keyframes scannerSweep {
  0% { transform: translateY(0px); opacity: 0.3; }
  50% { opacity: 0.9; filter: drop-shadow(0 0 6px var(--color-accent)); }
  100% { transform: translateY(260px); opacity: 0.3; }
}

.blueprint-stamp {
  position: absolute;
  top: 16px;
  right: 16px;
  transform: rotate(-6deg);
}

.stamp-border {
  border: 1.5px dashed var(--color-accent);
  padding: 0.3rem 0.6rem;
  background: rgba(18, 44, 30, 0.85);
  font-family: var(--font-display);
  text-align: center;
}

.stamp-company {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-accent);
}

.stamp-status {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
}

.blueprint-footer-specs {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 1.2rem;
  background: rgba(11, 26, 18, 0.95);
  border-top: 1px solid rgba(250, 255, 84, 0.15);
  font-family: var(--font-display);
  font-size: 0.68rem;
  color: var(--color-text-dim);
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   12. Development Progress Timeline Section
   -------------------------------------------------------------------------- */
.timeline-section {
  background-color: var(--color-primary-dark);
  border-top: 1px solid rgba(250, 255, 84, 0.1);
  border-bottom: 1px solid rgba(250, 255, 84, 0.1);
}

.timeline-stepper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .timeline-stepper {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

/* Connecting track line */
.timeline-track-bg {
  display: none;
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

@media (min-width: 900px) {
  .timeline-track-bg {
    display: block;
  }
}

.timeline-track-active {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; /* Progress through stage 3 */
  height: 100%;
  background: linear-gradient(90deg, #FAFF54, #FAFF54);
  box-shadow: 0 0 10px var(--color-accent);
}

.timeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-indicator {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-primary-darker);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text-dim);
  transition: all var(--transition-normal);
  position: relative;
}

.step-completed .step-indicator {
  background: var(--color-primary);
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 0 12px rgba(250, 255, 84, 0.25);
}

.step-icon {
  width: 22px;
  height: 22px;
}

/* Active Building Stage with Pulsing Radar */
.step-active .step-indicator {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-dark-text);
  box-shadow: 0 0 24px rgba(250, 255, 84, 0.6);
  transform: scale(1.1);
}

.step-active .step-indicator .pulse-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  animation: radarPulse 1.8s cubic-bezier(0.1, 0.6, 0.3, 1) infinite;
}

@keyframes radarPulse {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.step-body {
  background: rgba(18, 44, 30, 0.6);
  border: 1px solid rgba(250, 255, 84, 0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 180px;
}

.step-active .step-body {
  border-color: var(--color-accent);
  background: rgba(18, 44, 30, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.step-tag {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text-dim);
  margin-bottom: 0.4rem;
}

.step-tag.active-tag {
  color: var(--color-accent);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.step-state-badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.badge-done {
  background: rgba(32, 79, 55, 0.6);
  color: var(--color-accent);
  border: 1px solid rgba(250, 255, 84, 0.3);
}

.badge-active {
  background: var(--color-accent);
  color: var(--color-dark-text);
  box-shadow: 0 0 10px var(--color-accent);
}

.badge-upcoming {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   13. Contact & Notification Section
   -------------------------------------------------------------------------- */
.notify-section {
  background-color: var(--color-primary-darker);
  position: relative;
}

.notify-card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(18, 44, 30, 0.85);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.card-glow-element {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.notify-icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(250, 255, 84, 0.12);
  color: var(--color-accent);
  border: 1px solid var(--color-accent-border);
  margin-bottom: 1.25rem;
}

.notify-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-main);
  margin-bottom: 0.6rem;
}

.notify-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.notify-form {
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (min-width: 600px) {
  .form-row {
    flex-direction: row;
    align-items: stretch;
  }
}

.input-wrapper {
  position: relative;
  flex: 1;
}

.email-input {
  width: 100%;
  height: 54px;
  background: rgba(12, 30, 21, 0.85);
  border: 1.5px solid rgba(250, 255, 84, 0.25);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.2rem 0.75rem 3rem;
  color: var(--color-text-main);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.email-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 16px rgba(250, 255, 84, 0.35);
  background: rgba(14, 36, 25, 0.95);
}

.email-input::placeholder {
  color: var(--color-text-dim);
}

.input-mail-icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--color-text-dim);
  pointer-events: none;
  transition: color var(--transition-fast);
}

.email-input:focus + .input-mail-icon {
  color: var(--color-accent);
}

.btn-notify {
  height: 54px;
  background-color: var(--color-accent);
  color: var(--color-dark-text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 0 1.85rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(250, 255, 84, 0.35);
  transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-notify:hover {
  background-color: var(--color-accent-hover);
  box-shadow: 0 6px 24px rgba(250, 255, 84, 0.55);
  transform: translateY(-2px);
}

.btn-notify:active {
  transform: scale(0.98);
}

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(12, 30, 21, 0.25);
  border-top-color: var(--color-dark-text);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn-notify.loading .btn-text,
.btn-notify.loading .btn-icon {
  display: none;
}

.btn-notify.loading .btn-spinner {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  min-height: 24px;
  transition: all 0.3s ease;
}

.form-feedback.success {
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(250, 255, 84, 0.4);
}

.form-feedback.error {
  color: #ff7575;
}

.form-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--color-text-dim);
  margin-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #08150f;
  border-top: 1px solid rgba(250, 255, 84, 0.15);
  padding: 4.5rem 0 2rem 0;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1.5fr;
  }
}

.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
}

.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

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

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-main);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-contact-link:hover {
  color: var(--color-accent);
  transform: translateX(3px);
}

.footer-phone-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.footer-contact-link:hover .footer-phone-icon {
  transform: scale(1.15);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-text-main);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(32, 79, 55, 0.5);
  border: 1px solid var(--color-accent-border);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.85rem;
}

.footer-status-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.footer-domain {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

.footer-domain strong {
  color: var(--color-text-main);
  margin-left: 0.3rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: var(--color-text-dim);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.copyright-text {
  font-family: var(--font-body);
}

/* --------------------------------------------------------------------------
   15. Accessibility & Motion Preferences
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }

  .stadium-glow,
  .court-lines-svg,
  .blueprint-scanner,
  .loader-svg,
  .live-dot::after {
    animation: none !important;
  }

  .custom-cursor-dot,
  .custom-cursor-ring {
    display: none !important;
  }
}
