:root {
  --bg: #f7f5f0;
  --bg-alt: #f0ede6;
  --fg: #1a1a3e;
  --fg-muted: #64748b;
  --accent: #e8a54b;
  --accent-dark: #c4862f;
  --navy: #1a1a3e;
  --border: rgba(26, 26, 62, 0.1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* Navigation */
.nav {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* Section labels */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* Hero */
.hero { padding: 72px 48px 80px; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 20px; }
.hero-headline { font-family: var(--font-display); font-size: clamp(36px, 5vw, 58px); font-weight: 700; line-height: 1.1; color: var(--fg); margin-bottom: 20px; letter-spacing: -1px; }
.hero-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.65; max-width: 480px; margin-bottom: 36px; }
.hero-sub em { font-style: italic; color: var(--fg); }

.hero-widget { background: white; border-radius: 12px; padding: 20px 24px; border: 1px solid var(--border); max-width: 340px; }
.widget-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 12px; }
.widget-bar-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.widget-bar-track { flex: 1; height: 6px; background: var(--bg-alt); border-radius: 3px; overflow: hidden; }
.widget-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-dark)); border-radius: 3px; }
.widget-value { font-size: 13px; font-weight: 600; color: var(--fg); white-space: nowrap; }
.widget-caption { font-size: 12px; color: var(--fg-muted); line-height: 1.4; }

.hero-visual { position: relative; }
.hero-img-wrap { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,62,0.15), transparent); border-radius: 16px; }

.focus-badge { position: absolute; bottom: -20px; left: -20px; background: var(--navy); color: white; border-radius: 12px; padding: 16px 20px; display: flex; gap: 12px; align-items: center; box-shadow: 0 8px 32px rgba(26,26,62,0.25); }
.badge-number { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--accent); line-height: 1; }
.badge-label { font-size: 11px; line-height: 1.4; color: rgba(255,255,255,0.75); }

/* Problem */
.problem { padding: 80px 48px; background: var(--bg-alt); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 56px; }
.problem-card { background: white; border-radius: 12px; padding: 32px 28px; border: 1px solid var(--border); }
.problem-icon { margin-bottom: 16px; }
.problem-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: var(--fg); }
.problem-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }

.problem-stats { display: flex; align-items: center; gap: 48px; padding: 32px 0 0; border-top: 1px solid var(--border); }
.stat { text-align: left; }
.stat-number { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--fg); display: block; }
.stat-desc { font-size: 13px; color: var(--fg-muted); margin-top: 4px; display: block; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* Approach */
.approach { padding: 80px 48px; }
.approach-inner { max-width: 1200px; margin: 0 auto; }
.approach-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 48px; }
.pillar { display: flex; flex-direction: column; }
.pillar-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--accent); opacity: 0.5; line-height: 1; margin-bottom: 16px; }
.pillar h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: var(--fg); }
.pillar p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }
.pillar em { font-style: italic; }

/* Why */
.why { padding: 80px 48px; background: var(--navy); color: white; }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why .section-label { color: var(--accent); }
.why .section-headline { color: white; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 48px; margin-top: 48px; }
.why-item { display: flex; gap: 20px; }
.why-marker { width: 4px; min-height: 100%; background: var(--accent); border-radius: 2px; flex-shrink: 0; align-self: stretch; }
.why-text { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.65; }
.why-text strong { color: white; font-weight: 600; }

/* Manifesto */
.manifesto { padding: 80px 48px; }
.manifesto-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; }
.manifesto-quote blockquote { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 28px); font-style: italic; color: var(--fg); line-height: 1.5; border-left: 3px solid var(--accent); padding-left: 28px; }
.calibration-ring { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.ring-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); }

/* Closing */
.closing { padding: 80px 48px; text-align: center; }
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-headline { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: var(--fg); line-height: 1.15; margin-bottom: 16px; }
.closing-sub { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 28px); font-style: italic; color: var(--accent-dark); margin-bottom: 24px; }
.closing-body { font-size: 17px; color: var(--fg-muted); line-height: 1.7; }

/* Footer */
.footer { padding: 64px 48px 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 64px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--fg); display: block; margin-bottom: 12px; }
.footer-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--fg); text-decoration: none; }
.footer-col a:hover { color: var(--accent-dark); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 12px; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .problem-grid, .approach-pillars { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .problem-stats { flex-wrap: wrap; gap: 24px; }
  .nav { padding: 20px 24px; }
  .hero, .problem, .approach, .why, .manifesto, .closing, .footer { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .hero-widget { max-width: 100%; }
  .focus-badge { left: 0; bottom: -16px; }
}