:root {
  --bg: #F8F6F1;
  --bg-alt: #EFECE5;
  --fg: #1C1C1C;
  --fg-muted: #5A5751;
  --accent: #E8873C;
  --accent-dark: #C96D24;
  --white: #FFFFFF;
  --border: #E0DDD5;
}

*, *::before, *::after { 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;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 96px 64px 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.65;
}
.hero-visual { position: relative; }
.hero-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-mobile { display: none; }
.hero-shape-group {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}
.shape-large, .shape-medium, .shape-small {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.shape-large {
  width: 92%;
  height: 92%;
  top: -6%;
  left: 6%;
  background: var(--accent);
  z-index: 1;
}
.shape-medium {
  width: 55%;
  height: 55%;
  bottom: 8%;
  left: -8%;
  background: var(--fg);
  z-index: 0;
}
.shape-small {
  width: 28%;
  height: 28%;
  top: 5%;
  right: 5%;
  background: var(--accent);
  opacity: 0.25;
  z-index: 3;
}
.hero-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  padding: 0 40px 0 0;
}
.stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.45;
}
.stat-sep {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 40px 0 0;
  flex-shrink: 0;
}

/* Pain */
.pain {
  background: var(--bg-alt);
  padding: 96px 64px;
}
.pain-inner { max-width: 1100px; margin: 0 auto; }
.pain-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
.pain-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 640px;
  margin-bottom: 56px;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}
.pain-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.pain-icon {
  font-size: 20px;
  color: #C0392B;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1;
}
.pain-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pain-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* How */
.how { padding: 96px 64px; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
.how-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 580px;
  margin-bottom: 56px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}
.how-card {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.how-num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.how-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.how-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Manifesto */
.manifesto {
  background: var(--fg);
  color: var(--white);
  padding: 96px 64px;
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 600;
}
.manifesto-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.manifesto-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

/* Pricing */
.pricing { padding: 96px 64px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
.pricing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.pricing-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  background: var(--bg);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: #FDF8F2;
}
.pricing-tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--fg);
}
.pricing-period {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.pricing-note {
  margin-top: 32px;
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}

/* Closing */
.closing {
  background: var(--accent);
  padding: 96px 64px;
  color: var(--white);
}
.closing-inner { max-width: 900px; margin: 0 auto; }
.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.85;
  max-width: 560px;
}
.closing-rule {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  margin-top: 40px;
}

/* Footer */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,0.5);
  padding: 48px 64px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--white);
}
.footer-tagline { font-size: 13px; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  text-align: right;
}
.footer-copy { font-size: 12px; width: 100%; }

/* Responsive */
@media (max-width: 900px) {
  .navbar { padding: 24px 32px; }
  .hero { padding: 64px 32px 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-image-mobile { display: block; margin-top: 32px; }
  .hero-image-mobile img { width: 160px; height: 160px; object-fit: cover; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { padding: 0; }
  .stat-sep { width: 40px; height: 1px; margin: 0; }
  .pain, .how, .pricing, .manifesto, .closing { padding: 64px 32px; }
  .pain-grid, .how-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { text-align: left; }
}
@media (max-width: 480px) {
  .navbar { padding: 20px 20px; }
  .hero { padding: 48px 20px 40px; }
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .pain, .how, .pricing, .manifesto, .closing { padding: 48px 20px; }
  .pain-card, .how-card { padding: 24px 20px; }
  .footer { padding: 32px 20px; }
}