/* === Bridge Digital — home page styles =====================================
   Loaded only by index.html. Section markup, buttons, animations,
   skip-link, and the V2 light-theme overrides for home-only selectors.
   Cascade order matters: V2 overrides at the bottom must follow the
   base section rules.
   ----------------------------------------------------------------------- */

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 6vw 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; }

.hero::after {
  content: 'BRIDGE';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Onest', sans-serif;
  font-size: 200px;
  color: rgba(240,201,58,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 10px;
}

.hero-eyebrow {
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--yellow);
}

.hero h1 {
  font-family: 'Onest', sans-serif;
  font-size: clamp(60px, 9.5vw, 110px);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 36px;
  width: 100%;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
  display: block;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 22px);
  color: #bbb;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}
.hero-sub strong { color: var(--white); font-weight: 500; }

.hero-advisory-line {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-advisory-line a {
  color: var(--yellow);
  text-decoration: none;
  border-bottom: 1px solid rgba(240,201,58,0.3);
  padding-bottom: 1px;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  padding: 17px 38px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  padding: 16px 32px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-ghost {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }

.hero-stats {
  display: flex;
  gap: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Onest', sans-serif;
  font-size: 50px;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  max-width: 160px;
  line-height: 1.4;
}

/* SECTION LABEL */
.section-label {
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

/* PROBLEM */
.problem { background: var(--gray); padding: 100px 6vw; }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem h2 {
  font-family: 'Onest', sans-serif;
  font-size: clamp(44px, 6vw, 75px);
  line-height: 1;
  margin-bottom: 16px;
}
.problem-intro {
  color: #bbb;
  font-size: 18px;
  max-width: 620px;
  font-weight: 300;
  margin-bottom: 60px;
  line-height: 1.6;
}
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.problem-item {
  background: var(--black);
  padding: 36px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}
.problem-item:hover { border-left-color: var(--red); }
.problem-item .icon { font-size: 26px; margin-bottom: 14px; display: block; }
.problem-item h3 { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.problem-item p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* BIG QUOTE */
.big-quote { padding: 110px 6vw; background: var(--yellow); position: relative; overflow: hidden; }
.big-quote::before {
  content: '"';
  position: absolute;
  top: -60px; left: 40px;
  font-family: 'Onest', sans-serif;
  font-size: 400px;
  color: rgba(0,0,0,0.07);
  line-height: 1;
  pointer-events: none;
}
.big-quote-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.big-quote p {
  font-family: 'Onest', sans-serif;
  font-size: clamp(34px, 5vw, 68px);
  color: var(--black);
  line-height: 1.05;
}
.big-quote .attr {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(0,0,0,0.45);
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 2px;
}

/* ADVISORY SECTION — VISUALLY DISTINCT */
.advisory { background: var(--blue); padding: 80px 6vw; position: relative; overflow: hidden; }
.advisory::before {
  content: 'STRATEGY';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Onest', sans-serif;
  font-size: 160px;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  letter-spacing: 8px;
  white-space: nowrap;
}
.advisory-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.advisory-header { margin-bottom: 56px; }
.advisory .section-label { color: #7eb3e8; }
.advisory h2 {
  font-family: 'Onest', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.advisory-intro {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  max-width: 680px;
  font-weight: 300;
  line-height: 1.6;
}
.advisory-intro strong { color: var(--white); font-weight: 500; }
.advisory-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.advisory-card {
  background: rgba(255,255,255,0.06);
  padding: 48px 44px;
  border-top: 3px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s;
  backdrop-filter: blur(4px);
}
.advisory-card:hover { border-top-color: var(--yellow); }
.advisory-card-badge {
  display: inline-block;
  background: rgba(240,201,58,0.15);
  color: var(--yellow);
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 3px;
  padding: 5px 12px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.advisory-card h3 {
  font-family: 'Onest', sans-serif;
  font-size: 34px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.05;
  letter-spacing: 1px;
}
.advisory-card .price {
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}
.advisory-card p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.advisory-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.advisory-card-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  display: flex;
  gap: 10px;
  line-height: 1.5;
}
.advisory-card-list li::before {
  content: '→';
  color: var(--yellow);
  flex-shrink: 0;
}
.btn-advisory {
  display: inline-block;
  border: 1px solid rgba(240,201,58,0.4);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  padding: 13px 28px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.btn-advisory:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* FOUNDERS STRIP */
.founders {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 40px 6vw;
}
.founders-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.founders-label {
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: #7eb3e8;
  text-transform: uppercase;
  white-space: nowrap;
}
.founders-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
.founder-item { display: flex; flex-direction: column; gap: 3px; }
.founder-name { font-weight: 700; font-size: 15px; color: var(--white); }
.founder-bio { font-size: 13px; color: var(--muted); }
.founders-cred {
  margin-left: auto;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  max-width: 340px;
  line-height: 1.5;
  text-align: right;
}

/* CRAWL WALK RUN */
.cwr { padding: 100px 6vw; background: var(--gray); }
.cwr-inner { max-width: 1100px; margin: 0 auto; }
.cwr h2 {
  font-family: 'Onest', sans-serif;
  font-size: clamp(44px, 6vw, 75px);
  line-height: 1;
  margin-bottom: 16px;
}
.cwr-intro {
  color: #bbb;
  font-size: 18px;
  max-width: 660px;
  font-weight: 300;
  margin-bottom: 64px;
  line-height: 1.6;
}
.cwr-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}
.cwr-phase { background: var(--black); padding: 44px 36px; position: relative; overflow: hidden; }
.cwr-phase::after {
  content: attr(data-phase);
  position: absolute;
  bottom: -10px;
  right: -5px;
  font-family: 'Onest', sans-serif;
  font-size: 100px;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  line-height: 1;
}
.phase-num {
  font-family: 'Onest', sans-serif;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 12px;
}
.cwr-phase:nth-child(1) .phase-num { color: #d94f3d; }
.cwr-phase:nth-child(2) .phase-num { color: var(--yellow); }
.cwr-phase:nth-child(3) .phase-num { color: #4caf50; }
.phase-label {
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cwr-phase h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.cwr-phase .focus-line {
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.cwr-phase p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.cwr-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 48px;
  max-width: 600px;
}
.cwr-arrow-step {
  font-family: 'Onest', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--muted);
}
.cwr-arrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--yellow), #4caf50);
}
.cwr-bottom { background: var(--black); padding: 40px; border-left: 3px solid var(--yellow); }
.cwr-bottom p { color: #bbb; font-size: 16px; line-height: 1.7; }
.cwr-bottom strong { color: var(--white); }

/* HOW IT WORKS */
.how { padding: 100px 6vw; background: var(--black); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how h2 {
  font-family: 'Onest', sans-serif;
  font-size: clamp(44px, 6vw, 75px);
  line-height: 1;
  margin-bottom: 16px;
}
.how-intro {
  color: #bbb;
  font-size: 18px;
  max-width: 600px;
  font-weight: 300;
  margin-bottom: 72px;
  line-height: 1.6;
}
.how-steps { display: flex; flex-direction: column; }
.how-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 36px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step-num {
  font-family: 'Onest', sans-serif;
  font-size: 60px;
  color: var(--border);
  line-height: 1;
}
.step-tag {
  display: inline-block;
  background: var(--gray);
  color: var(--yellow);
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 4px 10px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.step-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.step-content p { color: #999; font-size: 15px; line-height: 1.7; max-width: 560px; }

/* TCO */
.tco { background: var(--gray); padding: 100px 6vw; }
.tco-inner { max-width: 1100px; margin: 0 auto; }
.tco h2 {
  font-family: 'Onest', sans-serif;
  font-size: clamp(44px, 6vw, 75px);
  line-height: 1;
  margin-bottom: 16px;
}
.tco-sub {
  color: #bbb;
  font-size: 18px;
  max-width: 640px;
  font-weight: 300;
  margin-bottom: 56px;
  line-height: 1.6;
}
.tco-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tco-table th {
  text-align: left;
  padding: 14px 18px;
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
}
.tco-table th.highlight-col { color: var(--yellow); border-bottom-color: var(--yellow); }
.tco-table td {
  padding: 18px;
  border-bottom: 1px solid var(--border);
  color: #bbb;
  vertical-align: top;
}
.tco-table td:first-child { color: var(--white); font-weight: 500; }
.tco-table tr:hover td { background: rgba(255,255,255,0.02); }
.tco-table .highlight-col { background: rgba(240,201,58,0.04); color: var(--white); font-weight: 500; }
.badge-good { color: #4caf50; font-weight: 600; }
.badge-good::before { content: '✓ '; }
.badge-bad { color: var(--red); font-weight: 600; }
.badge-bad::before { content: '✗ '; }

/* NODDING */
.nodding { padding: 100px 6vw; background: var(--black); }
.nodding-inner { max-width: 1100px; margin: 0 auto; }
.nodding h2 {
  font-family: 'Onest', sans-serif;
  font-size: clamp(44px, 6vw, 75px);
  line-height: 1;
  margin-bottom: 16px;
}
.nodding-intro {
  color: #bbb;
  font-size: 18px;
  max-width: 700px;
  font-weight: 300;
  margin-bottom: 56px;
  line-height: 1.6;
}
.nodding-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.nodding-col { padding: 52px 44px; }
.nodding-col.them { background: var(--gray); }
.nodding-col.us { background: var(--yellow); }
.nodding-col.them h3 {
  font-family: 'Onest', sans-serif;
  font-size: 32px;
  color: var(--muted);
  margin-bottom: 28px;
}
.nodding-col.us h3 {
  font-family: 'Onest', sans-serif;
  font-size: 32px;
  color: var(--black);
  margin-bottom: 28px;
}
.nodding-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.nodding-col.them .nodding-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-decoration: line-through;
  text-decoration-color: rgba(217,79,61,0.4);
}
.nodding-col.us .nodding-item p {
  color: rgba(0,0,0,0.72);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}
.nodding-mark { flex-shrink: 0; width: 20px; margin-top: 2px; font-size: 13px; }
.nodding-col.them .nodding-mark { color: var(--red); }
.nodding-col.us .nodding-mark { color: var(--black); font-weight: 700; }

/* HONESTY */
.honesty { background: var(--red); padding: 110px 6vw; position: relative; overflow: hidden; }
.honesty::after {
  content: 'NO.';
  position: absolute;
  right: -10px; bottom: -70px;
  font-family: 'Onest', sans-serif;
  font-size: 280px;
  color: rgba(0,0,0,0.1);
  pointer-events: none;
  line-height: 1;
}
.honesty-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.honesty h2 {
  font-family: 'Onest', sans-serif;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 36px;
}
.honesty p {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 300;
}
.honesty strong { color: var(--white); font-weight: 700; }

/* TIERS */
.tiers { padding: 100px 6vw; background: var(--black); }
.tiers-inner { max-width: 1100px; margin: 0 auto; }
.tiers h2 {
  font-family: 'Onest', sans-serif;
  font-size: clamp(44px, 6vw, 75px);
  line-height: 1;
  margin-bottom: 16px;
}
.tiers-sub {
  color: #bbb;
  font-size: 18px;
  max-width: 580px;
  font-weight: 300;
  margin-bottom: 56px;
  line-height: 1.6;
}
.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.tier-card {
  background: var(--gray);
  padding: 44px 32px;
  position: relative;
  transition: transform 0.2s;
  border-top: 3px solid transparent;
}
.tier-card:hover { transform: translateY(-4px); border-top-color: var(--yellow); }
.tier-card.featured { background: var(--yellow); border-top-color: var(--black); }
.tier-card.featured * { color: var(--black) !important; }
.tier-badge {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--red);
  color: var(--white) !important;
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 2px;
  padding: 5px 10px;
  text-transform: uppercase;
}
.tier-label { font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; letter-spacing: 3px; color: var(--muted); margin-bottom: 12px; text-transform: uppercase; }
.tier-name { font-family: 'Onest', sans-serif; font-size: 36px; color: var(--white); margin-bottom: 6px; line-height: 1; }
.tier-hours { font-size: 14px; color: #999; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.tier-card.featured .tier-hours { border-bottom-color: rgba(0,0,0,0.15); }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.tier-features li { font-size: 14px; color: #bbb; display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.tier-features li::before { content: '→'; color: var(--yellow); flex-shrink: 0; font-weight: 700; }
.tier-card.featured .tier-features li::before { color: var(--black); }
.tier-cta {
  display: block;
  text-align: center;
  padding: 13px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s;
  background: var(--black);
  color: var(--white);
}
.tier-cta:hover { background: var(--yellow); color: var(--black); }
.tier-card.featured .tier-cta { background: var(--black); color: var(--white); }

/* ADVISORY ADD-ON STRIP */
.advisory-strip {
  background: var(--blue);
  padding: 56px 6vw;
  border-top: 2px solid rgba(255,255,255,0.08);
}
.advisory-strip-inner { max-width: 1100px; margin: 0 auto; }
.advisory-strip-header { text-align: center; margin-bottom: 36px; }
.advisory-strip-header h3 {
  font-family: 'Onest', sans-serif;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 8px;
}
.advisory-strip-header p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
}
.advisory-strip-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.advisory-strip-card {
  background: rgba(255,255,255,0.06);
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.advisory-strip-card h4 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.advisory-strip-card p { font-size: 13px; color: rgba(255,255,255,0.5); }
.advisory-strip-card .price-tag {
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--yellow);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* USE CASES */
.usecases { padding: 100px 6vw; background: var(--gray); }
.usecases-inner { max-width: 1100px; margin: 0 auto; }
.usecases h2 {
  font-family: 'Onest', sans-serif;
  font-size: clamp(44px, 6vw, 75px);
  line-height: 1;
  margin-bottom: 16px;
}
.usecases-intro {
  color: #bbb;
  font-size: 18px;
  max-width: 640px;
  font-weight: 300;
  margin-bottom: 64px;
  line-height: 1.6;
}
.usecase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.usecase {
  background: var(--black);
  padding: 44px 40px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s;
}
.usecase:hover { border-bottom-color: var(--yellow); }
.usecase-badge {
  display: inline-block;
  background: var(--gray);
  color: var(--yellow);
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 4px 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.usecase h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; line-height: 1.3; }
.usecase-block { margin-bottom: 20px; }
.usecase-block-label {
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.usecase-block p { color: #999; font-size: 14px; line-height: 1.6; }
.usecase-results {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.usecase-result {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}
.usecase-result::before { content: '✓'; color: #4caf50; flex-shrink: 0; font-weight: 700; }

/* FINAL CTA */
.final-cta { padding: 130px 6vw; text-align: center; background: var(--black); position: relative; overflow: hidden; }
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(240,201,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; max-width: 800px; margin: 0 auto; }
.final-cta h2 {
  font-family: 'Onest', sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.95;
  margin-bottom: 28px;
}
.final-cta h2 em { font-style: normal; color: var(--yellow); }
.final-cta p {
  color: #999;
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.6;
}
.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.final-cta .disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: var(--border);
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 1px;
}

/* TCO TEASER BAND */
.tco-band {
  background: #111;
  padding: 60px 6vw;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}
.tco-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.tco-band-text { flex: 1; min-width: 280px; }
.tco-band-headline {
  font-family: 'Onest', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
  margin-bottom: 6px;
  color: var(--white);
}
.tco-band-sub {
  color: var(--muted);
  font-size: 14px;
  max-width: 540px;
  line-height: 1.5;
}
.tco-band-cta {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  text-decoration: none;
  letter-spacing: 0.4px;
  white-space: nowrap;
  transition: all 0.2s;
}
.tco-band-cta:hover { background: var(--white); color: var(--black); }

/* === ACCESSIBILITY (home-only buttons) === */

.btn-primary:focus-visible,
.btn-advisory:focus-visible,
.tier-cta:focus-visible,
.tco-band-cta:focus-visible {
  outline-offset: 4px;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow       { animation: fadeUp 0.6s ease both; }
.hero h1            { animation: fadeUp 0.6s ease 0.1s both; }
.hero-sub           { animation: fadeUp 0.6s ease 0.2s both; }
.hero-advisory-line { animation: fadeUp 0.6s ease 0.25s both; }
.hero-actions       { animation: fadeUp 0.6s ease 0.3s both; }
.hero-stats         { animation: fadeUp 0.6s ease 0.4s both; }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

/* === RESPONSIVE — home-section grids collapse at ≤900px === */
@media (max-width: 900px) {
  .cwr-phases,
  .tier-cards,
  .advisory-cards,
  .advisory-strip-cards,
  .problem-grid,
  .nodding-grid,
  .usecase-grid { grid-template-columns: 1fr; }
  .how-step { grid-template-columns: 56px 1fr; gap: 20px; }
  .founders-inner { gap: 24px; }
  .founders-cred { margin-left: 0; text-align: left; }
  .tco-band-inner { flex-direction: column; align-items: flex-start; }
  .tco-band-cta { width: 100%; text-align: center; }
}

/* === SMALL-VIEWPORT POLISH (≤768px) === */
@media (max-width: 768px) {
  /* Drop oversized decorative pseudo-elements that risk overflow */
  .hero::after,
  .advisory::before,
  .big-quote::before,
  .honesty::after { display: none; }
}

/* === V2 LIGHT-THEME home-section overrides ================================ */

/* Onest is proportional — tighten letter-spacing on display + weightier heads */
.hero h1,
.problem h2,
.big-quote p,
.advisory h2,
.cwr h2,
.how h2,
.tco h2,
.nodding h2,
.honesty h2,
.tiers h2,
.usecases h2,
.final-cta h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.stat-num,
.tier-name,
.phase-num,
.step-num {
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Mono tags + buttons: shrink letter-spacing (was tuned for Bebas/DM Mono) */
.section-label,
.hero-eyebrow,
.step-tag,
.phase-label,
.tco-table th,
.usecase-badge,
.advisory-card-badge,
.tier-label,
.stat-label,
.btn-primary,
.btn-advisory,
.tier-cta,
.tco-band-cta { letter-spacing: 0.4px; }

/* Inverted-treatment surfaces — amber bg, navy text (var(--white) is navy in v2) */
.big-quote p,
.big-quote .attr,
.nodding-col.us h3,
.nodding-col.us .nodding-item p,
.nodding-col.us .nodding-mark,
.tier-card.featured,
.tier-card.featured * {
  color: var(--white) !important;
}
.tier-card.featured .tier-cta { background: var(--white); color: #ffffff !important; }

/* Honesty (red bg): force white text — var(--white) is navy now */
.honesty h2,
.honesty p,
.honesty p strong { color: #ffffff !important; }

/* Advisory section (navy bg): all heading text must be white */
.advisory h2,
.advisory-intro strong,
.advisory-card h3,
.advisory-strip-header h3,
.advisory-strip-card h4 { color: #ffffff !important; }

/* Section bands — lift the alt-bg sections so they read as subtle blue-grey */
.tco-band {
  background: var(--gray);
  border-top-color: var(--mid);
  border-bottom-color: var(--mid);
}
.tco-band-headline { color: var(--white); }
.tco-band-sub { color: var(--muted); }

/* Hard-coded dark-theme greys → use the navy ramp on white */
.problem-intro,
.advisory-intro,
.cwr-intro,
.how-intro,
.tco-sub,
.tiers-sub,
.usecases-intro,
.cwr-bottom p,
.tier-hours,
.tier-features li,
.step-content p,
.usecase-block p,
.problem-item p,
.cwr-phase p,
.final-cta .disclaimer { color: var(--muted); }
.tco-table tbody td:not(:first-child) { color: var(--muted); }
.tco-table tbody td:first-child { color: var(--white); }

/* Featured tier card: amber bg, navy text — keep CTA navy with white text */
.tier-card.featured .tier-cta { background: var(--white); color: #ffffff !important; }
.tier-card.featured .tier-cta:hover { background: var(--yellow); color: var(--white) !important; }

/* Cards on white look better with a subtle border */
.problem-item,
.cwr-phase,
.tier-card:not(.featured) { border: 1px solid var(--border); }

/* === V2 COMPACTION — light theme reads tighter than dark; cut whitespace ~35% === */

.hero          { padding: 110px 6vw 56px; }
.problem       { padding: 64px 6vw; }
.big-quote     { padding: 72px 6vw; }
.advisory      { padding: 56px 6vw; }
.founders      { padding: 28px 6vw; }
.cwr           { padding: 64px 6vw; }
.how           { padding: 64px 6vw; }
.tco           { padding: 64px 6vw; }
.nodding       { padding: 64px 6vw; }
.honesty       { padding: 72px 6vw; }
.tiers         { padding: 64px 6vw; }
.advisory-strip{ padding: 40px 6vw; }
.usecases      { padding: 64px 6vw; }
.final-cta     { padding: 84px 6vw; }
.tco-band      { padding: 40px 6vw; }

.problem h2       { margin-bottom: 12px; }
.problem-intro    { margin-bottom: 36px; }
.advisory-header  { margin-bottom: 36px; }
.cwr-intro        { margin-bottom: 40px; }
.how-intro        { margin-bottom: 44px; }
.tco-sub          { margin-bottom: 36px; }
.tiers-sub        { margin-bottom: 36px; }
.usecases-intro   { margin-bottom: 36px; }
.nodding-intro    { margin-bottom: 36px; }
.advisory-strip-header { margin-bottom: 24px; }

.hero h1            { margin-bottom: 24px; }
.hero-sub           { margin-bottom: 14px; }
.hero-advisory-line { margin-bottom: 32px; }
.hero-actions       { margin-bottom: 56px; }
.hero-stats         { padding-top: 32px; gap: 40px; }

.problem-item      { padding: 26px; }
.advisory-card     { padding: 36px 32px; }
.cwr-phase         { padding: 32px 28px; }
.how-step          { padding: 32px 0; }
.tier-card         { padding: 32px 26px; }
.usecase           { padding: 32px 28px; }
.nodding-col       { padding: 36px 32px; }

.tco-table th      { padding: 12px 14px; }
.tco-table td      { padding: 14px; }
.final-cta h2      { margin-bottom: 18px; }
.final-cta .final-cta-actions { margin-top: 28px; }
