:root {
  --bg: #0c0b0a;
  --fg: #f0ece4;
  --fg-muted: #9b9587;
  --accent: #d4a853;
  --accent-light: #f0d48a;
  --surface: #171614;
  --surface-elevated: #1e1d1a;
  --border: #2a2825;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* Nav */
.nav {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  color: var(--accent);
  font-size: 18px;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.nav-tagline {
  color: var(--fg-muted);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  padding: 120px 40px 100px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.hero-accent {
  color: var(--accent);
}
.hero-lede {
  max-width: 600px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  display: block;
  color: var(--fg);
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
.hero-shape {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  z-index: 0;
}

/* Section shared */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 60px;
}
.section-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* How it works */
.how-it-works {
  padding: 100px 0;
  background: var(--surface);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step {
  display: flex;
  gap: 20px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  opacity: 0.4;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-content p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Features */
.features {
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  transition: border-color 0.3s;
}
.feature-card:hover {
  border-color: var(--accent);
}
.feature-card-large {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-elevated) 100%);
  border-color: rgba(212, 168, 83, 0.2);
}
.feature-icon {
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Numbers */
.numbers {
  padding: 80px 0;
  background: var(--surface);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}
.big-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.number-desc {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}

/* Closing */
.closing {
  padding: 120px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-mark {
  color: var(--accent);
  font-size: 32px;
  margin-bottom: 32px;
  display: block;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-sub {
  color: var(--fg-muted);
  font-size: 18px;
}

/* Footer */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted);
  font-size: 14px;
}
.footer-dot {
  opacity: 0.4;
}

/* ── Nav link additions ─────────────────────────────────────────── */
.nav-logo { text-decoration: none; color: inherit; }
.nav-shop-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.nav-shop-link:hover { opacity: 0.7; }
.nav-text-link {
  color: var(--fg-muted);
  font-size: 14px;
  text-decoration: none;
  font-family: var(--font-display);
  transition: color 0.15s;
}
.nav-text-link:hover { color: var(--fg); }

/* ── Hero CTA ───────────────────────────────────────────────────── */
.hero-cta { margin-bottom: 48px; }
.hero-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #0c0b0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.15s;
}
.hero-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Shop page ──────────────────────────────────────────────────── */
.shop-header {
  padding: 80px 40px 48px;
  border-bottom: 1px solid var(--border);
}
.shop-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.shop-header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.shop-count {
  font-size: 13px;
  color: var(--fg-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: 0.04em;
}
.shop-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.shop-lede {
  max-width: 640px;
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.7;
}

/* Category nav bar */
.shop-categories-bar {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
}
.category-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.category-pill {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 24px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.category-pill:hover {
  border-color: var(--accent);
  color: var(--fg);
}
.category-pill--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0c0b0a;
  font-weight: 700;
}

/* Catalog section */
.catalog-section {
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--border);
}
.catalog-section:last-of-type { border-bottom: none; }
.catalog-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.catalog-category-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.catalog-category-desc {
  color: var(--fg-muted);
  font-size: 15px;
}
.catalog-product-count {
  font-size: 13px;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Product card */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.2s;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.product-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 66%;
  overflow: hidden;
  background: var(--surface-elevated);
}
.product-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,11,10,0.5) 0%, transparent 50%);
}
.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-brand {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.product-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.product-tagline {
  font-size: 14px;
  color: var(--fg);
  font-style: italic;
  opacity: 0.8;
}
.product-reason {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  flex: 1;
}
.product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.product-cta-text {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.product-cta-arrow {
  color: var(--accent);
  font-size: 16px;
  transition: transform 0.2s;
}
.product-card:hover .product-cta-arrow { transform: translateX(4px); }

/* Affiliate notice */
.shop-footer-note {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.affiliate-notice {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.affiliate-notice::first-letter { color: var(--accent); }

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-tagline { display: none; }
  .hero { padding: 80px 20px 60px; }
  .hero-lede { font-size: 17px; }
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .stat-divider { display: none; }
  .section-inner { padding: 0 20px; }
  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .how-it-works { padding: 60px 0; }
  .features { padding: 60px 0; }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .numbers { padding: 60px 0; }
  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .closing { padding: 80px 20px; }
  .footer { padding: 24px 20px; }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .shop-header { padding: 60px 20px 32px; }
  .shop-header-inner { padding: 0; }
  .catalog-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .product-grid { grid-template-columns: 1fr; }
  .category-nav { gap: 8px; }
}