/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0C0B09;
  --bg-2: #141411;
  --bg-3: #1C1B17;
  --fg: #F2EFE9;
  --fg-muted: #8A877F;
  --accent: #E8571A;
  --accent-dim: rgba(232, 87, 26, 0.15);
  --olive: #4B5E2E;
  --border: rgba(242, 239, 233, 0.08);
  --border-strong: rgba(242, 239, 233, 0.15);
}

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(12, 11, 9, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--fg);
}

.brand-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  border-left: 1px solid var(--border-strong);
  padding-left: 10px;
  margin-left: 2px;
}

.nav-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

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

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 87, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 87, 26, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 87, 26, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.9;
  font-size: clamp(5rem, 13vw, 11rem);
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.line-first { display: block; }

.line-hate {
  display: block;
  color: var(--accent);
  text-shadow: 0 0 80px rgba(232, 87, 26, 0.4);
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-product-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-product-img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-3);
  flex-shrink: 0;
}

.hero-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-meta { display: flex; flex-direction: column; gap: 8px; }

.hero-product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--fg);
}

.hero-product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--accent);
}

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  padding: 3px 10px;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--bg-2);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.manifesto-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.5;
  padding-top: 8px;
}

.manifesto-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
}

.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 600px;
}

.manifesto-rule {
  height: 1px;
  background: var(--border);
  max-width: 900px;
  margin-top: 60px;
  margin-left: 128px;
}

/* === GEAR === */
.gear {
  padding: 100px 48px;
  background: var(--bg);
}

.gear-header {
  margin-bottom: 60px;
}

.gear-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--fg);
  letter-spacing: 0.05em;
}

.gear-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-top: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gear-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.gear-card {
  background: var(--bg-2);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gear-card-feature {
  grid-row: span 2;
  padding: 40px;
}

.gear-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-3);
}

.gear-card-feature .gear-img-wrap {
  aspect-ratio: 3/2;
}

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

.gear-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gear-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(232, 87, 26, 0.3);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.gear-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.gear-card-feature .gear-name {
  font-size: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

.gear-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.gear-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--fg);
  margin-top: auto;
}

/* === WHY === */
.why {
  background: var(--bg-2);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}

.why-header { margin-bottom: 60px; }

.why-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 16px;
}

.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1.05;
  color: var(--fg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.why-item {
  border-left: 1px solid var(--border-strong);
  padding-left: 24px;
}

.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.why-item-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 12px;
}

.why-item-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  background: var(--bg);
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 40px;
}

.closing-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 28px;
}

.closing-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

/* === FOOTER === */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--fg);
}

.footer-brand-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-links span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-links span:hover { color: var(--fg); }

.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-note {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .navbar { padding: 14px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: clamp(3.5rem, 15vw, 7rem); }
  .manifesto { padding: 60px 24px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 24px; }
  .manifesto-number { font-size: 2.5rem; }
  .manifesto-rule { margin-left: 0; }
  .gear { padding: 60px 24px; }
  .gear-grid { grid-template-columns: 1fr; border-radius: 8px; }
  .gear-card-feature { grid-row: auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-title { font-size: 2.5rem; }
  .closing { padding: 80px 24px; }
  .closing-headline { font-size: 3rem; }
  .footer { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero-product-row { flex-direction: column; align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr; }
  .gear-grid { gap: 1px; }
}