:root {
  --bg: #0A0A0A;
  --bg-alt: #0F0F0F;
  --fg: #F0EDE6;
  --fg-muted: #8A8680;
  --gold: #C9A84C;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --gold-glow: rgba(201, 168, 76, 0.08);
  --green: #1A3D2E;
  --green-dim: rgba(26, 61, 46, 0.3);
  --border: rgba(201, 168, 76, 0.12);
  --border-bright: rgba(201, 168, 76, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ======================== NAV ======================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.nav-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.nav-product-link {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--border-bright);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.nav-product-link:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

/* ======================== HERO ======================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 4rem;
}

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

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
}

.hero-product-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
}

.product-orb {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.orb-ring-1 { width: 280px; height: 280px; opacity: 0.12; animation: spin-slow 18s linear infinite; }
.orb-ring-2 { width: 220px; height: 220px; opacity: 0.2; border-style: dashed; animation: spin-slow 12s linear infinite reverse; }
.orb-ring-3 { width: 160px; height: 160px; opacity: 0.3; animation: spin-slow 8s linear infinite; }

.orb-core {
  width: 80px;
  height: 80px;
  background: radial-gradient(ellipse, var(--gold) 0%, rgba(201,168,76,0.3) 50%, transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(201,168,76,0.4), 0 0 120px rgba(201,168,76,0.15);
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.product-tray {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.tray-surface {
  width: 200px;
  height: 60px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.6), 0 0 1px var(--gold);
}

.tray-groove {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  border-radius: 2px;
}

.grinder-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.grinder-top {
  width: 18px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
}

.grinder-body {
  width: 16px;
  height: 10px;
  background: linear-gradient(180deg, #C9A84C 0%, #8a7030 100%);
  border-radius: 0 0 3px 3px;
}

/* Hero text side */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 2rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 420px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.divider-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--border);
}

.divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-products {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

.product-dot {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

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

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.manifesto-statement {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 2.5rem;
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

.manifesto-body p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto;
}

.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pillar-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--gold-dim);
}

.pillar-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.pillar-desc {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ======================== PRODUCTS ======================== */
.products {
  padding: 7rem 2rem;
}

.products-header {
  max-width: 1200px;
  margin: 0 auto 5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}

.products-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.products-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.product-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  transition: background 0.3s ease;
  cursor: default;
}

.product-card:hover { background: #0D0D0D; }

.card-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Grinder schematic */
.card-visual-grinder .visual-ring {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}

.grinder-schematic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  z-index: 1;
  position: relative;
}

.sch-top {
  width: 36px;
  height: 16px;
  background: linear-gradient(180deg, #C9A84C 0%, #8a7030 100%);
  border-radius: 3px 3px 0 0;
  border: 1px solid var(--gold);
  position: relative;
}

.sch-top::before {
  content: '';
  position: absolute;
  inset: 3px 3px 3px 3px;
  background: repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(0,0,0,0.3) 4px, rgba(0,0,0,0.3) 5px);
}

.sch-body {
  width: 32px;
  height: 20px;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid var(--border-bright);
  border-radius: 0 0 2px 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.sch-teeth {
  width: 24px;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--gold) 0px, var(--gold) 3px, transparent 3px, transparent 5px);
}

/* Tray schematic */
.card-visual-tray .tray-schematic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tray-base {
  width: 110px;
  height: 36px;
  background: linear-gradient(180deg, #252525 0%, #181818 100%);
  border: 1px solid var(--gold);
  border-radius: 3px;
  position: relative;
}

.tray-rim {
  position: absolute;
  inset: 3px;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.tray-groove-schematic {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin-top: -2px;
}

/* Jar schematic */
.jar-schematic {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48px;
}

.jar-body {
  width: 40px;
  height: 52px;
  background: linear-gradient(180deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 0 0 6px 6px;
}

.jar-lid {
  width: 44px;
  height: 10px;
  background: linear-gradient(180deg, #C9A84C 0%, #8a7030 100%);
  border-radius: 2px 2px 0 0;
  margin-bottom: -1px;
}

.jar-seal {
  width: 48px;
  height: 4px;
  background: var(--gold);
  opacity: 0.3;
}

/* Lighter schematic */
.lighter-schematic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.lighter-body {
  width: 20px;
  height: 48px;
  background: linear-gradient(180deg, #C9A84C 0%, #7a5a10 80%, #5a4010 100%);
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.lighter-body::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 6px;
  background: #555;
  border-radius: 1px;
}

/* Card text */
.card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-category {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.card-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ======================== PROOF ======================== */
.proof {
  background: var(--green);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(0,0,0,0.03) 40px,
    rgba(0,0,0,0.03) 41px
  );
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.proof-stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(240, 237, 230, 0.7);
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.proof-divider {
  width: 1px;
  height: 80px;
  background: rgba(201,168,76,0.2);
}

.proof-caption {
  max-width: 500px;
  margin: 2.5rem auto 0;
  font-size: 0.85rem;
  color: rgba(240, 237, 230, 0.6);
  text-align: center;
  font-style: italic;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ======================== CLOSING ======================== */
.closing {
  padding: 8rem 2rem 7rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60%;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.ornament-line {
  width: 80px;
  height: 1px;
  background: var(--border);
}

.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
}

.closing-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.closing-vision {
  max-width: 560px;
  margin: 0 auto 3rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--gold-glow);
}

.closing-vision p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
}

.closing-cta-note {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ======================== FOOTER ======================== */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-brand {}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.7rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 6rem;
    min-height: auto;
    gap: 3rem;
  }

  .hero-product-visual {
    min-height: 260px;
  }

  .product-orb {
    width: 200px;
    height: 200px;
  }

  .orb-ring-1 { width: 180px; height: 180px; }
  .orb-ring-2 { width: 140px; height: 140px; }
  .orb-ring-3 { width: 100px; height: 100px; }
  .orb-core { width: 50px; height: 50px; }

  .hero-content { padding-left: 0; }

  .manifesto-pillars {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pillar { justify-content: center; }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .proof-divider {
    width: 80px;
    height: 1px;
  }

  .products-header {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-headline {
    font-size: 4rem;
  }

  .closing-headline {
    font-size: 3rem;
  }
}