:root {
  --bg: #f7f5f0;
  --fg: #0d1b2a;
  --accent: #e8a93a;
  --accent-light: #fdf3d8;
  --muted: #6b7a8a;
  --card-bg: #ffffff;
  --border: #e2ddd5;
  --nav-height: 64px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}

/* ── HERO ── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Product card */
.hero-visual { display: flex; flex-direction: column; gap: 24px; }
.product-card {
  background: var(--fg);
  border-radius: 20px;
  padding: 4px;
}
.product-card-inner {
  background: #162332;
  border-radius: 17px;
  padding: 32px;
  position: relative;
}
.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
}
.product-type {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.product-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 12px;
}
.product-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}
.product-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* Stats strip */
.stat-strip {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 24px;
  overflow: hidden;
}
.stat { text-align: center; flex: 1; }
.stat-num {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 4px;
}

/* ── PROOF ── */
.proof {
  background: var(--fg);
  padding: 60px 32px;
}
.proof-label {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}
.proof-items {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.proof-item {}
.proof-quote {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 12px;
  font-style: italic;
}
.proof-credit {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── FEATURES ── */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
  line-height: 1.1;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--card-bg);
  padding: 36px 28px;
  transition: transform 0.2s ease;
}
.feature-card:hover { transform: translateY(-2px); }
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--accent-light);
  padding: 80px 32px;
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(13,27,42,0.5);
  margin-bottom: 20px;
}
.manifesto-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  max-width: 700px;
  line-height: 1.1;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-stat {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--fg);
  border-radius: 14px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.manifesto-stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.manifesto-stat-text {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ── CLOSING ── */
.closing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 32px 80px;
}
.closing-inner { max-width: 680px; }
.closing-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin-left: 8px;
}
.footer-note {
  font-size: 13px;
  color: rgba(107,122,138,0.6);
  margin-left: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .proof-items { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 20px 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .features, .manifesto, .closing, .footer { padding-left: 20px; padding-right: 20px; }
  .nav-inner { padding: 0 20px; }
  .proof { padding: 48px 20px; }
  .stat-strip { flex-direction: column; gap: 12px; }
  .stat-divider { width: 40px; height: 1px; margin: 0 auto; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-note { margin-left: 0; }
}