:root {
  --bg: #0d0d0d;
  --bg2: #111111;
  --fg: #f5f5f0;
  --fg-muted: #888880;
  --red: #e63025;
  --red-dark: #b8251c;
  --amber: #f5a623;
  --amber-dim: rgba(245, 166, 35, 0.08);
  --gray-1: #1a1a1a;
  --gray-2: #242424;
  --gray-3: #2e2e2e;
}

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

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
}
.topbar-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { font-size: 18px; color: var(--red); font-weight: 700; }
.logo-text { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; letter-spacing: -0.5px; color: var(--fg); }
.topbar-tag { font-size: 11px; color: var(--fg-muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(230,48,37,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(245,166,35,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0d0d0d 0%, #111111 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.015) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.015) 40px);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.eyebrow-line { display: block; width: 32px; height: 1px; background: var(--red); }
.eyebrow-text { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted); font-weight: 500; }
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 32px;
}
.headline-word { display: block; }
.headline-red { color: var(--red); }
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(245,245,240,0.65);
  max-width: 520px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--fg); }
.stat-label { font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* ── WHAT IS ── */
.whatis {
  background: var(--bg2);
  padding: 120px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.whatis-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(230,48,37,0.3);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 40px;
}
.whatis-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 40px;
}
.whatis-headline em { color: var(--red); font-style: normal; }
.whatis-body p { font-size: 17px; line-height: 1.7; color: rgba(245,245,240,0.6); max-width: 560px; margin-bottom: 72px; }
.whatis-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.pillar {
  background: var(--gray-1);
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s ease;
}
.pillar:hover { background: var(--gray-2); }
.pillar-icon { font-size: 28px; margin-bottom: 20px; display: block; }
.pillar h3 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.pillar p { font-size: 13px; line-height: 1.6; color: rgba(245,245,240,0.5); }

/* ── FEATURES ── */
.features {
  background: var(--bg);
  padding: 120px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.feature-card {
  background: var(--gray-1);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease;
}
.feature-card:hover { background: var(--gray-2); }
.feature-card--wide { grid-column: span 2; }
.feature-num {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 20px; right: 28px;
  line-height: 1;
}
.feature-card h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 14px; letter-spacing: -0.3px; }
.feature-card p { font-size: 14px; line-height: 1.7; color: rgba(245,245,240,0.5); max-width: 480px; }
.feature-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.ftag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(230,48,37,0.25);
  color: rgba(230,48,37,0.7);
  border-radius: 1px;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--gray-1);
  padding: 120px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto-quote {
  margin-bottom: 80px;
  position: relative;
  padding-left: 48px;
}
.quote-mark {
  position: absolute;
  left: 0; top: -16px;
  font-family: 'Syne', sans-serif;
  font-size: 120px;
  color: var(--red);
  opacity: 0.2;
  line-height: 1;
}
.manifesto-quote blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 20px;
}
.manifesto-quote cite {
  font-size: 14px;
  color: var(--red);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.mgrid-item {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px 32px;
}
.mgrid-item h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 12px; color: var(--fg); }
.mgrid-item p { font-size: 13px; line-height: 1.7; color: rgba(245,245,240,0.45); }

/* ── CLOSING ── */
.closing {
  background: var(--bg);
  padding: 140px 40px 120px;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,48,37,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.closing .section-tag { margin-bottom: 40px; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.closing-sub { font-size: 17px; line-height: 1.7; color: rgba(245,245,240,0.55); max-width: 560px; margin: 0 auto 56px; }
.closing-cta { background: var(--gray-1); border: 1px solid rgba(255,255,255,0.08); padding: 40px 48px; border-radius: 2px; }
.cta-note { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 10px; }
.cta-action { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--fg); }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 40px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand .footer-logo { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; display: block; margin-bottom: 6px; }
.footer-desc { font-size: 12px; color: var(--fg-muted); }
.footer-links { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-link { font-size: 12px; color: rgba(245,245,240,0.4); cursor: pointer; transition: color 0.2s; }
.footer-link:hover { color: var(--fg); }
.footer-sep { color: rgba(255,255,255,0.1); font-size: 11px; }
.footer-copy { font-size: 11px; color: rgba(245,245,240,0.2); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .topbar { padding: 14px 20px; }
  .topbar-tag { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-headline { font-size: 60px; letter-spacing: -2px; }
  .hero-sub { font-size: 15px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { display: none; }
  .whatis { padding: 80px 20px; }
  .whatis-pillars { grid-template-columns: 1fr 1fr; gap: 2px; }
  .pillar { padding: 28px 20px; }
  .features { padding: 80px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: span 1; }
  .feature-card { padding: 36px 28px; }
  .manifesto { padding: 80px 20px; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 20px; }
  .closing-cta { padding: 28px 24px; }
  .site-footer { padding: 36px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .whatis-pillars { grid-template-columns: 1fr; }
}

/* ── SCROLL REVEAL ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.8s ease forwards; }
.whatis { animation: fadeUp 0.8s ease 0.1s both; }
.features { animation: fadeUp 0.8s ease 0.2s both; }
.manifesto { animation: fadeUp 0.8s ease 0.3s both; }
.closing { animation: fadeUp 0.8s ease 0.4s both; }
