/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf6f0;
  --bg-alt: #f2ece3;
  --fg: #1a1a1a;
  --fg-muted: #6b6560;
  --fg-subtle: #a09a92;
  --accent: #ff4d00;
  --accent-light: rgba(255, 77, 0, 0.08);
  --border: #e8e0d5;
  --card: #ffffff;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 48px 48px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.hero-accent {
  color: var(--accent);
}

.hero-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.5;
  font-weight: 300;
}

.hero-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 28px 0;
}

.hero-sub {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 11px;
  color: var(--fg-subtle);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.hero-illustration {
  max-width: 600px;
  margin: 48px auto 0;
}

.hero-svg {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* ===== SHARED SECTION STYLES ===== */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}

/* ===== WHAT IT IS ===== */
.what-it-is {
  padding: 80px 48px;
  background: var(--bg-alt);
}

.what-it-is-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 48px auto 0;
}

.what-item {
  padding-top: 24px;
  border-top: 2px solid var(--accent);
}

.what-number {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 12px;
  line-height: 1;
}

.what-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.what-item p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== WHAT'S INSIDE ===== */
.whats-inside {
  padding: 80px 48px;
}

.whats-inside-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.whats-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 24px 0 32px;
  font-weight: 300;
}

.whats-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-text {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.toc-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.toc-bonus {
  background: var(--accent-light);
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 8px;
  border-bottom: none;
}

.toc-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toc-bonus .toc-num {
  background: var(--accent);
  color: white;
}

.toc-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.toc-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ===== BLUEPRINT ===== */
.blueprint-section {
  padding: 80px 48px;
  background: var(--bg-alt);
}

.blueprint-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1100px;
  margin: 48px auto 0;
}

.bp-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.bp-icon {
  margin: 0 auto 16px;
}

.bp-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.bp-step p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.bp-connector {
  width: 48px;
  height: 2px;
  background: var(--border);
  margin-top: 20px;
  flex-shrink: 0;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 48px;
  background: var(--fg);
}

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

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent);
  padding-left: 32px;
}

.manifesto-sub p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  padding-left: 32px;
  font-weight: 300;
}

.manifesto-sub p + p {
  margin-top: 16px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 80px 48px 100px;
  text-align: center;
  background: var(--bg);
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-accent {
  color: var(--accent);
}

.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 300;
}

.closing-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

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

/* ===== CLOSING CTA ===== */
.closing-cta {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 36px;
  transition: opacity 0.15s;
}
.closing-cta:hover { opacity: 0.85; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-illustration { margin-top: 32px; }
  .what-it-is { padding: 48px 24px; }
  .what-it-is-grid { grid-template-columns: 1fr; gap: 32px; }
  .whats-inside { padding: 48px 24px; }
  .whats-inside-inner { grid-template-columns: 1fr; gap: 40px; }
  .blueprint-section { padding: 48px 24px; }
  .blueprint-steps { flex-direction: column; align-items: stretch; }
  .bp-connector { width: 2px; height: 32px; margin: 0 auto; }
  .bp-step { text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .bp-icon { margin: 0; flex-shrink: 0; }
  .manifesto { padding: 64px 24px; }
  .manifesto-quote { padding-left: 20px; }
  .manifesto-sub p { padding-left: 20px; }
  .closing { padding: 48px 24px 64px; }
  .footer { padding: 32px 24px; }
}