:root {
  --bg: #f5f0e8;
  --bg-alt: #ede6d8;
  --surface: #ffffff;
  --fg: #1a1a2e;
  --fg-muted: #5a5a6e;
  --accent: #c97d2a;
  --accent-warm: #e8a84c;
  --border: #d4c9b5;
  --font-display: 'Playfair Display', 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-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav__tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 100px 48px 90px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}
.hero__bg-texture {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(200, 125, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* PROOF */
.proof {
  background: var(--fg);
  color: var(--bg);
  padding: 72px 48px;
}
.proof__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.proof__heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 44px;
  color: var(--accent-warm);
}
.proof__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}
.proof__stat {
  padding: 0 48px 0 0;
}
.proof__stat:first-child { padding-left: 0; }
.proof__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg);
  letter-spacing: -0.03em;
  line-height: 1;
}
.proof__label {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.55);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.proof__divider {
  width: 1px;
  height: 60px;
  background: rgba(245, 240, 232, 0.15);
  margin-right: 48px;
  flex-shrink: 0;
}
.proof__note {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.55);
  max-width: 560px;
  line-height: 1.7;
}

/* VOICE */
.voice {
  background: var(--bg-alt);
  padding: 90px 48px;
}
.voice__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.voice__left {}
.voice__heading {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.voice__body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.voice__points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.voice__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 500;
}
.voice__point-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.voice__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.voice__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.voice__card--ai {
  background: var(--fg);
  border-color: var(--fg);
}
.voice__card--ai .voice__card-label { color: var(--accent-warm); }
.voice__card--ai .voice__card-items { color: rgba(245, 240, 232, 0.7); }
.voice__card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 16px;
}
.voice__card-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--fg-muted);
  font-size: 0.9rem;
}
.voice__card-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.voice__card-item::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* OUTCOMES */
.outcomes {
  background: var(--bg);
  padding: 90px 48px;
}
.outcomes__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes__heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 52px;
  letter-spacing: -0.02em;
  max-width: 520px;
  line-height: 1.15;
}
.outcomes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.outcomes__item {
  background: var(--bg);
  padding: 40px 36px;
}
.outcomes__icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 16px;
  font-style: normal;
}
.outcomes__title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--fg);
}
.outcomes__desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  background: var(--fg);
  padding: 100px 48px;
}
.closing__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.closing__ring {
  width: 64px;
  height: 64px;
  border: 2px solid var(--accent-warm);
  border-radius: 50%;
  margin: 0 auto 40px;
}
.closing__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--bg);
  line-height: 1.3;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.closing__sub {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  background: var(--bg-alt);
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.footer__desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.footer__right {}
.footer__note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 50px; }
  .hero__headline { font-size: 2.4rem; }
  .proof { padding: 56px 24px; }
  .proof__stats { flex-direction: column; gap: 28px; }
  .proof__stat { padding: 0; }
  .proof__divider { display: none; }
  .proof__number { font-size: 2.4rem; }
  .voice { padding: 60px 24px; }
  .voice__inner { grid-template-columns: 1fr; gap: 48px; }
  .outcomes { padding: 60px 24px; }
  .outcomes__grid { grid-template-columns: 1fr; }
  .closing { padding: 70px 24px; }
  .closing__heading { font-size: 1.5rem; }
  .footer { padding: 32px 24px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}