/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F5F0E8;
  --fg: #0B3D4A;
  --accent: #E8644A;
  --accent-soft: rgba(232, 100, 74, 0.12);
  --mid: #1A5F72;
  --muted: rgba(11, 61, 74, 0.45);
  --border: rgba(11, 61, 74, 0.1);
  --card-bg: rgba(255,255,255,0.7);
  --section-pad: clamp(60px, 10vw, 120px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #fff; }

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

/* ─── Nav ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 64px);
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  padding: var(--section-pad) clamp(24px, 5vw, 64px);
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-content { max-width: 600px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232, 100, 74, 0.3);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  display: block;
  max-width: 90px;
}
.hero-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-art { width: 100%; max-width: 420px; height: auto; }

/* ─── Problem ───────────────────────────────────────────── */
.problem {
  background: var(--fg);
  padding: var(--section-pad) clamp(24px, 5vw, 64px);
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-headline {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--bg);
  margin-bottom: 24px;
  max-width: 700px;
  letter-spacing: -0.02em;
}
.problem-body {
  font-size: 18px;
  color: rgba(245, 240, 232, 0.6);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.problem-pains { display: flex; flex-direction: column; gap: 16px; max-width: 580px; }
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pain-icon { flex-shrink: 0; margin-top: 2px; }
.pain-item p {
  font-size: 16px;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.5;
}

/* ─── Solution ──────────────────────────────────────────── */
.solution { padding: var(--section-pad) clamp(24px, 5vw, 64px); }
.solution-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.solution-headline {
  font-size: clamp(26px, 3.5vw, 44px);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  max-width: 520px;
}
.solution-body {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}
.solution-pillars { display: flex; flex-direction: column; gap: 28px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--fg);
}
.pillar-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}
.revenue-stack {
  background: var(--fg);
  border-radius: 20px;
  padding: 36px;
  margin-top: 60px;
}
.stack-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}
.stack-bar {
  display: flex;
  height: 8px;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 24px;
}
.stack-segment { display: flex; align-items: center; justify-content: center; }
.stack-segment span { display: none; }
.stack-items { display: flex; flex-direction: column; gap: 12px; }
.stack-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.7);
}
.stack-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Audience ───────────────────────────────────────────── */
.audience {
  background: rgba(11, 61, 74, 0.04);
  padding: var(--section-pad) clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.audience-inner { max-width: 1200px; margin: 0 auto; }
.audience-headline {
  font-size: clamp(26px, 3.5vw, 44px);
  margin-bottom: 56px;
  max-width: 560px;
  letter-spacing: -0.02em;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.audience-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(8px);
}
.audience-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.audience-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.audience-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── Manifesto ──────────────────────────────────────────── */
.manifesto { padding: var(--section-pad) clamp(24px, 5vw, 64px); }
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-quote { position: relative; }
.quote-mark {
  font-family: 'Outfit', serif;
  font-size: 120px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}
.manifesto-quote blockquote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.cite-rule {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 10px;
}
.manifesto-quote cite {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}
.manifesto-body p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}
.manifesto-body p em { color: var(--fg); font-style: normal; font-weight: 500; }

/* ─── Closing ───────────────────────────────────────────── */
.closing {
  background: var(--fg);
  padding: var(--section-pad) clamp(24px, 5vw, 64px);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(26px, 4vw, 52px);
  color: var(--bg);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.closing-sub {
  font-size: 18px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.65;
  margin-bottom: 48px;
  font-weight: 300;
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.closing-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232, 100, 74, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  padding: 56px clamp(24px, 5vw, 64px) 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: block;
  color: var(--fg);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 14px;
  color: var(--muted);
  max-width: 300px;
  font-weight: 300;
  line-height: 1.6;
}
.footer-links { display: flex; gap: 48px; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-col span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  color: rgba(11,61,74,0.3);
  font-weight: 300;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-graphic { order: -1; }
  .hero-art { max-width: 280px; margin: 0 auto; }
  .solution-inner { grid-template-columns: 1fr; gap: 40px; }
  .revenue-stack { margin-top: 0; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .audience-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 32px; }
  .hero-meta { gap: 20px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero-meta { flex-wrap: wrap; }
  .hero-stat-div { display: none; }
  .nav-tagline { display: none; }
  .footer-links { flex-direction: column; gap: 20px; }
}