/* ══════════════════════════════════════════════════════
   YoCreate Proposal — Design System
   ══════════════════════════════════════════════════════ */

@font-face { font-family: 'Non Bureau'; src: url('assets/fonts/NonBureau-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Non Bureau'; src: url('assets/fonts/NonBureau-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Non Bureau'; src: url('assets/fonts/NonBureau-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Non Bureau'; src: url('assets/fonts/NonBureau-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

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

:root {
  --white: #FFFFFF;
  --dark: #141416;
  --dark-card: #1C1C1E;
  --lime: #C8FF00;
  --lavender: #EEEAFF;
  --light-green: #F2FFD9;
  --text: #141416;
  --text-muted: #6B6B6B;
  --border: #E5E5E5;
  --heading: 'Non Bureau', -apple-system, sans-serif;
  --sans: 'Montserrat', -apple-system, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --max-width: 1280px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }

h1, h2, h3 { font-family: var(--heading); font-weight: 600; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; letter-spacing: -0.02em; }
h3 { font-size: 1.3rem; line-height: 1.1; font-weight: 600; }

h1 em, h2 em { font-style: normal; font-weight: 400; font-family: var(--sans); }

/* ── Section backgrounds ── */
.section { padding: 100px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--lavender { background: var(--lavender); }
.section--light-green { background: var(--light-green); }

/* ── Badges ── */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge--outline { border: 1px solid currentColor; }
.badge--lime { background: var(--lime); color: var(--dark); }
.badge--dark { background: var(--dark); color: var(--white); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 20px;
  max-width: 500px;
  line-height: 1.7;
}
.hero__meta {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1C1C1E 0%, #232326 30%, #1C1C1E 60%, #2A2A2E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(200,255,0,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(100,100,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero__platforms {
  position: absolute;
  bottom: 24px; right: 24px;
  display: flex;
  gap: 10px;
}
.hero__platforms .platform-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--dark-card);
  display: flex; align-items: center; justify-content: center;
}
.hero__platforms .platform-icon--lime { background: var(--lime); }
.hero__platforms .platform-icon svg { width: 22px; height: 22px; fill: var(--white); }
.hero__platforms .platform-icon--lime svg { fill: var(--dark); }

/* ── METRICS ── */
.metrics {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.metrics__header { margin-bottom: 16px; }
.metrics__desc {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
  font-size: 0.95rem;
}
.metrics__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.metrics__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.metrics__top-row { display: flex; gap: 20px; }
.metrics__top-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.metrics__top-card-label { font-size: 0.85rem; color: var(--text-muted); }
.metrics__top-card-value { font-family: var(--sans); font-size: 1.6rem; font-weight: 800; }

.kpi-list { display: flex; flex-direction: column; }
.kpi-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.kpi-list__label { font-size: 0.95rem; color: var(--text-muted); }
.kpi-list__value { font-weight: 800; font-size: 1.1rem; }
.kpi-list__value--big { font-size: 2rem; }

.metrics__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.metric-card {
  padding: 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.metric-card--dark { background: var(--dark-card); color: var(--white); }
.metric-card--lime { background: var(--lime); color: var(--dark); }
.metric-card__title { font-family: var(--sans); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.metric-card__desc { font-size: 0.82rem; opacity: 0.7; line-height: 1.5; }
.metric-card__value { font-weight: 900; font-size: 2.2rem; margin-top: auto; font-family: var(--sans); }
.metric-card__chart { position: absolute; top: 16px; right: 16px; opacity: 0.2; }

/* ── OBJECTIVE ── */
.objective__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.objective__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.objective__text p + p { margin-top: 20px; }
.objective__highlight {
  background: var(--lavender);
  border-radius: var(--radius);
  padding: 40px;
}
.objective__highlight blockquote {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  font-style: normal;
}

/* ── AUDIENCE ── */
.audience__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}
.audience__icp-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.audience__icp-item { display: flex; gap: 20px; align-items: flex-start; }
.audience__icp-num {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 50%;
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.audience__icp-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.audience__icp-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.audience__right-block {
  background: var(--lavender);
  border-radius: var(--radius);
  padding: 40px;
}
.audience__right-block h3 { font-family: var(--heading); font-size: 1.8rem; margin-bottom: 24px; font-weight: 600; }

.persona-cards { display: flex; flex-direction: column; gap: 16px; }
.persona-card { background: var(--white); border-radius: var(--radius-sm); padding: 20px 24px; }
.persona-card__name { font-weight: 700; margin-bottom: 4px; }
.persona-card__desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ── WHY (argument cards) ── */
.why__header { text-align: left; max-width: 700px; margin-bottom: 60px; }
.why__header p { color: var(--text-muted); margin-top: 16px; font-size: 0.95rem; }
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.why-card:hover { transform: translateY(-2px); }
.why-card__num { font-weight: 800; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.why-card__title { font-family: var(--sans); font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.why-card__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.why-card--accent {
  background: var(--dark); color: var(--white);
  border-color: var(--dark); grid-column: span 2;
}
.why-card--accent .why-card__num { color: rgba(255,255,255,0.4); }
.why-card--accent .why-card__desc { color: rgba(255,255,255,0.7); }

/* ── PLATFORMS ── */
.platforms__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.platforms__sidebar {
  background: var(--dark); color: var(--white);
  border-radius: var(--radius); padding: 40px;
  display: flex; flex-direction: column;
}
.platforms__icons { display: flex; gap: 14px; margin: 32px 0; flex-wrap: wrap; }
.platforms__icon {
  width: 52px; height: 52px;
  border-radius: 14px; background: var(--lime);
  display: flex; align-items: center; justify-content: center;
}
.platforms__icon svg { width: 26px; height: 26px; fill: var(--dark); }
.platforms__sidebar-text { font-size: 0.9rem; opacity: 0.7; line-height: 1.6; margin-top: auto; }

.platforms__table-wrapper { overflow-x: auto; }
.platforms__table-wrapper h3 { font-family: var(--heading); font-size: 1.8rem; font-weight: 600; margin-bottom: 32px; }

table.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
table.data-table thead th {
  text-align: left; font-weight: 600; font-size: 0.8rem;
  color: var(--text-muted); padding: 12px 16px;
  border-bottom: 2px solid var(--dark);
  text-transform: uppercase; letter-spacing: 0.04em;
}
table.data-table tbody td { padding: 18px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
table.data-table tbody tr:last-child td { border-bottom: none; }
table.data-table .cell-bold { font-weight: 700; }
table.data-table .cell-big { font-weight: 800; font-size: 1.3rem; }

.alloc-bar { height: 8px; background: var(--border); border-radius: 4px; margin-top: 8px; overflow: hidden; }
.alloc-bar__fill { height: 100%; background: var(--lime); border-radius: 4px; }

/* ── CREATOR PROFILES ── */
.creators__header { margin-bottom: 60px; }
.creators__header p { color: var(--text-muted); margin-top: 12px; max-width: 600px; font-size: 0.95rem; }
.creator-profiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 80px; }
.creator-profile { border-radius: var(--radius); overflow: hidden; position: relative; }
.creator-profile--dark { background: var(--dark); color: var(--white); padding: 32px 24px; }
.creator-profile--lime { background: var(--lime); color: var(--dark); padding: 32px 24px; }
.creator-profile__category { font-size: 0.8rem; opacity: 0.6; margin-bottom: 12px; font-weight: 500; }
.creator-profile__name { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.creator-profile__desc { font-size: 0.85rem; opacity: 0.75; line-height: 1.55; }
.creator-profile--scale {
  background: var(--dark);
  color: var(--white);
  padding: 32px 24px;
  border: 2px solid var(--lime);
}
.creator-profile--scale .creator-profile__name { color: var(--lime); font-size: 1.3rem; }
.creator-profile__bullet {
  display: block;
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}
.creator-profile__bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

/* ── EXAMPLE CREATORS ── */
.example-creators { display: flex; flex-direction: column; gap: 32px; }
.example-creator {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 48px; border-radius: var(--radius); background: #F8F8F8;
}
.example-creator:nth-child(even) { direction: rtl; }
.example-creator:nth-child(even) > * { direction: ltr; }
.example-creator__img { border-radius: var(--radius-sm); overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.example-creator__img img { width: 100%; }
.example-creator__info h3 { font-family: var(--heading); font-size: 1.6rem; font-weight: 600; margin-bottom: 8px; }
.example-creator__handle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.example-creator__desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.example-creator__stats { display: flex; gap: 24px; }
.example-creator__stat-value { font-weight: 800; font-size: 1.1rem; }
.example-creator__stat-label { font-size: 0.78rem; color: var(--text-muted); }

/* ── TRACKING ── */
.tracking__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.tracking__about {
  background: var(--dark); color: var(--white);
  border-radius: var(--radius); padding: 40px;
  display: flex; flex-direction: column;
}
.tracking__about-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--lime);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.tracking__about-icon svg { width: 24px; height: 24px; fill: var(--dark); }
.tracking__about h3 { font-family: var(--heading); font-size: 1.4rem; font-weight: 600; margin-bottom: 16px; }
.tracking__about p { font-size: 0.9rem; opacity: 0.7; line-height: 1.6; }

.tracking__methods { overflow-x: auto; }
.tracking__methods h3 { font-family: var(--heading); font-size: 1.8rem; font-weight: 600; margin-bottom: 32px; }
.tracking__metrics { margin-top: 40px; }
.tracking__metrics h3 { font-family: var(--heading); font-size: 1.4rem; font-weight: 600; margin-bottom: 20px; }
.tracking__metrics-grid { display: flex; gap: 12px; flex-wrap: wrap; }
.tracking__metric-pill {
  padding: 10px 20px; border-radius: 100px;
  background: var(--dark); color: var(--white);
  font-size: 0.85rem; font-weight: 600;
}

/* ── BUDGET ── */
.budget__header { margin-bottom: 48px; }
.budget__header p { color: rgba(255,255,255,0.6); margin-top: 12px; max-width: 600px; font-size: 0.95rem; }
.budget__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.budget__table-wrap {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius); padding: 32px; overflow-x: auto;
}
.budget__table-wrap h3 { font-family: var(--sans); font-weight: 700; font-size: 1.1rem; margin-bottom: 24px; }

table.dark-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
table.dark-table thead th {
  text-align: left; font-weight: 600; font-size: 0.75rem;
  color: rgba(255,255,255,0.4); padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-transform: uppercase; letter-spacing: 0.04em;
}
table.dark-table tbody td { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); }
table.dark-table tbody tr:last-child td { border-bottom: none; font-weight: 700; color: var(--white); }
table.dark-table .td-bold { font-weight: 700; color: var(--white); }

.budget__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.budget-card {
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column;
  justify-content: space-between; min-height: 180px;
}
.budget-card--glass { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); }
.budget-card--lime { background: var(--lime); color: var(--dark); }
.budget-card__title { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.budget-card__desc { font-size: 0.78rem; opacity: 0.6; line-height: 1.5; }
.budget-card__value { font-weight: 900; font-size: 2rem; margin-top: auto; font-family: var(--sans); }

.budget__kpi-full { margin-top: 40px; background: rgba(255,255,255,0.04); border-radius: var(--radius); padding: 32px; overflow-x: auto; }
.budget__kpi-full h3 { font-family: var(--heading); font-size: 1.4rem; font-weight: 600; margin-bottom: 24px; }
.budget__note { margin-top: 24px; font-size: 0.85rem; opacity: 0.5; line-height: 1.6; }

/* ── TIMELINE / GANTT ── */
.timeline__gantt { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow-x: auto; }
.gantt-table { width: 100%; min-width: 700px; border-collapse: collapse; }
.gantt-table thead th {
  padding: 16px; font-size: 0.8rem; font-weight: 600;
  text-align: center; background: var(--dark); color: var(--white);
}
.gantt-table thead th:first-child { text-align: left; border-radius: var(--radius) 0 0 0; }
.gantt-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
.gantt-table tbody td { padding: 14px 4px; border-bottom: 1px solid var(--border); font-size: 0.9rem; vertical-align: middle; }
.gantt-table tbody td:first-child { font-weight: 600; padding-left: 16px; padding-right: 16px; }
.gantt-table tbody tr:last-child td { border-bottom: none; }
.gantt-bar { height: 32px; border-radius: 8px; display: block; width: 100%; }
.gantt-bar--lime { background: var(--lime); }
.gantt-bar--blue { background: #5B7FFF; opacity: 0.5; }
.gantt-bar--blue-solid { background: #3B5FDF; }

.timeline__summary { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 40px; }
.timeline__week { padding: 20px; border-radius: var(--radius-sm); background: #F8F8F8; }
.timeline__week-num { font-weight: 800; font-size: 0.85rem; margin-bottom: 8px; }
.timeline__week-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ── CTA ── */
.cta { padding: 120px 0; text-align: center; }
.cta h2 { margin-bottom: 16px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.nav--hidden { transform: translateY(-100%); }
.nav__inner { display: flex; justify-content: space-between; align-items: center; }
.nav__logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 0.9rem; }
.nav__logo-icon {
  width: 32px; height: 32px; background: var(--lime);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.nav__logo-icon svg { width: 18px; height: 18px; }
.nav__links { display: flex; gap: 32px; }
.nav__link { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav__link:hover { color: var(--text); }

/* ── FOOTER ── */
.footer { padding: 40px 0; border-top: 1px solid var(--border); text-align: center; font-size: 0.82rem; color: var(--text-muted); }

/* ── Utility grid helpers ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Dark-section card (reusable for capabilities, steps, etc.) */
.dark-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
}
.dark-card__icon {
  width: 44px; height: 44px;
  background: var(--lime); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.dark-card__icon svg { width: 22px; height: 22px; stroke: var(--dark); fill: none; stroke-width: 2; }

/* Case study card (light section) */
.case-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.case-card__metrics { display: flex; gap: 24px; flex-wrap: wrap; }
.case-card__metric-value { font-weight: 700; font-size: 1.4rem; }
.case-card__metric-label { font-size: 0.78rem; color: var(--text-muted); }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { aspect-ratio: 16/9; }
  .metrics__grid { grid-template-columns: 1fr; }
  .metrics__right { grid-template-columns: 1fr 1fr; }
  .objective__grid { grid-template-columns: 1fr; gap: 40px; }
  .audience__top { grid-template-columns: 1fr; gap: 40px; }
  .why__grid { grid-template-columns: 1fr; }
  .why-card--accent { grid-column: span 1; }
  .platforms__grid { grid-template-columns: 1fr; }
  .creator-profiles { grid-template-columns: repeat(2, 1fr); }
  .example-creator { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
  .example-creator:nth-child(even) { direction: ltr; }
  .tracking__grid { grid-template-columns: 1fr; }
  .budget__layout { grid-template-columns: 1fr; }
  .budget__cards { grid-template-columns: 1fr 1fr; }
  .timeline__summary { grid-template-columns: repeat(3, 1fr); }
  .nav__links { display: none; }
  .grid-3 { grid-template-columns: 1fr !important; }
  .grid-2 { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .metrics__top-row { flex-direction: column; }
  .metrics__right { grid-template-columns: 1fr; }
  .creator-profiles { grid-template-columns: 1fr; }
  .budget__cards { grid-template-columns: 1fr; }
  .timeline__summary { grid-template-columns: 1fr; }
  .example-creator__stats { flex-direction: column; gap: 8px; }
}

/* ── PRINT ── */
@media print {
  *, *::before, *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  html { font-size: 11px; }
  body { -webkit-font-smoothing: auto; }

  .nav { display: none !important; }
  .footer { display: none; }

  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

  .hero { min-height: auto; padding: 40px 0; }

  section, .section, .hero, .metrics, .cta {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  section {
    page-break-after: always;
    break-after: page;
  }

  section:last-of-type {
    page-break-after: auto;
    break-after: auto;
  }

  .section { padding: 48px 0; }
  .metrics { padding: 48px 0; }

  .section--dark {
    background: var(--dark) !important;
    color: var(--white) !important;
  }
  .section--lavender { background: var(--lavender) !important; }
  .section--light-green { background: var(--light-green) !important; }

  .metric-card--dark { background: var(--dark-card) !important; color: var(--white) !important; }
  .metric-card--lime { background: var(--lime) !important; color: var(--dark) !important; }
  .budget-card--glass { background: rgba(255,255,255,0.06) !important; }
  .budget-card--lime { background: var(--lime) !important; }
  .creator-profile--dark { background: var(--dark) !important; color: var(--white) !important; }
  .creator-profile--lime { background: var(--lime) !important; color: var(--dark) !important; }
  .creator-profile--scale { background: var(--dark) !important; color: var(--white) !important; border-color: var(--lime) !important; }
  .dark-card { background: rgba(255,255,255,0.06) !important; }
  .tracking__about { background: var(--dark) !important; color: var(--white) !important; }
  .tracking__metric-pill { background: var(--dark) !important; color: var(--white) !important; }
  .platforms__sidebar { background: var(--dark) !important; color: var(--white) !important; }
  .badge--dark { background: var(--dark) !important; color: var(--white) !important; }
  .badge--lime { background: var(--lime) !important; color: var(--dark) !important; }
  .gantt-bar--lime { background: var(--lime) !important; }
  .gantt-bar--blue { background: #5B7FFF !important; opacity: 0.5 !important; }
  .gantt-bar--blue-solid { background: #3B5FDF !important; }
  .gantt-table thead th { background: var(--dark) !important; color: var(--white) !important; }
  .persona-card { background: var(--white) !important; }
  .audience__right-block { background: var(--lavender) !important; }

  .hero__visual { aspect-ratio: 16/9; }

  .example-creator { page-break-inside: avoid; break-inside: avoid; }
  .why-card { page-break-inside: avoid; break-inside: avoid; }
  .dark-card { page-break-inside: avoid; break-inside: avoid; }

  .budget__kpi-full { page-break-inside: avoid; break-inside: avoid; }

  a[href]::after { content: none !important; }
}
