:root {
  --bg: #faf8f4;
  --bg-dark: #1a1a1a;
  --fg: #1a1a1a;
  --fg-light: #6b6b6b;
  --fg-muted: #9a9a9a;
  --accent: #ff4d2b;
  --accent-warm: #c8933a;
  --border: #e8e4dc;
  --card-bg: #ffffff;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.nav__logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav__tagline {
  font-size: 13px;
  color: var(--fg-light);
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__badge {
  background: var(--accent);
  color: white;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.hero__headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-light);
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero__meta {
  display: flex;
  gap: 40px;
}
.hero__stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
}
.hero__stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero__product {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__product--tall {
  grid-column: span 2;
  min-height: 180px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
}
.hero__product-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 4px;
}
.hero__product--tall .hero__product-label {
  color: white;
  font-size: 26px;
}
.hero__product-sub {
  font-size: 12px;
  color: var(--fg-muted);
}
.hero__product--tall .hero__product-sub {
  color: rgba(255,255,255,0.55);
}

/* Manifesto */
.manifesto {
  background: var(--bg-dark);
  color: white;
  padding: 100px 40px;
}
.manifesto__inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto__overline {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.manifesto__headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 32px;
  color: white;
}
.manifesto__body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  font-weight: 300;
}

/* Brands */
.brands {
  padding: 80px 40px;
}
.brands__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.brands__header {
  margin-bottom: 48px;
}
.brands__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.brands__headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.5px;
}
.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.brand-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.brand-card--feastables::before { background: #8B6914; }
.brand-card--prime::before { background: #00D4FF; }
.brand-card--cloak::before { background: #1a1a1a; }
.brand-card--coffee::before { background: #3d1f0d; }
.brand-card--mrbeast::before { background: #2d9c4a; }
.brand-card--pewdie::before { background: #ff4d2b; }

.brand-card__logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}
.brand-card__creator {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.brand-card__products {
  font-size: 14px;
  color: var(--fg-light);
  line-height: 1.5;
  margin-bottom: 16px;
}
.brand-card__tag {
  font-size: 11px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  color: var(--fg-light);
  font-weight: 500;
}

/* Why */
.why {
  padding: 80px 40px;
  background: #f4f1ea;
}
.why__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.why__headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.why__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-light);
  margin-bottom: 16px;
}
.why__point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.why__point:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.why__point-icon {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  min-width: 32px;
  height: 32px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__point-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg);
}

/* Closing */
.closing {
  padding: 100px 40px;
  text-align: center;
}
.closing__inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing__bar {
  width: 48px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto 40px;
  border-radius: 2px;
}
.closing__headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing__sub {
  font-size: 18px;
  color: var(--fg-light);
  line-height: 1.6;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.footer__logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 6px;
}
.footer__desc {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer__meta {
  font-size: 12px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.6;
  text-align: right;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
  .why__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__meta { text-align: left; }
}
@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 48px 20px 40px; }
  .hero__product-grid { grid-template-columns: 1fr; }
  .hero__product--tall { grid-column: span 1; min-height: 150px; }
  .brands { padding: 60px 20px; }
  .brands__grid { grid-template-columns: 1fr; }
  .why { padding: 60px 20px; }
  .closing { padding: 60px 20px; }
  .footer { padding: 32px 20px; }
  .hero__meta { gap: 24px; }
}