/* ============================================
   Statepl8 — Dark Neon Cyberpunk Landing
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&display=swap');

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

:root {
  --bg: #0a0a0a;
  --bg-2: #111114;
  --bg-3: #1a1a20;
  --neon-cyan: #00f0ff;
  --neon-magenta: #ff00c8;
  --neon-yellow: #f5ff00;
  --text: #f0f0f0;
  --text-muted: #8888aa;
  --border: rgba(0, 240, 255, 0.15);

  /* State accent colors */
  --tx-red: #CC0000;
  --tx-blue: #002868;
  --ca-blue: #002868;
  --ca-gold: #FFD700;
  --fl-orange: #FF6600;
  --fl-blue: #002091;
  --ny-blue: #002D72;
  --ny-gold: #FFC72C;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Syne', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* ---- Neon Glow ---- */
.glow-cyan {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.6),
              0 0 40px rgba(0, 240, 255, 0.3),
              0 0 80px rgba(0, 240, 255, 0.1);
}
.glow-magenta {
  box-shadow: 0 0 20px rgba(255, 0, 200, 0.6),
              0 0 40px rgba(255, 0, 200, 0.3);
}
.glow-text-cyan { text-shadow: 0 0 20px rgba(0, 240, 255, 0.8); }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--neon-cyan);
  text-shadow: 0 0 16px rgba(0, 240, 255, 0.7);
}
.nav-logo span { color: var(--text); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--neon-cyan); }
.nav-cta {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 20px;
  border: 1.5px solid var(--neon-cyan);
  border-radius: 6px;
  color: var(--neon-cyan) !important;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 240, 255, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(255, 0, 200, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
}
.hero-content { z-index: 1; }
.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--neon-cyan);
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 36px;
  background: var(--neon-cyan);
  color: #000;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.5), 0 0 60px rgba(0, 240, 255, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.7), 0 0 80px rgba(0, 240, 255, 0.3);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  background: transparent;
  color: var(--neon-cyan);
  border-radius: 8px;
  border: 1.5px solid rgba(0, 240, 255, 0.4);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.05);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.2);
}
.price-tag {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
}
.price-tag strong { color: var(--neon-yellow); font-size: 1.1rem; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.plate-display {
  position: relative;
  background: #111;
  border: 2px solid rgba(0, 240, 255, 0.3);
  border-radius: 12px;
  padding: 32px 40px;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.15), inset 0 0 60px rgba(0,0,0,0.5);
  min-width: 300px;
}
.plate-display::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  z-index: -1;
  opacity: 0.3;
  filter: blur(12px);
}
.plate-state-bar {
  height: 40px;
  border-radius: 6px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #CC0000 0%, #CC0000 50%, #002868 50%, #002868 100%);
}
.plate-state-bar.blue-gold {
  background: linear-gradient(90deg, #002868 0%, #002868 50%, #FFD700 50%, #FFD700 100%);
}
.plate-state-bar.orange-blue {
  background: linear-gradient(90deg, #FF6600 0%, #FF6600 50%, #002091 50%, #002091 100%);
}
.plate-state-bar.ny-gold-blue {
  background: linear-gradient(90deg, #002D72 0%, #002D72 50%, #FFC72C 50%, #FFC72C 100%);
}
.plate-number {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}
.plate-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}
.plate-visualizer {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  justify-content: center;
  height: 48px;
  margin-top: 16px;
}
.viz-bar {
  width: 5px;
  background: var(--neon-cyan);
  border-radius: 2px;
  box-shadow: 0 0 6px var(--neon-cyan);
  animation: viz-pulse 0.8s ease-in-out infinite alternate;
}
.viz-bar:nth-child(1) { animation-delay: 0s;    height: 20px; }
.viz-bar:nth-child(2) { animation-delay: 0.1s;  height: 35px; }
.viz-bar:nth-child(3) { animation-delay: 0.2s;  height: 48px; }
.viz-bar:nth-child(4) { animation-delay: 0.05s; height: 28px; }
.viz-bar:nth-child(5) { animation-delay: 0.15s; height: 42px; }
.viz-bar:nth-child(6) { animation-delay: 0.25s; height: 18px; }
.viz-bar:nth-child(7) { animation-delay: 0.08s; height: 38px; }
.viz-bar:nth-child(8) { animation-delay: 0.18s; height: 30px; }
.viz-bar:nth-child(9) { animation-delay: 0.3s;  height: 45px; }
.viz-bar:nth-child(10){ animation-delay: 0.12s; height: 22px; }
.viz-bar:nth-child(11){ animation-delay: 0.22s; height: 40px; }
.viz-bar:nth-child(12){ animation-delay: 0.03s; height: 15px; }

@keyframes viz-pulse {
  from { transform: scaleY(0.6); opacity: 0.7; }
  to   { transform: scaleY(1);   opacity: 1;   }
}

/* ---- Section styles ---- */
section { padding: 100px 0; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-magenta);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
}

/* ---- Features ---- */
.features { background: var(--bg-2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.08);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ---- How it Works ---- */
.how-it-works { background: var(--bg); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  opacity: 0.4;
}
.step { text-align: center; }
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1.5px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--neon-cyan);
  margin: 0 auto 24px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ---- Showcase ---- */
.showcase { background: var(--bg-2); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.showcase-plate {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  cursor: default;
}
.showcase-plate:hover {
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.1);
  transform: translateY(-3px);
}
.showcase-state-bar {
  height: 32px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.showcase-plate .plate-number { font-size: 2.2rem; margin-bottom: 8px; }
.showcase-state-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.showcase-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0, 240, 255, 0.08);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 240, 255, 0.2);
  margin-top: 12px;
}

/* ---- Final CTA ---- */
.cta-section {
  background: var(--bg);
  text-align: center;
  padding: 120px 0;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(0, 240, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-title { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.cta-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon-yellow);
  text-shadow: 0 0 20px rgba(245, 255, 0, 0.5);
  margin: 20px 0 32px;
}
.cta-section .hero-actions { justify-content: center; }

/* ---- Footer ---- */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--neon-cyan);
}
.footer-logo span { color: var(--text); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--neon-cyan); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .navbar .nav-links { display: none; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .plate-display { min-width: unset; width: 100%; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  section { padding: 70px 0; }
  .showcase-grid { grid-template-columns: 1fr; }
}