:root {
  --bg: #FAFAF7;
  --fg: #0F0F0E;
  --fg-muted: #5A5A52;
  --accent: #E8611A;
  --accent-light: #FEF0E6;
  --border: #E5E5DF;
  --card-bg: #FFFFFF;
}

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

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

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--fg);
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: #E8611A;
  top: -200px;
  right: -100px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: #F4A261;
  bottom: -100px;
  left: -50px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 700;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.headline-line { display: block; }
.headline-accent { color: var(--accent); font-style: italic; }

.hero-lede {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 56px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-stat-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}

.hero-stat { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* MANIFESTO */
.manifesto {
  padding: 120px 40px;
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.manifesto-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  color: var(--fg);
}

.manifesto-body p {
  font-size: 17px;
  color: #4A4A42;
  line-height: 1.8;
  margin-bottom: 20px;
}

.manifesto-body p:last-child { margin-bottom: 0; }

/* FEATURES */
.features {
  padding: 120px 40px;
  background: #F4F4EE;
}

.features-inner { max-width: 1100px; margin: 0 auto; }

.features-header { margin-bottom: 64px; }

.features-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.features-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}

.feature-card {
  background: var(--card-bg);
  padding: 48px 40px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.feature-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* OUTCOMES */
.outcomes {
  padding: 100px 40px;
  background: var(--fg);
}

.outcomes-inner { max-width: 900px; margin: 0 auto; }

.outcomes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 48px;
  text-align: center;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-left: 1px solid rgba(255,255,255,0.1);
}

.outcome {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.outcome-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 12px;
}

.outcome-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 140px 40px;
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 40px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.footer-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px; }
  .hero-stat-row { gap: 24px; }
  .stat-num { font-size: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 32px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome { padding: 32px 24px; }
  .outcomes, .manifesto, .features, .closing { padding: 80px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .manifesto-headline { font-size: 28px; }
}
