:root {
  --bg: #F7F4EF;
  --fg: #1C1C1C;
  --accent: #B84A1E;
  --accent-light: #F0E8E0;
  --muted: #6B6560;
  --border: #E0D9CF;
  --card-bg: #FFFFFF;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* ── NAV ── */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav__tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero__lede {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
}

/* Transcript Card */
.hero__transcript-card {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(28, 28, 28, 0.08);
}
.transcript-card__header {
  background: #F0ECE7;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.transcript-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.transcript-card__dot:first-child { background: #E8A07A; }
.transcript-card__dot:nth-child(2) { background: #C4A882; }
.transcript-card__dot:nth-child(3) { background: #9BB5A0; }
.transcript-card__label {
  font-size: 11px;
  color: var(--muted);
  margin-left: 6px;
  font-weight: 500;
}
.transcript-card__body {
  padding: 20px 24px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 12.5px;
  line-height: 1.7;
}
.transcript-line {
  margin-bottom: 6px;
}
.transcript-speaker {
  color: var(--accent);
  font-weight: 700;
  margin-right: 8px;
  display: inline;
}
.transcript-text { color: var(--fg); }
.transcript-line--staged {
  padding-left: 20px;
  margin-bottom: 6px;
}
.transcript-annotation {
  color: #888;
  font-style: italic;
}
.transcript-card__badge {
  margin-top: 16px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ── WHY ── */
.why {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.why__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.why__header {
  text-align: center;
  margin-bottom: 56px;
}
.why__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}
.why__sub {
  font-size: 18px;
  color: var(--muted);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.why__item {}
.why__icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.why__item-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.why__item-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PRODUCTS ── */
.products {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.products__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.products__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.products__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 48px;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 28px 24px;
  position: relative;
}
.product-card__tag {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 6px 6px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.product-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}
.product-card__format {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.products__bundle {
  background: var(--fg);
  color: white;
  border-radius: 10px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products__bundle-label {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}
.products__bundle-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
}

/* ── PROOF ── */
.proof {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.proof__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.proof__quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 16px;
  display: block;
}
.proof__quote {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.45;
  margin-bottom: 16px;
}
.proof__attr {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.proof__context {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.proof__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.proof__stats { list-style: none; }
.proof__stat {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.proof__stat:last-child { border-bottom: none; }
.proof__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.proof__stat-label {
  font-size: 13px;
  color: var(--muted);
}

/* ── CLOSING ── */
.closing {
  padding: 100px 48px;
  text-align: center;
  background: var(--fg);
}
.closing__inner { max-width: 720px; margin: 0 auto; }
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ── FOOTER ── */
.footer { padding: 32px 48px; border-top: 1px solid var(--border); }
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}
.footer__tagline {
  font-size: 12px;
  color: var(--muted);
}
.footer__copy {
  font-size: 12px;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .proof__inner { grid-template-columns: 1fr; gap: 48px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 32px 48px; }
  .why, .products, .proof { padding: 56px 32px; }
  .closing { padding: 72px 32px; }
  .nav { padding: 16px 32px; }
}
@media (max-width: 600px) {
  .why__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 12px; text-align: center; }
  .hero__headline { font-size: 40px; }
}