/* ============================================================
   KEMETION — Neon Arena Cyberpunk Sports Aesthetic
   Dark Mode (#0A0A0F) | Neon Green (#39FF14) | Orange (#FF6B00)
   Fonts: Orbitron (display) + Rajdhani (body)
   ============================================================ */

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

:root {
  --bg:       #0A0A0F;
  --bg-navy:  #0D1117;
  --neon:     #39FF14;
  --orange:   #FF6B00;
  --white:    #FFFFFF;
  --white-70: rgba(255,255,255,.7);
  --white-60: rgba(255,255,255,.6);
  --white-55: rgba(255,255,255,.55);
  --white-50: rgba(255,255,255,.5);
  --white-40: rgba(255,255,255,.4);
  --white-30: rgba(255,255,255,.3);
  --white-20: rgba(255,255,255,.2);
  --white-10: rgba(255,255,255,.1);
  --white-05: rgba(255,255,255,.05);
  --white-02: rgba(255,255,255,.02);
  --neon-30:  rgba(57,255,20,.3);
  --neon-20:  rgba(57,255,20,.2);
  --neon-15:  rgba(57,255,20,.15);
  --neon-10:  rgba(57,255,20,.1);
  --neon-05:  rgba(57,255,20,.05);
  --neon-03:  rgba(57,255,20,.03);
  --orange-30:rgba(255,107,0,.3);
  --orange-15:rgba(255,107,0,.15);
  --orange-10:rgba(255,107,0,.1);
  --orange-05:rgba(255,107,0,.05);
  --orange-03:rgba(255,107,0,.03);
  --font-display: 'Orbitron', sans-serif;
  --font-body:    'Rajdhani', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ---------- Utility ---------- */
.container {
  width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 1rem;
}
@media(min-width:640px) { .container { padding: 0 1.5rem; } }
@media(min-width:1024px){ .container { padding: 0 2rem; } }

.text-neon    { color: var(--neon); }
.text-orange  { color: var(--orange); }
.text-glow-green  { text-shadow: 0 0 20px rgba(57,255,20,.4), 0 0 40px rgba(57,255,20,.2); }
.text-glow-orange { text-shadow: 0 0 20px rgba(255,107,0,.4), 0 0 40px rgba(255,107,0,.2); }

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

/* ---------- Scanlines ---------- */
.scanlines {
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(57,255,20,.03) 2px,
    rgba(57,255,20,.03) 4px
  );
  pointer-events: none;
}

/* ---------- Animations ---------- */
@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(57,255,20,.4), 0 0 20px rgba(57,255,20,.2); }
  50%      { box-shadow: 0 0 20px rgba(57,255,20,.6), 0 0 40px rgba(57,255,20,.3); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-neon-pulse { animation: neonPulse 2s ease-in-out infinite; }
.animate-float      { animation: float 4s ease-in-out infinite; }
.animate-pulse      { animation: pulse 2s ease-in-out infinite; }

/* Scroll-triggered reveal — content visible by default for accessibility and SEO */
.reveal {
  opacity: 1; transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all .3s ease;
}
.navbar.scrolled {
  background: rgba(10,10,15,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neon-20);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
@media(min-width:768px){ .navbar-inner { height: 80px; } }

.nav-logo {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.25rem; color: var(--neon);
  letter-spacing: .15em;
  text-shadow: 0 0 20px rgba(57,255,20,.4);
}
@media(min-width:768px){ .nav-logo { font-size: 1.5rem; } }

.nav-links { display: none; align-items: center; gap: 2rem; }
@media(min-width:768px){ .nav-links { display: flex; } }

.nav-links a {
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--white-70); letter-spacing: .08em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--neon); }

.nav-cta {
  font-family: var(--font-display); font-size: .875rem; font-weight: 700;
  padding: .625rem 1.5rem; background: var(--neon); color: var(--bg);
  border-radius: 4px; letter-spacing: .12em;
  transition: background .2s;
}
.nav-cta:hover { background: rgba(57,255,20,.9); }

.mobile-toggle { display: block; color: var(--white-70); }
@media(min-width:768px){ .mobile-toggle { display: none; } }

.mobile-menu {
  display: none; background: rgba(10,10,15,.98);
  backdrop-filter: blur(16px); border-top: 1px solid var(--neon-20);
  padding: 1.5rem 1rem;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 1rem; }
@media(min-width:768px){ .mobile-menu { display: none !important; } }

.mobile-menu a {
  font-family: var(--font-body); font-size: 1.125rem; font-weight: 600;
  color: var(--white-70); text-transform: uppercase; letter-spacing: .08em;
  padding: .5rem 0; transition: color .2s;
}
.mobile-menu a:hover { color: var(--neon); }
.mobile-menu .nav-cta {
  display: block; text-align: center; margin-top: .5rem; padding: .75rem 1.5rem;
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .3;
}
.hero-bg .overlay-r {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg), rgba(10,10,15,.85), rgba(10,10,15,.6));
}
.hero-bg .overlay-t {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg), transparent, rgba(10,10,15,.4));
}
.hero .scanlines { position: absolute; inset: 0; opacity: .4; }

.hero-content {
  position: relative; z-index: 10;
  padding: 6rem 0 8rem;
}
@media(min-width:768px){ .hero-content { padding: 8rem 0 10rem; } }

.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
}
@media(min-width:1024px){ .hero-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }

.hero-text { order: 2; }
@media(min-width:1024px){ .hero-text { order: 1; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem 1rem; border-radius: 9999px;
  border: 1px solid var(--neon-30); background: var(--neon-05);
  margin-bottom: 1.5rem;
  animation: fadeInUp .5s ease .3s both;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--neon);
  animation: pulse 2s ease-in-out infinite;
}
.hero-badge span {
  font-family: var(--font-body); font-size: .875rem; font-weight: 600;
  color: var(--neon); letter-spacing: .08em; text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 2.25rem; line-height: 1.1; margin-bottom: 1rem;
  animation: fadeInLeft .8s ease both;
}
@media(min-width:640px) { .hero h1 { font-size: 3rem; } }
@media(min-width:768px) { .hero h1 { font-size: 3.75rem; } }
@media(min-width:1024px){ .hero h1 { font-size: 4.5rem; } }

.hero-desc {
  font-size: 1.125rem; color: var(--white-70); max-width: 32rem;
  margin-bottom: 2rem; line-height: 1.7;
  animation: fadeInLeft .8s ease .15s both;
}
@media(min-width:768px){ .hero-desc { font-size: 1.25rem; } }

.hero-buttons {
  display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem;
  animation: fadeInLeft .8s ease .3s both;
}
@media(min-width:640px){ .hero-buttons { flex-direction: row; } }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  padding: 1rem 2rem; background: var(--neon); color: var(--bg);
  border-radius: 2px; letter-spacing: .12em; transition: all .2s;
}
.btn-primary:hover { background: rgba(57,255,20,.9); }
.btn-primary svg { width: 20px; height: 20px; fill: currentColor; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-size: .875rem; font-weight: 700;
  padding: 1rem 2rem; border: 2px solid var(--white-20); color: rgba(255,255,255,.8);
  border-radius: 2px; letter-spacing: .12em; transition: all .2s;
}
.btn-outline:hover { border-color: var(--neon-30); color: var(--neon); }

.btn-orange-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: .75rem;
  font-family: var(--font-display); font-size: .875rem; font-weight: 700;
  padding: 1.25rem 2.5rem; border: 2px solid rgba(255,107,0,.4); color: var(--orange);
  border-radius: 2px; letter-spacing: .12em; transition: all .2s;
  width: 100%;
}
@media(min-width:640px){ .btn-orange-outline { width: auto; } }
.btn-orange-outline:hover { border-color: var(--orange); background: var(--orange-10); }
.btn-orange-outline svg { width: 20px; height: 20px; fill: currentColor; }

.trust-badges {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  animation: fadeInLeft .8s ease .45s both;
}
.trust-badges .badge {
  display: flex; align-items: center; gap: .5rem;
}
.trust-badges .badge svg { width: 18px; height: 18px; }
.trust-badges .badge span {
  font-family: var(--font-body); font-size: .875rem; font-weight: 500;
  color: var(--white-60);
}

.hero-image { order: 1; display: flex; justify-content: center; }
@media(min-width:1024px){ .hero-image { order: 2; justify-content: flex-end; } }

.hero-image .img-wrapper {
  position: relative;
}
.hero-image img {
  width: 16rem; height: auto;
  filter: drop-shadow(0 0 40px rgba(57,255,20,.3));
  animation: float 4s ease-in-out infinite, fadeInRight 1s ease .2s both;
}
@media(min-width:640px) { .hero-image img { width: 20rem; } }
@media(min-width:768px) { .hero-image img { width: 24rem; } }
@media(min-width:1024px){ .hero-image img { width: 440px; } }

.hero-image .glow-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 120%; height: 120%; border-radius: 50%;
  background: var(--neon-05); filter: blur(48px); z-index: -1;
}

/* ---------- SECTION HEADERS ---------- */
.section-label {
  font-family: var(--font-display); font-size: .75rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.875rem; margin-bottom: 1rem;
}
@media(min-width:768px){ .section-title { font-size: 2.25rem; } }
@media(min-width:1024px){ .section-title { font-size: 3rem; } }

.section-desc {
  font-size: 1.125rem; color: var(--white-50); max-width: 40rem; margin: 0 auto;
}

/* ---------- FEATURES ---------- */
.features { padding: 6rem 0 8rem; }
.features-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media(min-width:768px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .features-grid { grid-template-columns: 1fr 1fr 1fr; } }

.feature-card {
  position: relative; padding: 1.5rem 2rem; border-radius: 2px;
  transition: all .3s; cursor: default;
}
.feature-card:hover { transform: translateY(-4px); }

.feature-card.neon {
  border: 1px solid var(--neon-15); background: var(--neon-03);
}
.feature-card.neon:hover { border-color: rgba(57,255,20,.4); box-shadow: 0 0 20px var(--neon-10); }

.feature-card.orange {
  border: 1px solid var(--orange-15); background: var(--orange-03);
}
.feature-card.orange:hover { border-color: rgba(255,107,0,.4); box-shadow: 0 0 20px var(--orange-10); }

/* Corner brackets */
.feature-card::before, .feature-card::after {
  content: ''; position: absolute; width: 16px; height: 16px; transition: border-color .3s;
}
.feature-card::before { top: 0; left: 0; border-top: 2px solid; border-left: 2px solid; border-radius: 2px 0 0 0; }
.feature-card::after  { bottom: 0; right: 0; border-bottom: 2px solid; border-right: 2px solid; border-radius: 0 0 2px 0; }
.feature-card.neon::before, .feature-card.neon::after { border-color: var(--neon-30); }
.feature-card.neon:hover::before, .feature-card.neon:hover::after { border-color: var(--neon); }
.feature-card.orange::before, .feature-card.orange::after { border-color: var(--orange-30); }
.feature-card.orange:hover::before, .feature-card.orange:hover::after { border-color: var(--orange); }

.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 2px; margin-bottom: 1.25rem;
}
.feature-icon.neon   { background: var(--neon-10); color: var(--neon); }
.feature-icon.orange { background: var(--orange-10); color: var(--orange); }
.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 {
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 700;
  color: var(--white); margin-bottom: .75rem; letter-spacing: .05em;
}
.feature-card p {
  font-size: 1rem; color: var(--white-60); line-height: 1.6;
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  padding: 6rem 0; background: rgba(13,17,23,.5);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin-top: -4rem; padding-top: 6rem; padding-bottom: 6rem;
  position: relative;
}
.how-it-works .scanlines { position: absolute; inset: 0; opacity: .2; }

.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  position: relative; z-index: 2;
}
@media(min-width:1024px){ .steps-grid { grid-template-columns: 1fr 1fr 1fr; gap: 4rem; } }

.step-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative;
}
.step-icon-wrap { position: relative; margin-bottom: 1.5rem; }
.step-icon {
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid var(--neon-30); background: var(--neon-05);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.step-card:hover .step-icon { border-color: var(--neon); box-shadow: 0 0 20px var(--neon-10); }
.step-icon svg { width: 32px; height: 32px; color: var(--neon); }
.step-number {
  position: absolute; top: -8px; right: -8px;
  width: 32px; height: 32px; border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .875rem; font-weight: 700; color: var(--white);
}
.step-card h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  margin-bottom: .75rem; letter-spacing: .05em;
}
.step-card p {
  font-size: 1rem; color: var(--white-55); max-width: 20rem; line-height: 1.6;
}
.step-arrow {
  display: none; position: absolute; top: 40px; right: -2rem;
  color: var(--neon-30);
}
@media(min-width:1024px){ .step-arrow { display: block; } }
.step-arrow svg { width: 24px; height: 24px; }

/* Stats Bar */
.stats-bar {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  max-width: 48rem; margin: 5rem auto 0;
  position: relative; z-index: 2;
}
@media(min-width:640px){ .stats-bar { grid-template-columns: 1fr 1fr 1fr; } }

.stat-box {
  text-align: center; padding: 1.5rem; border-radius: 2px;
}
.stat-box.neon   { border: 1px solid var(--neon-15); background: var(--neon-03); }
.stat-box.orange { border: 1px solid var(--orange-15); background: var(--orange-03); }
.stat-value {
  font-family: var(--font-display); font-size: 1.875rem; font-weight: 900;
}
@media(min-width:768px){ .stat-value { font-size: 2.25rem; } }
.stat-value.neon   { color: var(--neon); text-shadow: 0 0 20px rgba(57,255,20,.4); }
.stat-value.orange { color: var(--orange); text-shadow: 0 0 20px rgba(255,107,0,.4); }
.stat-label {
  font-family: var(--font-body); font-size: .875rem; color: var(--white-50);
  text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem;
}

/* ---------- SCREENSHOTS ---------- */
.screenshots { padding: 6rem 0 8rem; }
.carousel {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
@media(min-width:768px){ .carousel { gap: 2rem; } }

.carousel-btn {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--neon-30); color: var(--neon);
  transition: all .2s;
}
@media(min-width:768px){ .carousel-btn { display: flex; } }
.carousel-btn:hover { background: var(--neon-10); border-color: var(--neon); }
.carousel-btn svg { width: 24px; height: 24px; }

.carousel-track {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  overflow: hidden;
}
@media(min-width:768px){ .carousel-track { gap: 2rem; } }

.carousel-slide {
  position: relative; cursor: pointer; transition: all .4s ease;
  flex-shrink: 0;
}
/* Inactive slides remain visible (not display:none) for crawler accessibility */
.carousel-slide.inactive { transform: scale(.8); opacity: .4; }
@media(max-width:767px){ .carousel-slide.inactive { position: absolute; left: -9999px; opacity: 0; } }
@media(min-width:768px){ .carousel-slide.inactive { display: block; } }

.carousel-slide .frame {
  border-radius: 1rem; overflow: hidden; border: 2px solid var(--white-10);
  transition: all .3s; width: 220px;
}
.carousel-slide.active .frame {
  border-color: rgba(57,255,20,.6); width: 280px;
  box-shadow: 0 0 30px var(--neon-20), 0 0 60px var(--neon-10);
}
.carousel-slide .frame img { width: 100%; height: auto; }

.carousel-label { text-align: center; margin-top: 1.5rem; display: none; }
.carousel-slide.active .carousel-label { display: block; }
.carousel-label h3 {
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 700;
  color: var(--neon); letter-spacing: .05em;
}
.carousel-label p { font-size: .875rem; color: var(--white-50); margin-top: .25rem; }

.carousel-dots {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  margin-top: 1.5rem;
}
@media(min-width:768px){ .carousel-dots { display: none; } }
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--white-20);
  transition: all .2s;
}
.carousel-dot.active { background: var(--neon); width: 24px; border-radius: 5px; }

/* ---------- COMMUNITY ---------- */
.community {
  padding: 6rem 0; background: rgba(13,17,23,.3);
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
  margin-top: -3rem; padding-top: 5rem; padding-bottom: 5rem;
  position: relative;
}
.community .scanlines { position: absolute; inset: 0; opacity: .15; }

.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  max-width: 56rem; margin: 0 auto; position: relative; z-index: 2;
}
@media(min-width:768px){ .testimonials-grid { grid-template-columns: 1fr 1fr; } }

.testimonial-card {
  padding: 1.5rem; border-radius: 2px;
  border: 1px solid var(--white-10); background: var(--white-02);
  transition: all .3s;
}
.testimonial-card:hover { border-color: var(--neon-30); background: var(--neon-03); }

.testimonial-card .quote-icon { color: var(--neon-30); margin-bottom: 1rem; }
.testimonial-card .quote-icon svg { width: 20px; height: 20px; }

.testimonial-card .text {
  font-size: 1rem; color: var(--white-70); line-height: 1.6;
  margin-bottom: 1.25rem; font-style: italic;
}
.testimonial-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.testimonial-footer .name {
  font-family: var(--font-display); font-size: .875rem; font-weight: 700;
  color: var(--white); letter-spacing: .05em;
}
.testimonial-footer .location { font-size: .75rem; color: var(--white-40); }
.testimonial-footer .right { display: flex; flex-direction: column; align-items: flex-end; gap: .25rem; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 12px; height: 12px; color: var(--orange); fill: var(--orange); }
.badge-label {
  display: inline-block; padding: .125rem .5rem;
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  color: var(--neon); border: 1px solid var(--neon-30); border-radius: 2px;
  letter-spacing: .1em; text-transform: uppercase;
}

/* ---------- COMPLIANCE ---------- */
.compliance { padding: 6rem 0 8rem; }
.compliance-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  max-width: 56rem; margin: 0 auto;
}
@media(min-width:640px){ .compliance-grid { grid-template-columns: 1fr 1fr; } }

.compliance-card {
  display: flex; gap: 1rem; padding: 1.5rem; border-radius: 2px;
  border: 1px solid var(--neon-10); background: var(--neon-03);
}
.compliance-card .icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--neon-10); display: flex; align-items: center; justify-content: center;
}
.compliance-card .icon svg { width: 20px; height: 20px; color: var(--neon); }
.compliance-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--white); letter-spacing: .05em; margin-bottom: .25rem;
}
.compliance-card p { font-size: .875rem; color: var(--white-55); line-height: 1.6; }

.disclaimer-box {
  margin-top: 3rem; max-width: 48rem; margin-left: auto; margin-right: auto;
  padding: 1.5rem; border: 1px solid var(--white-10); border-radius: 2px;
  background: var(--white-02);
}
.disclaimer-box p {
  font-size: .75rem; color: var(--white-40); line-height: 1.6; text-align: center;
}
.disclaimer-box strong { color: var(--white-60); }

/* ---------- FAQ ---------- */
.faq { padding: 6rem 0 8rem; background: rgba(13,17,23,.2); }
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  border: 1px solid var(--white-10); border-radius: 2px;
  background: var(--white-02); overflow: hidden; transition: all .3s;
}
.faq-item.open { border-color: var(--neon-30); background: var(--neon-03); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1.25rem 1.5rem; text-align: left;
  font-family: var(--font-display); font-size: .875rem; font-weight: 700;
  color: var(--white); letter-spacing: .05em; transition: color .2s;
}
@media(min-width:768px){ .faq-question { font-size: 1rem; } }
.faq-question:hover, .faq-item.open .faq-question { color: var(--neon); }
.faq-question .chevron {
  width: 20px; height: 20px; color: var(--white-40);
  transition: transform .3s, color .3s; flex-shrink: 0;
}
.faq-item.open .faq-question .chevron { transform: rotate(180deg); color: var(--neon); }

.faq-answer {
  max-height: none; overflow: visible; transition: max-height .4s ease, padding .3s ease;
  padding: 0 1.5rem 1.25rem;
}
.faq-item:not(.open) .faq-answer {
  max-height: 0; overflow: hidden; padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 300px; padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  font-size: .875rem; color: var(--white-55); line-height: 1.7;
}
@media(min-width:768px){ .faq-answer p { font-size: 1rem; } }

/* ---------- CTA ---------- */
.cta-section {
  position: relative; padding: 6rem 0 8rem; overflow: hidden;
}
.cta-section .bg {
  position: absolute; inset: 0;
}
.cta-section .bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .15;
}
.cta-section .bg .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg), rgba(10,10,15,.9), var(--bg));
}
.cta-inner {
  position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; text-align: center;
}
.cta-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem 1rem; border-radius: 9999px;
  border: 1px solid var(--orange-30); background: var(--orange-05);
  margin-bottom: 1.5rem;
}
.cta-badge svg { width: 14px; height: 14px; color: var(--orange); }
.cta-badge span {
  font-family: var(--font-body); font-size: .875rem; font-weight: 600;
  color: var(--orange); letter-spacing: .08em; text-transform: uppercase;
}
.cta-section h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.875rem; margin-bottom: 1rem; line-height: 1.15;
}
@media(min-width:768px){ .cta-section h2 { font-size: 2.25rem; } }
@media(min-width:1024px){ .cta-section h2 { font-size: 3.75rem; } }

.cta-desc {
  font-size: 1.125rem; color: var(--white-60); max-width: 32rem;
  margin: 0 auto 2.5rem; line-height: 1.7;
}
@media(min-width:768px){ .cta-desc { font-size: 1.25rem; } }

.cta-buttons {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
}
@media(min-width:640px){ .cta-buttons { flex-direction: row; } }

.btn-primary-lg {
  display: inline-flex; align-items: center; justify-content: center; gap: .75rem;
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 700;
  padding: 1.25rem 2.5rem; background: var(--neon); color: var(--bg);
  border-radius: 2px; letter-spacing: .12em; transition: all .2s;
  width: 100%;
}
@media(min-width:640px){ .btn-primary-lg { width: auto; } }
.btn-primary-lg:hover { background: rgba(57,255,20,.9); }
.btn-primary-lg svg { width: 22px; height: 22px; fill: currentColor; }

.cta-fine-print {
  font-size: .75rem; color: var(--white-30); margin-top: 1.5rem;
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--white-05); background: #050508;
  padding: 3rem 0 4rem;
}
@media(min-width:768px){ .site-footer { padding: 4rem 0; } }

.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem;
}
@media(min-width:768px){ .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-brand .brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  color: var(--neon); letter-spacing: .15em; display: block; margin-bottom: .75rem;
  text-shadow: 0 0 20px rgba(57,255,20,.4);
}
.footer-brand p { font-size: .875rem; color: var(--white-40); line-height: 1.6; }

.footer-col h4 {
  font-family: var(--font-display); font-size: .75rem; font-weight: 700;
  color: var(--white-70); letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-col a {
  font-size: .875rem; color: var(--white-40); transition: color .2s;
}
.footer-col a:hover { color: var(--neon); }

.footer-bottom {
  padding-top: 2rem; border-top: 1px solid var(--white-05);
}
.footer-bottom-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media(min-width:768px){
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}
.footer-bottom .copyright {
  font-size: .75rem; color: var(--white-30); text-align: center;
}
@media(min-width:768px){ .footer-bottom .copyright { text-align: left; } }

.footer-badges { display: flex; align-items: center; gap: 1rem; }
.footer-badge {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .25rem .75rem; border-radius: 9999px;
}
.footer-badge.neon {
  border: 1px solid var(--neon-20); background: var(--neon-05);
}
.footer-badge.orange {
  border: 1px solid var(--orange-15); background: var(--orange-05);
}
.footer-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--neon);
  animation: pulse 2s ease-in-out infinite;
}
.footer-badge span {
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
.footer-badge.neon span   { color: var(--neon); }
.footer-badge.orange span { color: var(--orange); }

.footer-disclaimer {
  font-size: 10px; color: var(--white-20); margin-top: 1.5rem;
  line-height: 1.6; text-align: center;
}

/* ---------- Coming Soon Badge ---------- */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 2px dashed var(--orange-30);
  border-radius: 8px;
  background: var(--orange-05);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: comingSoonPulse 3s ease-in-out infinite;
}
.coming-soon-badge svg {
  color: var(--orange);
  flex-shrink: 0;
}
.coming-soon-badge span {
  color: var(--orange);
}
@keyframes comingSoonPulse {
  0%, 100% { border-color: var(--orange-30); box-shadow: none; }
  50% { border-color: var(--orange); box-shadow: 0 0 20px var(--orange-10); }
}
