:root {
  --bg: #0c0c0c;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --fg: #f0ede6;
  --fg-muted: #8a8680;
  --accent: #ff4500;
  --accent-dim: rgba(255, 69, 0, 0.12);
  --border: rgba(240, 237, 230, 0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--fg);
}
.nav-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  border-radius: 4px;
}
.nav-link:hover { color: var(--fg); }
.nav-shop {
  color: var(--accent);
  font-weight: 500;
}
.nav-shop:hover { color: var(--fg); }
.nav-admin { opacity: 0.5; }

/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 48px;
}
.hero-bg-shape {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 880px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 6px;
  transition: background 0.2s;
}
.hero-cta-btn:hover { background: #e03d00; }
.hero-cta-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.hero-cta-link:hover { color: var(--fg); }

/* SHOP PREVIEW */
.shop-preview {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.shop-preview-inner { max-width: 1200px; margin: 0 auto; }
.shop-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.shop-preview-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.shop-preview-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
}
.shop-preview-all-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  white-space: nowrap;
  margin-bottom: 4px;
}
.shop-preview-all-link:hover { color: var(--accent); }
.shop-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.shop-preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.shop-preview-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.shop-preview-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-2);
}
.shop-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-preview-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font-display);
  color: var(--fg-muted);
}
.shop-preview-category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(12, 12, 12, 0.75);
  backdrop-filter: blur(4px);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  padding: 4px 8px;
  border-radius: 4px;
}
.shop-preview-body { padding: 14px; }
.shop-preview-name { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.shop-preview-items { font-size: 12px; color: var(--fg-muted); }

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 56px;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.manifesto-item {}
.manifesto-num {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.manifesto-item h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--fg);
}
.manifesto-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* PROOF */
.proof {
  padding: 80px 48px;
  background: var(--surface);
}
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 48px;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.proof-stat {
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--bg);
}
.proof-num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.proof-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* OUTCOMES */
.outcomes {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 48px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.outcome-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.outcome-icon {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}
.outcome-card h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--fg);
}
.outcome-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 100px 48px 80px;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 900px; margin: 0 auto; }
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: 0.02em;
}

/* FOOTER */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px; min-height: 70vh; }
  .hero-bg-shape { top: -80px; right: -120px; width: 400px; height: 400px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .shop-preview { padding: 60px 24px; }
  .shop-preview-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .shop-preview-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .manifesto, .outcomes, .closing { padding: 60px 24px; }
  .proof { padding: 60px 24px; }
  .manifesto-grid, .proof-grid, .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
}