@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --bg: #080b12;
  --bg-alt: #0e1420;
  --surface: #131b2b;
  --surface-2: #1a2438;
  --border: #243049;
  --text: #e4eaf4;
  --text-muted: #8494ad;
  --white: #f5f8fc;
  --lime: #c6f135;
  --lime-dim: rgba(198, 241, 53, 0.12);
  --ice: #7eb8da;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 6px;
  --header-top: 56px;
  --header-nav: 44px;
  --header-h: calc(var(--header-top) + var(--header-nav));
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(126, 184, 218, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(198, 241, 53, 0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--ice); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--lime); }

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(8, 11, 18, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-top);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.logo .icon { color: var(--lime); width: 22px; height: 22px; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--lime);
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(198, 241, 53, 0.35);
}

.header-cta .icon { width: 14px; height: 14px; }

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-nav);
  position: relative;
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.burger {
  display: none;
  position: absolute;
  right: 0;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--lime);
  color: var(--bg);
}

.btn-primary:hover {
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(198, 241, 53, 0.3);
}

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

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  max-width: 520px;
  font-size: 1rem;
}

.hero {
  padding: 72px 0 56px;
  text-align: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--lime-dim);
  border: 1px solid rgba(198, 241, 53, 0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 28px;
}

.hero-label .icon { width: 14px; height: 14px; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 span { color: var(--lime); display: block; }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}

.hero-metric {
  flex: 1 1 140px;
  background: var(--surface);
  padding: 20px 16px;
  text-align: center;
}

.hero-metric-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-metric-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

section { padding: 80px 0; position: relative; z-index: 1; }

.section-head {
  margin-bottom: 40px;
}

.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.bento-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  min-height: 160px;
}

.bento-card:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  color: inherit;
}

.bento-card.featured {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 340px;
  background: linear-gradient(145deg, var(--surface-2) 0%, var(--surface) 100%);
  border-color: rgba(198, 241, 53, 0.2);
  padding: 32px;
}

.bento-card.sm { grid-column: span 3; }
.bento-card.md { grid-column: span 6; }

.bento-card .icon {
  width: 28px;
  height: 28px;
  color: var(--lime);
  margin-bottom: 16px;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.bento-card.featured h3 { font-size: 1.6rem; }

.bento-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.bento-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ice);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bento-foot .icon { width: 16px; height: 16px; color: var(--lime); }

.ticker-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  overflow: hidden;
}

.ticker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.ticker-item .ticker-val {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 6px;
}

.ticker-item .ticker-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 12px;
}

.featured-main {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-row: span 1;
}

.featured-main .icon {
  width: 36px;
  height: 36px;
  color: var(--lime);
  margin-bottom: 20px;
}

.featured-main h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.featured-main p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.perk-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.2s;
}

.perk-card:hover { border-color: var(--border); border-left-color: var(--lime); border-left-width: 3px; }

.perk-card .icon {
  width: 22px;
  height: 22px;
  color: var(--ice);
  margin-bottom: 14px;
}

.perk-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.perk-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.site-footer {
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-cta-block {
  text-align: center;
  padding: 72px 0 56px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}

.footer-cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.footer-cta-block p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.footer-links-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links-bar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links-bar a { color: var(--text-muted); font-size: 0.8rem; }
.footer-links-bar a:hover { color: var(--lime); }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }

.page-wrap {
  padding-bottom: 64px;
}

.page-hero {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.page-meta {
  padding-top: 8px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb-sep { opacity: 0.4; }

.page-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--lime-dim);
  border: 1px solid rgba(198, 241, 53, 0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.page-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 640px;
}

.page-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-stat {
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.page-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 2px;
}

.pills-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.pills-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.pills-nav a:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.pills-nav a.active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--bg);
}

.page-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 48px 0 0;
}

.page-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
}

.sidebar-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.page-content section {
  padding: 0 0 40px;
}

.page-content section:not(:last-child) {
  margin-bottom: 8px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.page-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.75;
  font-size: 0.95rem;
}

.page-content ul,
.page-content ol {
  color: var(--text-muted);
  margin: 0 0 14px 20px;
  line-height: 1.75;
  font-size: 0.95rem;
}

.page-content li { margin-bottom: 6px; }

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 20px;
  font-size: 0.88rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.info-table th,
.info-table td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.info-table th {
  background: var(--surface-2);
  color: var(--white);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-table td { color: var(--text-muted); background: var(--surface); }
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: var(--surface-2); }

.callout {
  border-left: 3px solid var(--lime);
  background: var(--lime-dim);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 16px 0 20px;
}

.callout p { margin: 0; color: var(--text); font-size: 0.92rem; }

.cta-band {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 48px;
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band-text h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cta-band-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.page-footer-mini {
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .bento-card.featured { grid-column: span 12; grid-row: span 1; min-height: 240px; }
  .bento-card.sm { grid-column: span 6; }
  .bento-card.md { grid-column: span 12; }
  .featured-row { grid-template-columns: 1fr 1fr; }
  .featured-main { grid-column: span 2; }
  .ticker-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .page-body { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root {
    --header-top: 52px;
    --header-nav: 0px;
  }

  body { padding-top: var(--header-top); }

  .header-nav {
    position: fixed;
    top: var(--header-top);
    left: 0;
    right: 0;
    height: auto;
    background: rgba(8, 11, 18, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links {
    flex-direction: column;
    padding: 16px;
    gap: 0;
    width: 100%;
  }

  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .burger { display: flex; }

  .header-cta span { display: none; }

  .hero { padding: 48px 0 40px; }
  .hero-metrics { flex-direction: column; }
  .hero-metric { flex: none; }

  .bento-card.sm,
  .bento-card.md,
  .bento-card.featured { grid-column: span 12; min-height: auto; }

  .featured-row { grid-template-columns: 1fr; }
  .featured-main { grid-column: span 1; }

  section { padding: 56px 0; }

  .footer-links-bar { flex-direction: column; text-align: center; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}
