:root {
  --bg: #F5F0E8;
  --bg-dark: #1C1C1C;
  --text: #1C1C1C;
  --text-muted: #7A7060;
  --text-light: #A8A098;
  --accent: #C46B3E;
  --accent-warm: #E8A87C;
  --sage: #7A9E7E;
  --cream: #FAF7F2;
  --border: #E2D9CA;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Section label */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
}
.hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-shelf {
  position: relative;
  width: 420px;
  padding-bottom: 20px;
}
.shelf-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 0 20px;
}
.shelf-board {
  height: 14px;
  background: linear-gradient(180deg, #C8A882 0%, #A88B6A 100%);
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(196, 107, 62, 0.3);
  position: relative;
  z-index: 2;
}
.shelf-board::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 0; right: 0;
  height: 8px;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, transparent 100%);
  border-radius: 2px 2px 0 0;
}
.shelf-brackets {
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
}
.bracket-left, .bracket-right {
  width: 10px;
  height: 60px;
  background: linear-gradient(180deg, #8B7355 0%, #6B5A42 100%);
  border-radius: 2px;
}
.jar {
  border-radius: 8px 8px 12px 12px;
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.2) 100%);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.jar-sm  { height: 60px; width: 40px; }
.jar-med { height: 80px; width: 44px; }
.jar-tall{ height: 100px; width: 48px; }
.cell-1 .jar { background: linear-gradient(135deg, #E8C9A0 0%, #C9A878 100%); }
.cell-2 .jar { background: linear-gradient(135deg, #C4B8A0 0%, #A89880 100%); }
.cell-3 .jar { background: linear-gradient(135deg, #E8A87C 0%, #C46B3E 100%); }
.cell-4 .jar { background: linear-gradient(135deg, #9EB88A 0%, #7A9E7E 100%); }
.cell-5 .jar { background: linear-gradient(135deg, #D4C4B0 0%, #B8A890 100%); }
.jar::before {
  content: '';
  position: absolute;
  top: 4px; left: 4px; right: 50%;
  height: 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 3px;
}
.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 107, 62, 0.12) 0%, transparent 70%);
  top: 50%;
  transform: translateY(-50%);
  right: 80px;
}
.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
}

/* Pain Section */
.pain {
  background: var(--bg-dark);
  color: var(--cream);
  padding: 120px 40px;
}
.pain-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pain .section-label { color: var(--accent-warm); }
.pain-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 72px;
  color: var(--cream);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 48px 40px;
}
.pain-stat {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-warm);
  margin-bottom: 16px;
  line-height: 1;
}
.pain-desc {
  font-size: 15px;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.6;
}

/* How Section */
.how {
  padding: 120px 40px;
  background: var(--cream);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 80px;
  color: var(--text);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.step { }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  margin-bottom: 20px;
  line-height: 1;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Features Section */
.features {
  padding: 120px 40px;
  background: var(--bg);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 72px;
  color: var(--text);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.feature {
  background: var(--bg);
  padding: 48px 40px;
  transition: background 0.2s;
}
.feature:hover { background: var(--cream); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Manifesto */
.manifesto {
  background: var(--sage);
  padding: 120px 40px;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 40px;
}
.manifesto-body {
  font-size: 18px;
  color: rgba(250, 247, 242, 0.8);
  line-height: 1.7;
  margin-bottom: 20px;
}
.manifesto-body em { color: var(--cream); font-style: italic; }

/* Closing */
.closing {
  padding: 140px 40px;
  background: var(--bg-dark);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--cream);
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
}
.footer-desc {
  font-size: 13px;
  color: rgba(250,247,242,0.3);
  margin-top: 4px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(250,247,242,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 24px; flex-direction: column; min-height: auto; padding-top: 100px; }
  .hero-bg { position: relative; width: 100%; height: 260px; margin-bottom: 40px; }
  .hero-shelf { width: 280px; }
  .jar-sm { height: 44px; width: 30px; }
  .jar-med { height: 60px; width: 34px; }
  .jar-tall { height: 76px; width: 38px; }
  .shelf-board { height: 10px; }
  .bracket-left, .bracket-right { height: 40px; }
  .hero-headline { font-size: 44px; }
  .pain { padding: 80px 24px; }
  .pain-grid { grid-template-columns: 1fr; gap: 16px; }
  .pain-stat { font-size: 44px; }
  .how { padding: 80px 24px; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 80px 24px; }
  .manifesto-quote { font-size: 26px; }
  .closing { padding: 80px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .nav-inner { padding: 14px 24px; }
}