:root {
  --bg: #000000;
  --bg-alt: #0a0d0a;
  --card: #070a07;
  --border: #1d2a1d;
  --text: #e8ffe9;
  --muted: #8fa08f;
  --accent: #39ff14;
  --accent-strong: #00e136;
  --green: #39ff14;
  --radius: 14px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  --neon: 0 0 18px rgba(57, 255, 20, 0.55), 0 0 40px rgba(57, 255, 20, 0.25);
  --neon-soft: 0 0 12px rgba(57, 255, 20, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 1.2;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.accent {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(57, 255, 20, 0.55);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #000000;
  font-weight: 800;
  font-size: 13px;
  box-shadow: var(--neon-soft);
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin-left: auto;
}

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

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 10px;
  border-left: 1px solid var(--border);
}

.nav-social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}

.nav-social a:hover {
  color: var(--accent);
  background: rgba(57, 255, 20, 0.1);
}

.nav-social svg {
  width: 17px;
  height: 17px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

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

.nav-links a.btn-primary {
  color: #000000;
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: var(--neon);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--neon-soft);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 14px;
}

/* Hero */
.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(57, 255, 20, 0.12), transparent 60%),
    radial-gradient(900px 400px at 0% 10%, rgba(46, 204, 143, 0.07), transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 18px;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}

.hero-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 14px;
}

.hero-meta strong {
  color: var(--text);
}

.hero-card {
  background: var(--card);
  border: 1px solid rgba(57, 255, 20, 0.35);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow), var(--neon-soft);
}

.ticker {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.ticker-symbol {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #000000;
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--neon-soft);
}

.ticker-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 17px;
}

.ticker-value {
  color: var(--muted);
  font-size: 13.5px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check {
  color: var(--green);
  font-weight: 800;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 14px;
}

.section-lead {
  color: var(--muted);
  max-width: 62ch;
}

/* Stats */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  color: var(--accent);
}

.stat span {
  color: var(--muted);
  font-size: 14.5px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, 0.6);
}

.card h3 {
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 19px;
}

.card p {
  color: var(--muted);
  font-size: 14.5px;
}

/* Steps */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
  counter-reset: step;
}

.step-num {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.9;
  margin-bottom: 10px;
}

.step-num::before {
  content: "#";
  font-size: 16px;
  opacity: 0.5;
}

.steps h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.steps p {
  color: var(--muted);
  font-size: 14px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.price-featured {
  border-color: rgba(57, 255, 20, 0.8);
  box-shadow: var(--shadow), var(--neon);
}

.price-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.price-head h3 {
  font-size: 20px;
}

.price-note {
  color: var(--muted);
  font-size: 13.5px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
}

.price-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14.5px;
}

.price-list li::before {
  content: "•";
  color: var(--accent);
  font-weight: 800;
}

.price-schedule {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 14.5px;
}

.bundle {
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.16), rgba(57, 255, 20, 0.05));
  border: 1px dashed rgba(57, 255, 20, 0.6);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  font-size: 15.5px;
  letter-spacing: 0.02em;
}

.bundle p {
  color: var(--text);
}

.seats-note {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

/* Membership */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
  align-items: stretch;
}

.membership-grid .price-list {
  margin-bottom: 24px;
}

.disclaimer {
  margin-top: 24px;
  color: var(--muted);
  font-size: 12.5px;
  max-width: 90ch;
}

/* Enroll */
.enroll {
  padding-bottom: 0;
}

.enroll-box {
  background:
    radial-gradient(700px 300px at 100% 0%, rgba(57, 255, 20, 0.14), transparent 60%),
    var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 54px;
  text-align: center;
  transform: translateY(40px);
}

.mail-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

/* Social */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.social-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, border-color 0.2s;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, 0.6);
}

.social-card h3 {
  color: var(--accent);
  margin-bottom: 8px;
}

.social-card p {
  color: var(--muted);
  font-size: 14.5px;
}

/* Footer */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
  margin-top: 40px;
}

.site-footer .brand-name {
  font-size: 22px;
  margin-bottom: 12px;
}

.site-footer p {
  color: var(--muted);
  font-size: 13.5px;
  max-width: 72ch;
}

.site-footer .footer-links {
  margin: 18px 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

.copyright {
  font-size: 12.5px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .membership-grid {
    grid-template-columns: 2fr 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 6px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 12px 5%;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
  }

  .nav-social {
    padding-left: 0;
    border-left: 0;
  }

  .nav-social a {
    display: grid;
    padding: 0;
    width: 32px;
    height: 32px;
  }

  .card-grid,
  .steps,
  .social-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .membership-grid {
    grid-template-columns: 1fr;
  }

  .enroll-box {
    padding: 34px 22px;
  }

  .hero {
    padding: 54px 0 44px;
  }
}