/* ════════════════════════════════════════════════════════════════
   Born2Win Marketing — v2 site (AdventureMedia-inspired)
   Shared CSS — referenced by every page
   ════════════════════════════════════════════════════════════════ */

:root {
  --ink: #0A0A0A;
  --ink-soft: #1A1A1C;
  --cream: #F8F5EF;
  --cream-warm: #F1EDE3;
  --line-cream: rgba(0,0,0,0.08);
  --line-dark: rgba(255,255,255,0.10);
  --white: #FFFFFF;
  --gray-text: #6B6B6B;
  --gray-dim: rgba(0,0,0,0.32);
  --accent: #FFE600;
  --b2w-orange: #F97316;
  --b2w-indigo: #6366F1;
  --cta-purple: #6366F1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px; line-height: 1.45;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ─── NAV (dark when on dark hero, light when on cream) ─── */
nav.top {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  padding: 24px 0;
}
nav.top.scrolled {
  position: fixed;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}
nav.top .container {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-weight: 900; font-size: 20px; letter-spacing: 2px;
  color: white; display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.logo .mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--b2w-indigo), var(--b2w-orange));
  border-radius: 6px; display: inline-flex; align-items: center; justify-content: center;
  color: white; font-size: 13px; font-weight: 900;
}
nav.top .nav-links {
  display: flex; align-items: center; gap: 6px;
}
nav.top .nav-links a.link {
  color: rgba(255,255,255,0.8); text-decoration: none;
  padding: 8px 14px; font-weight: 500; font-size: 14px;
  border-radius: 999px; transition: all 0.2s;
}
nav.top .nav-links a.link:hover { background: rgba(255,255,255,0.08); color: white; }
nav.top .nav-links a.link.active { color: white; background: rgba(255,255,255,0.06); }
nav.top a.cta {
  background: var(--cta-purple); color: white;
  padding: 12px 20px; border-radius: 999px;
  font-weight: 700; font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  margin-left: 8px;
}
nav.top a.cta:hover { background: #4F46E5; }
@media (max-width: 900px) {
  nav.top .nav-links a.link { display: none; }
}

/* Variant: nav on cream pages */
nav.top.on-cream .logo { color: var(--ink); }
nav.top.on-cream .nav-links a.link { color: var(--gray-text); }
nav.top.on-cream .nav-links a.link:hover { background: rgba(0,0,0,0.04); color: var(--ink); }
nav.top.on-cream .nav-links a.link.active { color: var(--ink); background: rgba(0,0,0,0.05); }

/* ─── HERO — dark, big headline, yellow accent ─── */
section.hero {
  background: var(--ink);
  color: white;
  min-height: 72vh;
  position: relative;
  display: flex; flex-direction: column;
  align-items: stretch; justify-content: center;
  overflow: hidden;
  padding: 0;
}
section.hero.short { min-height: 48vh; }
.logo-strip { width: 100%; }
section.hero::before {
  content: ''; position: absolute;
  top: -30%; left: 50%; width: 80%; height: 90%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(99,102,241,0.14) 0%, transparent 60%);
  pointer-events: none;
}
section.hero::after {
  content: ''; position: absolute;
  bottom: -40%; left: 50%; width: 70%; height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 160px 24px 100px;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.72); font-weight: 600;
  margin-bottom: 32px;
}
.hero h1 {
  font-weight: 700;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -1.4px;
  text-transform: none;
  margin-bottom: 24px;
  max-width: 820px;
  color: #fff;
}
.hero h1 .accent {
  background: none;
  color: rgba(255,255,255,0.55);
  padding: 0;
  display: inline;
  transform: none;
  margin: 0;
  font-weight: 700;
}
.hero-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin: 0 auto 40px;
}
.hero-sub em { font-style: italic; color: rgba(255,255,255,0.9); font-weight: 500; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ─── HERO WITH VISUAL — two-column variant (homepage) ─── */
section.hero.with-visual .hero-content {
  max-width: 1240px;
  text-align: left;
  align-items: stretch;
  padding: 140px 24px 80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-text { display: flex; flex-direction: column; align-items: flex-start; }
section.hero.with-visual .hero-text .hero-eyebrow { align-self: flex-start; }
section.hero.with-visual .hero-text h1 { max-width: 560px; }
section.hero.with-visual .hero-text .hero-sub {
  max-width: 520px;
  margin: 0 0 32px;
  text-align: left;
}
section.hero.with-visual .hero-ctas { justify-content: flex-start; }
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  section.hero.with-visual .hero-text { align-items: center; text-align: center; }
  section.hero.with-visual .hero-text .hero-eyebrow { align-self: center; }
  section.hero.with-visual .hero-text .hero-sub { text-align: center; margin: 0 auto 32px; }
  section.hero.with-visual .hero-ctas { justify-content: center; }
}

/* ─── CHART CARD ─── */
.hero-visual { display: flex; justify-content: center; }
.chart-card {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 26px 28px 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
}
.chart-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
}
.chart-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 600;
}
.chart-badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,230,0,0.10); border: 1px solid rgba(255,230,0,0.25);
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
}
.chart-stat {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 18px;
}
.chart-num {
  font-size: 56px; font-weight: 800; line-height: 1; color: #fff;
  letter-spacing: -2px;
  font-feature-settings: "tnum" 1;
}
.chart-meta { display: flex; flex-direction: column; gap: 4px; }
.chart-meta-label { font-size: 13px; color: rgba(255,255,255,0.6); }
.chart-meta-delta { font-size: 12px; color: var(--accent); font-weight: 700; letter-spacing: 0.3px; }
.chart-svg { width: 100%; height: 90px; display: block; }
.chart-axis {
  display: flex; justify-content: space-between;
  margin-top: 6px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 10px; color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
}
.chart-foot { display: flex; flex-direction: column; gap: 10px; padding-top: 16px; }
.chart-foot-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px;
}
.chart-foot-row span { color: rgba(255,255,255,0.55); }
.chart-foot-row strong { color: #fff; font-weight: 600; font-feature-settings: "tnum" 1; }
.chart-tick { color: var(--accent); font-size: 11px; font-weight: 700; margin-left: 4px; letter-spacing: 0.5px; }
.btn-light, .btn-outline, .btn-dark {
  padding: 18px 32px;
  font-weight: 700; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.1s, background 0.2s;
}
.btn-light { background: var(--cream); color: var(--ink); }
.btn-outline { border: 1px solid rgba(255,255,255,0.35); color: white; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.05); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--ink-soft); }
.btn-light:hover, .btn-dark:hover { transform: translateY(-1px); }

/* Logo strip — bottom of dark hero */
.logo-strip {
  position: relative; border-top: 1px solid var(--line-dark);
  padding: 28px 0;
}
.logo-strip .container {
  display: flex; align-items: center; gap: 40px;
  justify-content: space-between; flex-wrap: wrap;
}
.logo-strip .label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 600;
}
.logo-strip .logos {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500; font-size: 18px;
  color: rgba(255,255,255,0.55);
}

/* ─── Stats section ─── */
section.stats {
  background: var(--cream); color: var(--ink);
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--line-cream);
}
.stats-eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--b2w-orange); font-weight: 700;
  margin-bottom: 12px;
}
.stats h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400; font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.05; letter-spacing: -1.5px;
  margin-bottom: 56px;
  max-width: 800px;
}
.stats h2 em { font-style: italic; color: var(--gray-dim); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; } }
.stat .num {
  font-weight: 800;
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -2px; line-height: 1;
  margin-bottom: 14px;
}
.stat .num .sm { font-size: 0.6em; color: var(--gray-text); }
.stat .label {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gray-text); font-weight: 600;
}

/* ─── Editorial — large serif paragraph ─── */
section.editorial {
  background: var(--cream); padding: 100px 0 140px;
}
.editorial-copy {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.3;
  letter-spacing: -0.5px;
  max-width: 1100px;
}
.editorial-copy .dim { color: var(--gray-dim); }

/* ─── Feature centered (dark) ─── */
section.feature-centered {
  background: var(--ink); color: white;
  padding: 160px 0; text-align: center;
}
.feature-centered h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.feature-centered h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--b2w-indigo), var(--b2w-orange));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-centered p {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 720px; margin: 0 auto 32px;
}

/* ─── Two-column feature ─── */
section.two-col {
  background: var(--cream); padding: 120px 0;
  border-bottom: 1px solid var(--line-cream);
}
section.two-col.warm { background: var(--cream-warm); }
section.two-col.dark { background: var(--ink); color: white; }
section.two-col.dark { border-bottom: 1px solid var(--line-dark); }
.two-col-grid {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: 80px; align-items: center;
}
.two-col-grid.reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 460px); }
@media (max-width: 900px) {
  .two-col-grid, .two-col-grid.reverse { grid-template-columns: 1fr; gap: 40px; }
}
.two-col-text h2 {
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1; letter-spacing: -2px; margin-bottom: 20px;
}
.two-col-text p {
  font-size: 18px; line-height: 1.55;
  color: var(--gray-text); margin-bottom: 32px;
}
section.two-col.dark .two-col-text p { color: rgba(255,255,255,0.7); }
.two-col-img {
  background: var(--ink-soft);
  border-radius: 12px; padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; text-align: center;
}
.two-col-img.placeholder { font-size: 13px; letter-spacing: 1px; }

/* ─── Cards grid (3-up) ─── */
section.cards { background: var(--cream); padding: 120px 0; }
section.cards.dark { background: var(--ink); color: white; }
.cards-header { text-align: center; margin-bottom: 70px; max-width: 800px; margin-left: auto; margin-right: auto; }
.cards-header h2 {
  font-weight: 800; font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05; letter-spacing: -2px; margin-bottom: 16px;
}
.cards-header p {
  font-size: 18px; color: var(--gray-text); line-height: 1.55;
}
section.cards.dark .cards-header p { color: rgba(255,255,255,0.65); }
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 900px) { .cards-grid { grid-template-columns: 1fr; } }
.card {
  background: white; padding: 36px 32px;
  border-radius: 14px; border: 1px solid var(--line-cream);
}
section.cards.dark .card {
  background: var(--ink-soft); border-color: var(--line-dark);
}
.card .icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(99,102,241,0.12); color: var(--b2w-indigo);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.card h3 {
  font-weight: 800; font-size: 22px; margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.card p {
  font-size: 15px; color: var(--gray-text); line-height: 1.55;
}
section.cards.dark .card p { color: rgba(255,255,255,0.65); }

/* ─── Final CTA section ─── */
section.cta-band {
  background: var(--ink); color: white;
  padding: 140px 0; text-align: center;
}
.cta-band h2 {
  font-weight: 900;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95; letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cta-band h2 .accent {
  background: var(--accent); color: var(--ink);
  padding: 0 12px; display: inline-block; transform: skew(-4deg);
}
.cta-band p {
  font-size: 20px; color: rgba(255,255,255,0.7);
  max-width: 600px; margin: 0 auto 40px;
}

/* ─── Footer ─── */
footer.site {
  background: var(--ink); color: rgba(255,255,255,0.55);
  padding: 60px 0 30px;
  border-top: 1px solid var(--line-dark);
}
footer.site .footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 800px) { footer.site .footer-grid { grid-template-columns: 1fr 1fr; } }
footer.site h4 {
  color: white; font-weight: 700; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 18px;
}
footer.site a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  display: block; font-size: 14px; padding: 5px 0;
  transition: color 0.15s;
}
footer.site a:hover { color: white; }
footer.site .brand-blurb {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-size: 16px;
  line-height: 1.6; max-width: 320px;
}
footer.site .bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12px; letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 12px;
}

/* ─── Page-specific helpers ─── */
.eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 700; color: var(--b2w-orange);
  margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 70px; }
.section-header.left { text-align: left; }
.section-header h2 {
  font-weight: 800; font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05; letter-spacing: -2px; margin-bottom: 16px;
}
.section-header p { font-size: 18px; color: var(--gray-text); max-width: 700px; margin: 0 auto; line-height: 1.6; }
.section-header.left p { margin: 0; }

/* FAQ */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  background: white; border: 1px solid var(--line-cream);
  border-radius: 14px; margin-bottom: 14px; overflow: hidden;
}
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; background: white; border: none;
  text-align: left; cursor: pointer; font-family: inherit;
  font-weight: 700; font-size: 18px; color: var(--ink);
  transition: background 0.15s;
}
.faq-trigger:hover { background: var(--cream-warm); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(99,102,241,0.12); color: var(--b2w-indigo);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; transition: transform 0.3s;
  flex-shrink: 0; margin-left: 16px;
}
.faq-answer {
  padding: 0 28px 24px;
  font-size: 16px; line-height: 1.6; color: var(--gray-text);
}
.faq-answer.hidden { display: none; }
.faq-answer strong { color: var(--ink); }

/* Pricing */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: white; padding: 40px 32px; border-radius: 14px;
  border: 1px solid var(--line-cream);
}
.pricing-card.featured {
  background: var(--ink); color: white;
  border-color: var(--ink);
}
.pricing-card .tier-name {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; color: var(--b2w-indigo); margin-bottom: 14px;
}
.pricing-card.featured .tier-name { color: var(--accent); }
.pricing-card h3 {
  font-weight: 900; font-size: 36px; letter-spacing: -1px;
  margin-bottom: 8px;
}
.pricing-card .price {
  font-size: 14px; color: var(--gray-text); margin-bottom: 28px;
}
.pricing-card.featured .price { color: rgba(255,255,255,0.6); }
.pricing-card ul {
  list-style: none; margin-bottom: 32px;
}
.pricing-card ul li {
  font-size: 14px; color: var(--gray-text); padding: 8px 0;
  border-bottom: 1px solid var(--line-cream);
}
.pricing-card.featured ul li {
  color: rgba(255,255,255,0.7); border-color: var(--line-dark);
}
.pricing-card ul li::before { content: '✓ '; color: var(--b2w-indigo); font-weight: 900; }
.pricing-card.featured ul li::before { color: var(--accent); }
.pricing-card a.btn-card {
  display: block; text-align: center;
  padding: 14px 20px; border-radius: 8px;
  font-weight: 700; font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  background: var(--ink); color: white;
}
.pricing-card.featured a.btn-card {
  background: var(--accent); color: var(--ink);
}

/* Process steps */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
.step {
  background: white; padding: 32px 28px; border-radius: 14px;
  border: 1px solid var(--line-cream);
}
.step .step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; margin-bottom: 18px;
}
.step h3 {
  font-weight: 800; font-size: 18px; margin-bottom: 8px; letter-spacing: -0.3px;
}
.step p { font-size: 14px; color: var(--gray-text); line-height: 1.55; }

/* ═══════════════════════════════════════════════════
   DARK MODE — global consistent dark theme overrides.
   Flips cream/light sections to dark.
   ═══════════════════════════════════════════════════ */

body { background: var(--ink); color: white; }

/* Stats */
section.stats { background: var(--ink); color: white; border-bottom: 1px solid var(--line-dark); }
.stats h2 em { color: rgba(255,255,255,0.5); }
.stat .num .sm { color: rgba(255,255,255,0.4); }
.stat .label { color: rgba(255,255,255,0.55); }

/* Editorial */
section.editorial { background: var(--ink); color: white; }
.editorial-copy .dim { color: rgba(255,255,255,0.45); }
.editorial-copy strong { color: var(--accent); }

/* Cards */
section.cards { background: var(--ink); color: white; }
.cards-header p { color: rgba(255,255,255,0.65); }
.card { background: var(--ink-soft); border: 1px solid var(--line-dark); }
.card h3 { color: white; }
.card p { color: rgba(255,255,255,0.7); }
.card strong { color: white; }
.card .icon { background: rgba(255,230,0,0.10); color: var(--accent); }

/* Two-column */
section.two-col { background: var(--ink); color: white; border-bottom: 1px solid var(--line-dark); }
section.two-col.warm { background: #14141a; }
.two-col-text h2 { color: white; }
.two-col-text p { color: rgba(255,255,255,0.7); }
.two-col-img { background: var(--ink-soft); border: 1px solid var(--line-dark); }

/* Process steps */
.step { background: var(--ink-soft); border-color: var(--line-dark); }
.step h3 { color: white; }
.step p { color: rgba(255,255,255,0.7); }
.step .step-num { background: var(--accent); color: var(--ink); }

/* FAQ */
.faq-item { background: var(--ink-soft); border-color: var(--line-dark); }
.faq-trigger { background: transparent; color: white; }
.faq-trigger:hover { background: rgba(255,255,255,0.04); }
.faq-icon { background: rgba(255,230,0,0.10); color: var(--accent); }
.faq-answer { color: rgba(255,255,255,0.7); }
.faq-answer strong { color: white; }

/* Section headers */
.section-header h2 { color: white; }
.section-header p { color: rgba(255,255,255,0.65); }

/* Buttons — btn-dark was meant for cream backgrounds; remap to visible-on-dark */
.btn-dark {
  background: var(--accent); color: var(--ink);
  border: none;
}
.btn-dark:hover { background: #FFEE3D; transform: translateY(-1px); }

/* Headings global default */
h1, h2, h3, h4 { color: white; }

/* Feature centered — already dark, ensure gradient em still pops */
.feature-centered p { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════
   UI MOCKUPS — Meta ads & Command Center
   Replace the old placeholder boxes in two-col sections.
   ═══════════════════════════════════════════════════ */
.two-col-img.mock {
  background: transparent;
  border: none;
  padding: 0;
  aspect-ratio: auto;
  box-shadow: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-style: normal;
  color: white;
  display: block;
  text-align: left;
}
.mock-browser {
  background: var(--ink-soft);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
}
.mock-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 14px;
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--line-dark);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.14); }
.mock-url {
  margin-left: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.2px;
  font-family: 'SF Mono', Menlo, monospace;
}

/* — Meta ads mock — */
.mock-meta-body { display: grid; grid-template-columns: 150px 1fr; }
.mock-side {
  background: rgba(0,0,0,0.22);
  border-right: 1px solid var(--line-dark);
  padding: 16px 10px;
}
.mock-side-label {
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  padding: 0 10px;
  margin-bottom: 10px;
}
.mock-side-row {
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 11px; color: rgba(255,255,255,0.55);
  margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-side-row.active {
  background: rgba(99,102,241,0.20);
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.mock-main { padding: 18px 20px 22px; }
.mock-h {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 12px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}
.mock-h strong { font-size: 13px; color: white; font-weight: 600; }
.mock-pill {
  font-size: 9px; letter-spacing: 1.5px;
  padding: 3px 8px; border-radius: 999px;
  font-weight: 700;
}
.mock-pill.ok { background: rgba(74,222,128,0.14); color: #4ADE80; }
.mock-form { display: flex; flex-direction: column; gap: 9px; }
.mock-f label {
  display: block;
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 4px; font-weight: 600;
}
.mock-input {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}
.mock-cta {
  background: var(--accent); color: var(--ink);
  padding: 11px 14px;
  border-radius: 6px;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.3px;
  margin-top: 8px;
  text-align: center;
}

/* — Dashboard mock — */
.mock-dash-body { padding: 18px 20px 20px; }
.mock-stat-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px;
  margin-bottom: 14px;
}
.mock-kpi {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 11px 13px;
}
.mock-kpi .num {
  font-size: 24px; font-weight: 800; color: white;
  letter-spacing: -1px; line-height: 1; margin-bottom: 4px;
}
.mock-kpi .num.accent { color: var(--accent); }
.mock-kpi .lab {
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); font-weight: 600;
}
.mock-chart-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 12px;
}
.mock-chart-h {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.mock-chart-h span:first-child {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 600;
}
.mock-chart-d {
  font-size: 11px; color: var(--accent); font-weight: 700; letter-spacing: 0.3px;
}
.mock-chart-card svg { width: 100%; height: 50px; display: block; }
.mock-feed {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.mock-feed-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  font-size: 11.5px; color: rgba(255,255,255,0.65);
  border-bottom: 1px solid var(--line-dark);
}
.mock-feed-row:last-child { border-bottom: none; }
.mock-feed-row .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.mock-feed-row .dot.live {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255,230,0,0.5);
}
.mock-feed-row .dot.ok { background: #4ADE80; }
.mock-foot {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding-top: 4px;
  font-weight: 600;
}
.mock-foot strong { color: var(--accent); font-weight: 700; }

/* ═══ MOCK: vertical phone ad (Reels/Stories) ═══ */
.mock-ad { display: flex; justify-content: center; }
.mock-phone {
  width: 100%; max-width: 280px;
  background: #050505;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}
.mock-phone-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 18px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.mock-phone-status { letter-spacing: 1px; font-size: 9px; }
.mock-ad-progress {
  display: flex; gap: 3px; padding: 0 12px 8px;
}
.mock-ad-progress span {
  flex: 1; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,0.2);
}
.mock-ad-progress .on { background: #fff; }
.mock-ad-progress .dim { background: rgba(255,255,255,0.15); }
.mock-ad-handle {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px 10px;
  font-size: 11px; color: rgba(255,255,255,0.8);
}
.mock-ad-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--b2w-orange), var(--b2w-indigo));
  flex-shrink: 0;
}
.mock-ad-name em { color: rgba(255,255,255,0.5); font-style: normal; }
.mock-ad-frame {
  position: relative;
  height: 360px;
  background: linear-gradient(180deg, #1a1f2e 0%, #0d1117 100%);
  margin: 0 12px;
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px 22px;
}
.mock-ad-grad {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,230,0,0.12) 0%, transparent 55%),
              radial-gradient(circle at 30% 80%, rgba(99,102,241,0.18) 0%, transparent 55%);
}
.mock-ad-hook {
  position: relative;
  font-size: 22px; font-weight: 800;
  color: #fff; letter-spacing: -0.5px;
  line-height: 1.15;
}
.mock-ad-hook .hl {
  background: var(--accent); color: var(--ink);
  padding: 0 6px; display: inline-block; transform: skew(-3deg);
}
.mock-ad-trust {
  position: relative;
  font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 600;
  margin-top: 12px;
}
.mock-ad-cta {
  position: relative;
  background: var(--accent); color: var(--ink);
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.3px;
  display: block;
}
.mock-ad-caption {
  padding: 14px 18px 18px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ═══ MOCK: attribution funnel ═══ */
.mock-attr-body { padding: 18px 22px 22px; }
.mock-attr-h {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 18px;
}
.mock-attr-h > span:first-child {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 600;
}
.mock-attr-rev {
  font-size: 13px; color: var(--accent); font-weight: 700;
}
.mock-funnel { display: flex; flex-direction: column; gap: 6px; }
.mock-fn-row {
  position: relative;
  display: grid; grid-template-columns: 110px 1fr;
  align-items: center;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 12px;
  overflow: hidden;
}
.mock-fn-row .bar {
  position: absolute; inset: 0;
  width: var(--w);
  background: linear-gradient(90deg, rgba(99,102,241,0.18) 0%, rgba(99,102,241,0.04) 100%);
  z-index: 0;
}
.mock-fn-row.accent .bar {
  background: linear-gradient(90deg, rgba(255,230,0,0.20) 0%, rgba(255,230,0,0.04) 100%);
}
.mock-fn-row .lab, .mock-fn-row strong { position: relative; z-index: 1; }
.mock-fn-row .lab { color: rgba(255,255,255,0.65); font-size: 11px; letter-spacing: 0.3px; }
.mock-fn-row strong { color: white; font-weight: 700; text-align: right; }
.mock-fn-row strong em {
  color: rgba(255,255,255,0.5); font-style: normal;
  font-size: 10px; margin-left: 8px;
  letter-spacing: 0.5px;
}
.mock-fn-row.accent strong em { color: var(--accent); }
.mock-fn-row.accent { border-color: rgba(255,230,0,0.25); }
.mock-fn-row.accent strong { color: var(--accent); }

/* ═══ MOCK: system flow / stack diagram ═══ */
.mock-stack { display: flex; justify-content: center; }
.mock-stack-card {
  width: 100%;
  background: var(--ink-soft);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.mock-stack-h {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 600;
}
.mock-stack-live {
  display: inline-flex; align-items: center; gap: 6px;
  color: #4ADE80; font-size: 10px;
}
.mock-stack-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.mock-node {
  display: flex; align-items: center; gap: 14px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 12px 16px;
}
.mock-node-tag {
  font-size: 10px; letter-spacing: 1.5px;
  font-weight: 800; color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px; border-radius: 4px;
  min-width: 48px; text-align: center;
}
.mock-node-name {
  font-size: 13px; color: white; font-weight: 600;
}
.mock-node.yellow .mock-node-tag {
  background: rgba(255,230,0,0.14); color: var(--accent); border-color: rgba(255,230,0,0.3);
}
.mock-node.green .mock-node-tag {
  background: rgba(74,222,128,0.14); color: #4ADE80; border-color: rgba(74,222,128,0.3);
}
.mock-conn {
  width: 2px; height: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  margin-left: 38px;
}
.mock-stack-foot {
  margin-top: 20px; padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  font-size: 11px; color: rgba(255,255,255,0.45);
  text-align: center;
}
.mock-stack-foot strong { color: var(--accent); font-weight: 700; }

/* ═══ MOCK: horizontal timeline ═══ */
.mock-timeline { display: flex; justify-content: center; }
.mock-tl-card {
  width: 100%;
  background: var(--ink-soft);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 28px 28px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.mock-tl-h {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 600;
  margin-bottom: 36px;
}
.mock-tl-track {
  position: relative;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
}
.mock-tl-line {
  position: absolute;
  top: 6px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, var(--accent) 50%, rgba(255,255,255,0.1) 100%);
}
.mock-tl-item {
  position: relative;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.mock-tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 3px solid var(--ink-soft);
  z-index: 1;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
  margin-bottom: 12px;
}
.mock-tl-dot.accent {
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 12px rgba(255,230,0,0.5);
}
.mock-tl-day {
  font-size: 11px; font-weight: 800;
  color: white; letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.mock-tl-label {
  font-size: 10px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px; line-height: 1.3;
}

/* ═══ MOCK: weekly performance report ═══ */
.mock-report-body { padding: 20px 22px 22px; }
.mock-report-h {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}
.mock-report-title {
  font-size: 14px; color: white; font-weight: 700;
  letter-spacing: -0.3px;
}
.mock-report-date {
  font-size: 11px; color: rgba(255,255,255,0.45);
  margin-top: 3px;
}
.mock-report-pill {
  font-size: 9px; letter-spacing: 1.5px; font-weight: 800;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,230,0,0.12); color: var(--accent);
  border: 1px solid rgba(255,230,0,0.25);
}
.mock-report-grid { display: flex; flex-direction: column; gap: 8px; }
.mock-r-row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 14px; align-items: baseline;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: 10px 14px;
}
.mock-r-row .lab { color: rgba(255,255,255,0.6); font-size: 12px; }
.mock-r-row strong { color: white; font-weight: 700; font-size: 14px; }
.mock-r-row em {
  font-style: normal; font-size: 10px; font-weight: 700;
  letter-spacing: 0.5px; color: rgba(255,255,255,0.4);
}
.mock-r-row em.ok { color: #4ADE80; }
.mock-r-row.accent {
  background: rgba(255,230,0,0.08);
  border-color: rgba(255,230,0,0.25);
}
.mock-r-row.accent strong { color: var(--accent); font-size: 16px; }
.mock-r-row.accent em { color: rgba(255,230,0,0.7); }
