:root {
  --bg: #0D0D0F;
  --bg-2: #141417;
  --bg-3: #1C1C21;
  --accent: #E85D04;
  --accent-dim: rgba(232, 93, 4, 0.15);
  --text: #F2F2F2;
  --text-dim: #8A8A96;
  --border: rgba(242, 242, 242, 0.08);
  --font-display: 'Chakra Petch', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; gap: 10px; }
.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

/* HERO */
.hero {
  padding: 80px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero__lede {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-dim);
}

/* Hero Visual / Showcase */
.hero__visual { position: relative; }
.hero__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.showcase__item { background: var(--bg-2); border: 1px solid var(--border); border-radius: 6px; padding: 16px; }
.showcase__item--primary { grid-column: 1 / -1; }
.showcase__label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.showcase__preview {
  height: 80px;
  border-radius: 4px;
}
.showcase__item--primary .showcase__preview { height: 120px; }
.showcase__preview--livery {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #e85d04 100%);
  position: relative;
  overflow: hidden;
}
.showcase__preview--livery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 22px);
}
.showcase__preview--overlay {
  background: linear-gradient(180deg, #0D0D0F 0%, rgba(232,93,4,0.25) 100%);
  border: 1px solid rgba(232, 93, 4, 0.3);
  position: relative;
  overflow: hidden;
}
.showcase__preview--overlay::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  height: 4px;
  background: rgba(232,93,4,0.5);
  border-radius: 2px;
}
.showcase__preview--ffb {
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.showcase__preview--ffb::before {
  content: '';
  width: 48px;
  height: 48px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0.4;
}
.showcase__preview--ffb::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}

/* PRODUCTS */
.products {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}
.products__header {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.products__title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.products__sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.6;
}
.products__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.product-card {
  background: var(--bg-2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-card__icon { display: flex; }
.product-card__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.product-card__desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.manifesto__inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
}
.manifesto__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  padding-top: 4px;
}
.manifesto__heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.manifesto__body {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 100px 40px;
}
.closing__inner { max-width: 800px; margin: 0 auto; }
.closing__statement {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #0D0D0F;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer__inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__logo { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--accent); }
.footer__name { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); }
.footer__copy { font-size: 0.85rem; color: var(--text-dim); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .products { padding: 60px 24px; }
  .products__grid { grid-template-columns: 1fr; }
  .manifesto { padding: 60px 24px; }
  .manifesto__inner { grid-template-columns: 1fr; gap: 12px; }
  .manifesto__number { font-size: 1.5rem; }
  .closing { padding: 60px 24px; }
  .nav { padding: 16px 24px; }
}