/* =======================
   TOKENS & RESET
   ======================= */
:root {
  --bg: #0d0d14;
  --bg-raised: #15151f;
  --bg-card: #1c1c28;
  --accent: #f59e0b;
  --accent-dim: #b47400;
  --text: #f0eee8;
  --text-muted: #7a7a8c;
  --text-subtle: #4a4a5e;
  --border: #2a2a3a;
  --border-light: #1e1e2c;
  --section-pad: 80px 24px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* =======================
   HEADER
   ======================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover { color: var(--accent); }

/* =======================
   SECTION HELPERS
   ======================= */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 20px;
}

.section-body {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 560px;
  line-height: 1.7;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--accent) 0%, var(--accent-dim) 60%, transparent 100%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(255,255,255,0.02) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.hero-headline {
  margin-bottom: 28px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 180px);
  letter-spacing: 0.08em;
  line-height: 0.9;
  display: block;
  color: var(--text);
  background: linear-gradient(160deg, var(--text) 0%, #c8c0b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 56px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.hero-stat {
  flex: 1;
  padding: 0 32px 0 0;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 32px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  display: block;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* =======================
   CATEGORIES
   ======================= */
.categories {
  padding: var(--section-pad);
  background: var(--bg-raised);
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.category-card {
  background: var(--bg-card);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.category-auto::before { background: var(--accent); }
.category-moto::before { background: #c77dff; }

.category-icon {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 12px;
}

.category-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* =======================
   PLATFORMS
   ======================= */
.platforms {
  padding: var(--section-pad);
}

.platform-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.platform-item {
  flex: 1;
  min-width: 200px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  padding: 32px 28px;
}

.platform-logo {
  color: var(--accent);
  margin-bottom: 16px;
}

.platform-item h4 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 10px;
}

.platform-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.platform-arrow {
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  padding-top: 40px;
  flex-shrink: 0;
}

/* =======================
   CATALOG
   ======================= */
.catalog {
  padding: var(--section-pad);
  background: var(--bg-raised);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}

.catalog-item {
  background: var(--bg-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.catalog-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 4px;
}

.catalog-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--text);
}

.catalog-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =======================
   PHILOSOPHY
   ======================= */
.philosophy {
  padding: var(--section-pad);
  background: var(--bg);
}

.philosophy-content {
  max-width: 680px;
  margin-bottom: 56px;
}

.philosophy-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--text);
  margin: 16px 0 24px;
}

.philosophy-content p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.philosophy-content p + p { margin-top: 16px; }

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.pillar h4 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 8px;
}

.pillar p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =======================
   CLOSING
   ======================= */
.closing {
  padding: 120px 24px;
  background: var(--bg);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}

.closing-statement-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* =======================
   FOOTER
   ======================= */
.site-footer {
  border-top: 1px solid var(--border-light);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

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

.channel-tag {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 2px;
}

/* =======================
   RESPONSIVE
   ======================= */
@media (max-width: 768px) {
  nav { display: none; }

  .category-grid,
  .catalog-grid,
  .philosophy-pillars { grid-template-columns: 1fr; }

  .platform-row { flex-direction: column; }
  .platform-arrow { display: none; }

  .hero-stat-row {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }

  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0; }

  .hero-sub br { display: none; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .category-card { padding: 32px 24px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}