:root {
  --bg: #FAF7F2;
  --fg: #1A1A1A;
  --accent: #E8624A;
  --accent-dark: #C44E36;
  --green: #2D4A3E;
  --green-light: #3A6050;
  --muted: #6B6560;
  --surface: #F2EDE6;
  --white: #FFFFFF;
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
}
.nav__brand {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav__tagline {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 48px 100px;
  min-height: 70vh;
  position: relative;
}
.hero__inner { max-width: 540px; }
.hero__label {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.hero__headline {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.hero__orb--1 {
  width: 320px;
  height: 320px;
  background: var(--accent);
  top: 0; right: 20px;
}
.hero__orb--2 {
  width: 200px;
  height: 200px;
  background: var(--green);
  bottom: 20px; left: 0;
}
.hero__card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  width: 280px;
}
.hero__card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.hero__card-price {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}
.hero__card-price span { font-size: 18px; font-weight: 400; color: var(--muted); }
.hero__card-detail { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* MANIFESTO */
.manifesto {
  background: var(--green);
  padding: 80px 48px;
}
.manifesto__inner { max-width: 760px; margin: 0 auto; }
.manifesto__text {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 28px;
}
.manifesto__text--accent {
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 26px);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* FEATURES */
.features { padding: 90px 48px; background: var(--bg); }
.features__header { text-align: center; margin-bottom: 60px; }
.features__title {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -1.5px;
  color: var(--fg);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--fg);
  border-radius: 20px;
  overflow: hidden;
}
.feature {
  background: var(--white);
  padding: 44px 40px;
}
.feature__icon {
  width: 48px;
  height: 48px;
  background: var(--surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature__desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* OUTCOMES */
.outcomes { padding: 80px 48px; background: var(--surface); }
.outcomes__inner { max-width: 700px; margin: 0 auto; }
.outcomes__title {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -1.5px;
  margin-bottom: 44px;
  color: var(--fg);
}
.outcomes__grid { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.outcome {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 17px;
  color: var(--fg);
  line-height: 1.5;
}
.outcome__check {
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.outcomes__note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* CLOSING */
.closing { padding: 100px 48px; background: var(--accent); text-align: center; }
.closing__headline {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.05;
}
.closing__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  background: var(--fg);
  text-align: center;
}
.footer__brand {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 6px;
}
.footer__tagline { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.footer__legal { font-size: 12px; color: rgba(255,255,255,0.3); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px 60px; }
  .hero__visual { justify-content: flex-start; }
  .features { padding: 60px 24px; }
  .features__grid { grid-template-columns: 1fr; }
  .manifesto { padding: 60px 24px; }
  .outcomes { padding: 60px 24px; }
  .closing { padding: 72px 24px; }
  .footer { padding: 32px 24px; }
}