@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&family=Barlow+Semi+Condensed:wght@400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:   #080808;
  --ink:     #111111;
  --surface: #141414;
  --border:  #222222;
  --muted:   #555555;
  --smoke:   #999999;
  --light:   #DADADA;
  --white:   #F4F2EE;
  --accent:  #C8F135;   /* electric yellow-green */
  --accent2: #2EFF8B;   /* secondary green for hover */

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-semi:    'Barlow Semi Condensed', sans-serif;

  --nav-h: 64px;
  --radius: 3px;
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-semi);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--smoke);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--accent);
  color: var(--black) !important;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

/* ── PAGE SHELL ──────────────────────────────────────────── */
.page { padding-top: var(--nav-h); }

/* ── SECTION SPACING ─────────────────────────────────────── */
.section { padding: 100px 40px; }
.section-sm { padding: 60px 40px; }
.container { max-width: 1160px; margin: 0 auto; }

/* ── DIVIDER ─────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── LABELS ──────────────────────────────────────────────── */
.label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── HEADINGS ────────────────────────────────────────────── */
.h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
  text-transform: uppercase;
}
.h4 {
  font-family: var(--font-semi);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
.accent-text { color: var(--accent); }
.muted { color: var(--smoke); }

/* ── BODY TEXT ───────────────────────────────────────────── */
.body-lg {
  font-size: 18px;
  line-height: 1.65;
  color: var(--light);
  font-weight: 300;
}
.body-md {
  font-size: 15px;
  line-height: 1.65;
  color: var(--smoke);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── CARD ────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* ── STAT ────────────────────────────────────────────────── */
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  color: var(--accent);
}
.stat-label {
  font-size: 13px;
  color: var(--smoke);
  margin-top: 6px;
  font-family: var(--font-semi);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── TAG ─────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-family: var(--font-semi);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--smoke);
}

/* ── NUMBER BADGE ────────────────────────────────────────── */
.num-badge {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.7;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-logo span { color: var(--accent); }
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-semi);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 12px;
  color: var(--muted);
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

/* ── GRAIN OVERLAY ───────────────────────────────────────── */
.grain::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.35;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both; }
.fade-in { animation: fadeIn 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }

/* ── GRID HELPERS ────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── HERO ACCENT LINE ────────────────────────────────────── */
.accent-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 20px;
}

/* ── TICKER STRIP ────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--surface);
}
.ticker-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticker-item::after {
  content: '◆';
  color: var(--accent);
  font-size: 8px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .section { padding: 72px 20px; }
  .section-sm { padding: 48px 20px; }
  .footer { padding: 40px 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
