:root {
  --bg: #faf9f7;
  --bg-alt: #f0ede8;
  --fg: #0f0e0c;
  --fg-muted: #6b6560;
  --accent: #4338ca;
  --accent-warm: #d97706;
  --card-bg: #ffffff;
  --border: #e8e4de;
  --nav-h: 64px;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,249,247,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--fg);
}
.nav-tag {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 80px 32px 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
}

/* PRODUCT CARDS */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.product-card:first-child {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.product-card-sm {
  grid-column: 2;
  grid-row: 1;
}
.product-card-xs {
  grid-column: 2;
  grid-row: 2;
}
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #10b981;
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  background: var(--bg-alt);
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.card-stars {
  color: var(--accent-warm);
  font-size: 13px;
  letter-spacing: -1px;
}
.card-reviews {
  font-size: 12px;
  color: var(--fg-muted);
}
.card-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--fg);
}
.card-price {
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}
.card-shipping {
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-muted);
}
.card-cta {
  margin-top: 8px;
  font-size: 11px;
  color: var(--fg-muted);
  background: var(--bg);
  padding: 4px 8px;
  border-radius: 6px;
  text-align: center;
}
.card-cta-active {
  background: #f0fdf4;
  color: #16a34a;
}

/* STATS ROW */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.stat-num {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 40px;
}

/* HOW SECTION */
.how {
  background: var(--fg);
  color: #fff;
  padding: 80px 32px;
}
.how-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}
.how-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}
.how-header p {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
}
.how-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-num {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.step p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
}

/* FEATURES */
.features {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px;
}
.feature-main {
  grid-column: 1;
  grid-row: 1;
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.feature p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* RESULTS */
.results {
  background: var(--bg-alt);
  padding: 80px 32px;
}
.results-header {
  max-width: 1200px;
  margin: 0 auto 48px;
}
.results-header h2 {
  font-size: clamp(24px, 3vw, 36px);
}
.results-table {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.table-col {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.table-label {
  background: var(--fg);
  color: white;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.table-item {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.table-item:last-child { border-bottom: none; }
.item-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}
.item-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.table-col-after .item-title { color: var(--accent); }

/* MANIFESTO */
.manifesto {
  padding: 80px 32px;
  background: var(--fg);
  color: #fff;
}
.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
}
.manifesto-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.manifesto-text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.manifesto-text:last-child { margin-bottom: 0; }

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-name {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 280px;
  text-align: right;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 48px 20px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; align-items: flex-start; }
  .stat-divider { display: none; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .results-table { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-note { text-align: left; }
}
