:root {
  --primary: #2ecc71;
  --primary-light: #58d68d;
  --primary-dark: #27ae60;
  --primary-glow: rgba(46, 204, 113, 0.3);
  --secondary: #e0e0e0;
  --secondary-light: #f0f0f0;
  --accent: #3498db;
  --dark: #0a0a0f;
  --dark-lighter: #12121a;
  --dark-card: #16161f;
  --dark-border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --text-soft: #c0c0c0;
  --text-secondary: #b0b0b0;
  --gradient-primary: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  --gradient-dark: linear-gradient(135deg, #12121a 0%, #0a0a0f 100%);
  --gradient-accent: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  --gradient-mesh: radial-gradient(at 40% 20%,
      rgba(46, 204, 113, 0.08) 0px,
      transparent 50%),
    radial-gradient(at 80% 0%,
      rgba(52, 152, 219, 0.06) 0px,
      transparent 50%),
    radial-gradient(at 0% 50%,
      rgba(46, 204, 113, 0.06) 0px,
      transparent 50%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Animated Background */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(46, 204, 113, 0.05) 1px,
      transparent 1px),
    linear-gradient(90deg, rgba(46, 204, 113, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
  z-index: 0;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav.scrolled {
  padding: 0.75rem 5%;
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo img {
  height: 120px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.65rem 1.5rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

/* Hide mobile-only CTA on desktop */
.nav-links li.mobile-cta {
  display: none;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--secondary);
  transition: all 0.3s ease;
}

/* Mobile toggle animation when active */
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 12rem 5% 6rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero h1 .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px var(--primary-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(46, 204, 113, 0.05);
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-visual-container {
  position: relative;
  background: var(--dark-card);
  border-radius: 20px;
  border: 1px solid var(--dark-border);
  padding: 2rem;
  overflow: hidden;
}

.hero-visual-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.dashboard-mockup {
  width: 100%;
  border-radius: 12px;
  background: var(--dark-lighter);
  padding: 1.5rem;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--dark-border);
}

.dashboard-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.dashboard-tabs {
  display: flex;
  gap: 0.5rem;
}

.dashboard-tab {
  padding: 0.35rem 0.75rem;
  background: transparent;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.dashboard-tab.active {
  background: var(--primary);
  color: #ffffff;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dash-stat {
  background: var(--dark-card);
  border-radius: 10px;
  padding: 1rem;
  border: 1px solid var(--dark-border);
}

.dash-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.dash-stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

/* Floating Elements */
.floating-card {
  position: absolute;
  background: var(--dark-card);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--dark-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-card.top-left {
  top: -20px;
  left: -40px;
  animation-delay: 0s;
}

.floating-card.bottom-right {
  bottom: -20px;
  right: -40px;
  animation-delay: 2s;
}

.floating-card.mid-left {
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
  animation-delay: 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating-card.mid-left {
  animation: float-mid 6s ease-in-out infinite 1s;
}

@keyframes float-mid {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 10px));
  }
}

.floating-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.floating-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.floating-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Enhanced Dashboard Styles */
.dash-dot {
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--dark-card);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid var(--dark-border);
}

.team-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.team-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.team-logo.home {
  background: var(--gradient-primary);
  color: #ffffff;
}

.team-logo.away {
  background: var(--gradient-dark);
  color: var(--text);
  border: 1px solid var(--dark-border);
}

.team-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

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

.match-score .score {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
}

.match-score .match-time {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.dash-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.dash-stat-vs {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.possession-bar {
  height: 4px;
  background: var(--dark-border);
  border-radius: 2px;
  overflow: hidden;
}

.possession-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 1s ease;
}

/* Mini Pitch Visualization */
.pitch-container {
  background: var(--dark-card);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--dark-border);
}

.mini-pitch {
  position: relative;
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #1a4d2e 0%, #0d2818 100%);
  border-radius: 8px;
  border: 2px solid rgba(46, 204, 113, 0.3);
  overflow: hidden;
}

.pitch-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
}

.center-line {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

.pitch-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.pitch-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.left-box {
  left: 0;
  border-left: none;
}

.right-box {
  right: 0;
  border-right: none;
}

.heat-zone {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.4;
}

.zone-1 {
  width: 80px;
  height: 60px;
  background: var(--primary);
  left: 60%;
  top: 30%;
}

.zone-2 {
  width: 60px;
  height: 50px;
  background: var(--primary);
  left: 35%;
  top: 45%;
  opacity: 0.3;
}

.zone-3 {
  width: 50px;
  height: 40px;
  background: var(--primary);
  left: 70%;
  top: 55%;
  opacity: 0.25;
}

.player-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: player-pulse 2s infinite;
}

.player-dot.away-dot {
  background: #e74c3c;
}

.ball-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  animation: ball-pulse 1s infinite;
}

@keyframes player-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes ball-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  }
}

.pitch-legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.pitch-legend span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot.home {
  background: var(--primary);
}

.legend-dot.away {
  background: #e74c3c;
}

.legend-dot.ball {
  background: #fff;
}

/* Recent Events */
.recent-events {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: var(--dark-card);
  border-radius: 8px;
  border: 1px solid var(--dark-border);
  font-size: 0.8rem;
}

.event-time {
  color: var(--primary);
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  min-width: 30px;
}

.event-icon {
  font-size: 0.9rem;
}

.event-text {
  color: var(--text-soft);
}

/* Trusted Section */
.trusted {
  padding: 4rem 5%;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  z-index: 1;
}

.trusted-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trusted-label {
  font-size: 0.8rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  opacity: 0.8;
}

.trusted-logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 1px;
}

/* Products Section */
.products {
  padding: 8rem 5%;
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--primary);
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: var(--dark-card);
  border-radius: 20px;
  border: 1px solid var(--dark-border);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-image {
  height: 200px;
  background: var(--dark-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--dark-card), transparent);
}

.product-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 15px 35px var(--primary-glow);
}

.product-content {
  padding: 2rem;
}

.product-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.product-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  padding: 0.4rem 0;
}

.product-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  font-size: 0.8rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.product-link:hover {
  gap: 0.75rem;
}

/* Features Section */
.features {
  padding: 8rem 5%;
  background: var(--dark-lighter);
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: var(--dark-card);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(46, 204, 113, 0.3);
  transform: translateY(-5px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* How It Works */
.how-it-works {
  padding: 8rem 5%;
  position: relative;
  z-index: 1;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.how-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--dark-border),
      var(--dark-border),
      transparent);
  z-index: 0;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--dark-card);
  border: 2px solid var(--dark-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.how-step:hover .step-number {
  background: var(--gradient-primary);
  border-color: var(--primary);
  color: #ffffff;
}

.how-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

/* Stats Section */
.stats {
  padding: 6rem 5%;
  background: var(--gradient-dark);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-soft);
}

/* CTA Section */
.cta {
  padding: 10rem 5%;
  position: relative;
  z-index: 1;
  text-align: center;
}

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

.cta h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.cta p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-form input {
  flex: 1;
  min-width: 280px;
  padding: 1rem 1.5rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.cta-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.cta-form input::placeholder {
  color: var(--text-muted);
}

.cta-form button {
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-form button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px var(--primary-glow);
}

.cta-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.cta-form button .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 24px;
}

.form-status.success {
  color: var(--primary);
}

.form-status.error {
  color: #e74c3c;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Footer */
footer {
  padding: 5rem 5% 2rem;
  border-top: 1px solid var(--dark-border);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto 4rem;
}

.footer-brand img {
  height: 100px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.footer-column h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--dark-card);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 420px;
  border: 1px solid rgba(46, 204, 113, 0.3);
  animation: modal-pop 0.3s ease;
}

@keyframes modal-pop {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.modal h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.modal p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-close {
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  color: var(--text);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-grid::before {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* Full-screen mobile menu overlay */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(255, 255, 255, 0.98); */
    /* backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); */
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
    gap: 0.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    overflow-y: auto;
  }

  /* Animated background mesh for mobile menu */
  .nav-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(ellipse at 20% 20%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 80%, rgba(52, 152, 219, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease 0.2s;
    pointer-events: none;
  }

  .nav-links.active::before {
    opacity: 1;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  /* Menu items - centered with staggered animation */
  .nav-links li {
    width: auto;
    text-align: center;
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered animation delays for each item */
  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.active li:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.active li:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-links.active li:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links.active li:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-links.active li:nth-child(6) {
    transition-delay: 0.35s;
  }

  /* Large centered menu links */
  .nav-links li a {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
  }

  .nav-links li a::before {
    display: none;
  }

  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }

  .nav-links li a:hover,
  .nav-links li a.active {
    color: var(--primary);
    transform: scale(1.05);
    background: transparent;
    border-color: transparent;
  }

  .nav-links li a:hover::after,
  .nav-links li a.active::after {
    width: 60%;
  }

  /* Mobile CTA button */
  .nav-links li.mobile-cta {
    display: block;
    margin-top: 2rem;
    padding-top: 0;
    border-top: none;
  }

  .nav-links li.mobile-cta a.mobile-cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    background: var(--gradient-primary);
    color: white !important;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--primary-glow);
    border: none;
  }

  .nav-links li.mobile-cta a.mobile-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px var(--primary-glow);
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

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

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

  .how-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-value {
    font-size: 2.5rem;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-form input,
  .cta-form button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand {
    order: -1;
  }

  .footer-brand p {
    margin: 0 auto 1.5rem;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Products Showcase - Hero Visual */
.products-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
}

.product-preview {
  width: 100%;
  display: flex;
  justify-content: center;
}

.mobile-preview {
  perspective: 1000px;
}

.mobile-frame {
  width: 280px;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 35px;
  padding: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.3s ease;
}

.mobile-frame:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.mobile-notch {
  width: 100px;
  height: 25px;
  background: #0a0a0f;
  border-radius: 0 0 15px 15px;
  margin: 0 auto 10px;
}

.mobile-screen {
  background: var(--dark-lighter);
  border-radius: 25px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--primary);
  color: #ffffff;
}

.app-logo {
  font-size: 1.25rem;
}

.app-title {
  font-weight: 600;
  font-size: 1rem;
}

.app-content {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.player-card-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--dark-card);
  border-radius: 12px;
  border: 1px solid var(--dark-border);
}

.player-avatar {
  width: 40px;
  height: 40px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.player-info {
  flex: 1;
}

.player-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.player-position {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.player-rating {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}

.stat-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.stat-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-bar-item span {
  font-size: 0.7rem;
  color: var(--text-muted);
  width: 50px;
}

.stat-bar {
  flex: 1;
  height: 6px;
  background: var(--dark-border);
  border-radius: 3px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  transition: width 1s ease;
}

.app-nav {
  display: flex;
  justify-content: space-around;
  padding: 0.75rem;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
}

.app-nav .nav-item {
  font-size: 1.25rem;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.app-nav .nav-item.active {
  opacity: 1;
}

.feature-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.feature-badge:hover {
  border-color: var(--primary);
  background: rgba(46, 204, 113, 0.05);
}

.badge-icon {
  font-size: 1rem;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
}

/* Products Carousel */
.products-carousel {
  position: relative;
  width: 100%;
  min-height: 450px;
}

.carousel-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  animation: fadeIn 0.5s ease;
}

.carousel-slide.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.slide-icon {
  font-size: 1.75rem;
}

.slide-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.slide-description {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 280px;
  margin-top: 0.5rem;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--dark-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: var(--text-muted);
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Tagging System Preview */
.tagging-preview {
  width: 100%;
  max-width: 320px;
}

.video-frame {
  display: flex;
  gap: 0.5rem;
  background: var(--dark-card);
  border-radius: 12px;
  padding: 0.75rem;
  border: 1px solid var(--dark-border);
}

.video-player {
  flex: 1;
}

.video-screen {
  position: relative;
  background: linear-gradient(135deg, #1a4d2e 0%, #0d2818 100%);
  border-radius: 8px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-overlay {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.video-timeline {
  margin-top: 0.5rem;
}

.timeline-bar {
  position: relative;
  height: 8px;
  background: var(--dark-border);
  border-radius: 4px;
}

.timeline-progress {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
}

.timeline-marker {
  position: absolute;
  top: -6px;
  font-size: 0.6rem;
  transform: translateX(-50%);
}

.tagging-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tag-button {
  padding: 0.4rem 0.6rem;
  background: var(--dark-lighter);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  font-size: 0.65rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tag-button:hover {
  border-color: var(--primary);
  background: rgba(46, 204, 113, 0.1);
}

/* AI Analysis Preview */
.ai-preview {
  width: 100%;
  max-width: 320px;
}

.ai-dashboard {
  background: var(--dark-card);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--dark-border);
}

.ai-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--dark-border);
}

.ai-status {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

.ai-accuracy {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(46, 204, 113, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.ai-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ai-metric {
  text-align: center;
  padding: 0.5rem;
  background: var(--dark-lighter);
  border-radius: 8px;
}

.metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.metric-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.ai-visualization {
  height: 80px;
}

.heatmap-mini {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a4d2e 0%, #0d2818 100%);
  border-radius: 8px;
  overflow: hidden;
}

.heat-spot {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(15px);
  transform: translate(-50%, -50%);
}