:root {
  --bg: #0D0D0D;
  --fg: #F2EFE9;
  --accent: #D4FF1F;
  --accent-dim: rgba(212, 255, 31, 0.12);
  --surface: #161616;
  --surface2: #1E1E1E;
  --muted: #777;
  --border: rgba(242, 239, 233, 0.08);
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 255, 31, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 255, 31, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-accent-line {
  position: absolute;
  top: 0;
  right: 30%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0.2;
}

.hero-glow {
  position: absolute;
  bottom: -20%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 255, 31, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  line-height: 0.85;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
}

.hero-headline-main {
  font-size: clamp(120px, 18vw, 220px);
  letter-spacing: -0.02em;
  color: var(--fg);
  display: block;
}

.hero-headline-sub {
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-top: -8px;
}

.hero-lede {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(242, 239, 233, 0.7);
  max-width: 420px;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-meta-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}

/* Visual stack icon */
.hero-visual {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.hero-icon-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.icon-bar {
  width: 60px;
  height: 280px;
  background: var(--fg);
  border-radius: 4px;
}

.icon-plate {
  width: 200px;
  height: 20px;
  background: var(--accent);
  border-radius: 10px;
  margin-top: -2px;
}

.icon-label {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--fg);
  margin-top: 16px;
  letter-spacing: 0.1em;
}

/* ─── MANIFESTO ───────────────────────────── */
.manifesto {
  padding: 140px 60px;
  position: relative;
  border-top: 1px solid var(--border);
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 60px;
  max-width: 900px;
}

.manifesto-number {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  padding-top: 8px;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.manifesto-body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(242, 239, 233, 0.6);
  max-width: 560px;
  margin-bottom: 36px;
}

.manifesto-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: rgba(242, 239, 233, 0.5);
}

/* ─── THE FIT ──────────────────────────────── */
.thefit {
  padding: 140px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.thefit-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 80px;
}

.section-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
}

.thefit-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.01em;
}

.thefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.fit-card {
  background: var(--surface2);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s ease;
}

.fit-card:hover { background: #242424; }

.fit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.fit-card:hover::before { transform: scaleX(1); }

.fit-card-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 28px;
}

.fit-card-icon svg { width: 100%; height: 100%; }

.fit-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.fit-card-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 239, 233, 0.5);
}

/* ─── PHILOSOPHY ───────────────────────────── */
.philosophy {
  padding: 160px 60px;
  text-align: center;
  position: relative;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 255, 31, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--fg);
}

.philosophy-attr {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 80px;
}

.philosophy-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat {
  padding: 0 48px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ─── CLOSER ───────────────────────────────── */
.closer {
  padding: 160px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.closer-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 100px);
  line-height: 0.9;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.closer-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(242, 239, 233, 0.55);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.closer-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 32px;
}

.closer-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.2em;
  color: rgba(242, 239, 233, 0.4);
  text-transform: uppercase;
}

/* ─── FOOTER ───────────────────────────────── */
.footer {
  padding: 48px 60px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
}

.footer-dot {
  color: var(--accent);
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.footer-sep { opacity: 0.3; }

.footer-powered {
  font-size: 12px;
  color: var(--muted);
}

.footer-powered a {
  color: var(--accent);
  text-decoration: none;
}

/* ─── RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  .hero { padding: 60px 32px; }
  .hero-visual { display: none; }
  .hero-meta { gap: 24px; }

  .manifesto { padding: 100px 32px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 24px; }
  .manifesto-number { font-size: 48px; }

  .thefit { padding: 100px 32px; }
  .thefit-grid { grid-template-columns: 1fr; gap: 2px; }
  .fit-card { padding: 36px 32px; }

  .philosophy { padding: 100px 32px; }
  .philosophy-stats { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }

  .closer { padding: 100px 32px; }

  .footer { padding: 40px 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 24px; }
  .manifesto { padding: 80px 24px; }
  .thefit { padding: 80px 24px; }
  .philosophy { padding: 80px 24px; }
  .closer { padding: 80px 24px; }
  .footer { padding: 32px 24px; }

  .hero-meta { flex-direction: column; gap: 16px; }
}
