:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --fg: #f0f0f0;
  --fg-2: #888888;
  --fg-3: #555555;
  --accent: #E8374A;
  --accent-dim: rgba(232, 55, 74, 0.15);
  --accent-glow: rgba(232, 55, 74, 0.08);
  --white: #ffffff;
  --nav-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* 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(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 55, 74, 0.12);
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 0.05em;
  line-height: 1;
}
.nav-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--fg-2);
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232, 55, 74, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(232, 55, 74, 0.04) 0%, transparent 60%),
    linear-gradient(160deg, #0f0f0f 0%, #0a0a0a 60%, #0d0d0d 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px 60px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-sub em { font-style: normal; color: var(--accent); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat { display: flex; flex-direction: column; }
.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-silhouette {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/9;
}
.car-body {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(90deg, transparent 5%, rgba(232,55,74,0.15) 20%, rgba(232,55,74,0.25) 50%, rgba(232,55,74,0.15) 80%, transparent 95%);
  border-radius: 4px;
}
.car-glow {
  position: absolute;
  bottom: 15%;
  left: 10%;
  right: 10%;
  height: 30%;
  background: radial-gradient(ellipse at center, rgba(232,55,74,0.3) 0%, transparent 70%);
  filter: blur(20px);
}
.car-neon-line {
  position: absolute;
  bottom: 18%;
  left: 8%;
  right: 8%;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 30px rgba(232,55,74,0.5);
  border-radius: 2px;
}

/* PHILOSOPHY */
.philosophy {
  background: var(--bg-2);
  border-top: 1px solid rgba(232,55,74,0.1);
  border-bottom: 1px solid rgba(232,55,74,0.1);
  padding: 100px 60px;
}
.philosophy-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.philosophy-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.philosophy-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 6vw, 88px);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  line-height: 1;
}
.philosophy-body {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}
.philosophy-body:last-child { margin-bottom: 0; }

/* CATEGORIES */
.categories { padding: 100px 60px; background: var(--bg); }
.categories-header { text-align: center; margin-bottom: 60px; }
.categories-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.categories-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.category-card {
  background: var(--bg-2);
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.category-card:hover { background: var(--bg-3); }
.category-card:hover::before { opacity: 1; }
.category-icon { width: 56px; height: 56px; margin-bottom: 24px; }
.category-icon svg { width: 100%; height: 100%; }
.category-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
}
.category-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
  font-weight: 300;
}

/* MANIFESTO */
.manifesto { background: var(--bg); }
.manifesto-inner {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 60px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-reverse { background: var(--bg-2); }
.manifesto-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--accent-dim);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}
.manifesto-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.manifesto-body {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.8;
  font-weight: 300;
}

/* CLOSING */
.closing {
  padding: 120px 60px;
  background: var(--bg-2);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--fg-3);
  margin-bottom: 24px;
}
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 6vw, 88px);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
  font-weight: 300;
}

/* FOOTER */
.footer {
  padding: 48px 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--accent);
}
.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--fg);
}
.footer-tagline { font-size: 12px; color: var(--fg-3); }
.footer-legal { font-size: 12px; color: var(--fg-3); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 100px 32px 60px; }
  .categories { padding: 80px 32px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .philosophy { padding: 80px 32px; }
  .manifesto-inner { grid-template-columns: 60px 1fr; gap: 24px; padding: 48px 32px; }
  .manifesto-number { font-size: 56px; }
  .closing { padding: 80px 32px; }
  .footer { padding: 40px 32px; flex-wrap: wrap; gap: 16px; }
  .nav { padding: 0 24px; }
}
@media (max-width: 600px) {
  .categories-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-number { font-size: 48px; }
}