/* ============================================================
   BuildHawk — Design System v2
   Ported from bhsite (Next.js/Tailwind) → Vanilla CSS
   Colors: bhsite globals.css @theme tokens
   Font: Inter 400/500/600 (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  /* Primary palette */
  --bh-white: #ffffff;
  --bh-black: #111111;
  --bh-orange: #de5123;

  /* Anchor tokens (always dark panel use) */
  --bh-ink: #111111;
  --bh-paper: #ffffff;

  /* Secondary palette */
  --bh-graphite: #6e7180;
  --bh-space: #9da2b3;
  --bh-steel: #bcbfcc;
  --bh-smoke: #d3d6e0;
  --bh-cloud: #edeff7;

  /* Orange ramp */
  --bh-orange-900: #9a2a06;
  --bh-orange-700: #bc3c12;
  --bh-orange-500: #de5123;
  --bh-orange-200: #ffcebe;
  --bh-orange-50: #fff0eb;

  --spacing: .25rem;
  /* Layout */
  --max-w: 1480px;
  --px: clamp(1.25rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  --container-xs: 20rem;
  --container-sm: 24rem;
  --container-md: 28rem;
  --container-xl: 36rem;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bh-white);
  color: var(--bh-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

#section-contact ul,
#section-contact ol {
  list-style: none;
}

::selection {
  background: var(--bh-orange);
  color: var(--bh-paper);
}

/* ── Layout Helpers ─────────────────────────────────────────── */
.bh-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

.bh-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bh-grid {
    gap: 2rem;
  }
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes bh-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.55;
  }
}

@keyframes bh-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes bh-stage-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bh-sweep {
  0% {
    opacity: 0;
    transform: translateX(-120%) rotate(-12deg);
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(120%) rotate(-12deg);
  }
}

@keyframes bh-card-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes bh-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bh-pulse {
  animation: bh-pulse 2.4s var(--ease) infinite;
  transform-origin: center;
}

.bh-marquee-track {
  animation: bh-marquee 32s linear infinite;
}

/* Scroll-reveal */
.bh-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.bh-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  .bh-pulse,
  .bh-marquee-track,
  .bh-reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Focus ──────────────────────────────────────────────────── */
:where(a, button, [role=button], input, textarea, select):focus-visible {
  outline: 2px solid var(--bh-orange);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Scroll Progress ────────────────────────────────────────── */
.bh-scroll-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--bh-orange);
  width: 0%;
  transform-origin: left;
  will-change: width;
  transition: width 80ms linear;
  pointer-events: none;
}

/* ── Header ─────────────────────────────────────────────────── */
#bh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s;
  border-bottom: 1px solid transparent;
}

#bh-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(188, 191, 204, 0.4);
}

.bh-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .bh-header-inner {
    height: 80px;
  }
}

/* Logo */
.bh-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bh-logo-emblem {
  width: 32px;
  height: 32px;
}

.bh-logo-emblem img {
  width: 100%;
  height: 100%;
}

.bh-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.bh-logo-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--bh-black);
}

.bh-logo-sub {
  font-size: 9px;
  letter-spacing: 0.04em;
  color: var(--bh-graphite);
  margin-top: 2px;
}

/* Nav */
.bh-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

@media (min-width: 1024px) {
  .bh-nav {
    display: flex;
  }
}

.bh-nav-link {
  position: relative;
  padding-block: 4px;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
  transition: color 0.3s;
  white-space: nowrap;
}

.bh-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--bh-orange);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 320ms var(--ease);
}

.bh-nav-link:hover,
.bh-nav-link[data-active=true] {
  color: var(--bh-black);
}

.bh-nav-link:hover::after,
.bh-nav-link[data-active=true]::after {
  transform: scaleX(1);
}

/* Header actions */
.bh-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .bh-header-actions {
    gap: 16px;
  }
}

.bh-phone-link {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
  transition: color 0.3s;
}

.bh-phone-link:hover {
  color: var(--bh-orange);
}

@media (min-width: 1536px) {
  .bh-phone-link {
    display: inline-flex;
  }
}

/* Buttons */
.bh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--bh-ink);
  color: var(--bh-paper);
  font-size: 13px;
  letter-spacing: -0.005em;
  transition: background 0.25s;
  white-space: nowrap;
}

.bh-btn-primary:hover {
  background: var(--bh-orange);
}

.bh-btn-primary .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.bh-btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 48px;
  padding-left: 24px;
  padding-right: 8px;
  border-radius: 8px;
  background: var(--bh-orange);
  color: var(--bh-paper);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background 0.25s;
}


.bh-btn-black {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 48px;
  padding-left: 24px;
  padding-right: 8px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background 0.25s;
}

.bh-btn-black .btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.25s;
}

.bh-btn-orange:hover {
  background: var(--bh-orange-700);
}

.bh-btn-orange .btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.25s;
}

.bh-btn-orange:hover .btn-circle {
  background: rgba(255, 255, 255, 0.3);
}

.bh-btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(188, 191, 204, 0.5);
  border-radius: 8px;
  color: var(--bh-paper);
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: border-color 0.25s, color 0.25s;
}

.bh-btn-ghost-dark:hover {
  border-color: var(--bh-orange);
  color: var(--bh-orange);
}

.bh-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 48px;
  padding-left: 24px;
  padding-right: 8px;
  border: 1px solid rgba(188, 191, 204, 0.6);
  border-radius: 8px;
  color: var(--bh-black);
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: border-color 0.25s, color 0.25s;
}

.bh-btn-secondary:hover {
  border-color: var(--bh-orange);
  color: var(--bh-orange);
}

.bh-btn-secondary .btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transition: background 0.25s;
}

.bh-btn-secondary:hover .btn-circle {
  background: rgba(222, 81, 35, 0.12);
}

/* Mobile menu btn */
.bh-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--bh-black);
  transition: background 0.2s;
}

.bh-menu-btn:hover {
  background: var(--bh-cloud);
}

@media (min-width: 1024px) {
  .bh-menu-btn {
    display: none;
  }
}

/* Mobile drawer */
#bh-mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bh-white);
  z-index: 99;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  overflow-y: auto;
}

#bh-mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 768px) {
  #bh-mobile-menu {
    top: 80px;
  }
}

@media (min-width: 1024px) {
  #bh-mobile-menu {
    display: none;
  }
}

.bh-mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 32px var(--px);
  height: 100%;
}

.bh-mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(188, 191, 204, 0.4);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--bh-black);
}

.bh-mobile-nav a svg {
  color: var(--bh-graphite);
  flex-shrink: 0;
}

.bh-mobile-nav a:hover svg {
  color: var(--bh-orange);
}

.bh-mobile-nav-cta {
  margin-top: auto;
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bh-mobile-nav-cta .cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border: 1px solid rgba(188, 191, 204, 0.6);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bh-black);
  transition: background 0.2s;
}

.bh-mobile-nav-cta .cta-call:hover {
  background: var(--bh-cloud);
}

.bh-mobile-nav-cta .cta-brief {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 8px;
  background: var(--bh-ink);
  color: var(--bh-paper);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.bh-mobile-nav-cta .cta-brief:hover {
  background: var(--bh-orange);
}

/* ── Section Badge ──────────────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--bh-orange-50);
  border: 1px solid rgba(222, 81, 35, 0.3);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-orange-700);
  margin-bottom: 20px;
}

.section-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bh-orange);
}

/* ── Emblem bg ──────────────────────────────────────────────── */
.bh-emblem-bg {
  background-image: url(/brand/emblem-bh.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  width: 100%;
  height: 100%;
}

/* ── HERO ───────────────────────────────────────────────────── */
#section-hero {
  position: relative;
  min-height: 100svh;
  background: var(--bh-cloud);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-content-main {
  margin-top: auto;
  width: 70%;
}

.hero-bg {
  background: url(/images/home-bg-2.png) center right no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: calc(100% - 80px);
  display: block;
  margin-top: auto;
  top: 80px;
}

@media (max-width: 767px) {
  .hero-bg {
    background: url(/images/home-bg-mobile.png) center right no-repeat;
    background-size: cover;
    top: 64px;
    height: calc(100% - 64px);
  }

  .hero-content-main {
    width: 100%;
  }
}

#hero-canvas-3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-emblem {
  display: none;
  position: absolute;
  top: 14%;
  right: 3%;
  width: 20vw;
  max-width: 400px;
  aspect-ratio: 255/196;
  opacity: 0.16;
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-bg-emblem {
    display: block;
  }
}

.hero-bg-emblem .bh-emblem-bg {
  background-position: center;
}

.hero-divider-top {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(188, 191, 204, 0.5);
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-divider-top {
    top: 80px;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(64px + 4rem) var(--px) 3rem;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: calc(80px + 6rem);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero-badge {
    font-size: 13px;
    margin-bottom: 40px;
  }
}

.hero-badge-dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
}

.hero-badge-dot-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--bh-orange);
  display: block;
}

.hero-badge-dot-core {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bh-orange);
}

.hero-badge-years {
  color: var(--bh-orange);
  font-weight: 600;
}

.hero-badge-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(188, 191, 204, 0.7);
}

.hero-headline {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--bh-black);
  font-size: clamp(44px, 8vw, 120px);
  margin-top: auto;
}

.hero-headline-sub {
  margin-top: 20px;
  font-size: 35px;
  line-height: 1.2em;
}

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

.hero-sub {
  margin-top: 24px;
  max-width: 800px;
  color: var(--bh-graphite);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .hero-sub {
    margin-top: 32px;
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .hero-headline-sub {
    font-size: 20px;
    margin-top: 10px;
    line-height: 1.1;
  }
}

.hero-ctas {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: auto;
  }
}

@media (min-width: 768px) {
  .hero-ctas {
    margin-top: 40px;
  }
}

.hero-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.hero-anim.visible {
  opacity: 1;
  transform: none;
}

.hero-stats {
  margin-top: auto;
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
  align-items: end;
}

@media (min-width: 768px) {
  .hero-stats {
    padding-top: 96px;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }

  .hero-stats>div {
    grid-column: span 3;
  }

  .hero-stats>div:last-child {
    text-align: right;
  }
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .hero-stat-label {
    font-size: 11px;
  }
}

.hero-stat-value {
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--bh-black);
}

@media (min-width: 768px) {
  .hero-stat-value {
    font-size: 15px;
  }
}

.hero-stat-value .num {
  color: var(--bh-orange);
  font-weight: 600;
}

.hero-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(188, 191, 204, 0.6);
}

/* ── HAWKTRESS / LIFECYCLE ──────────────────────────────────── */
#section-hawktress {
  position: relative;
  background: var(--bh-white);
  padding: 64px 0;
}

@media (min-width: 768px) {
  #section-hawktress {
    padding: 144px 0;
  }
}

.hawktress-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .hawktress-header {
    gap: 32px;
    margin-bottom: 64px;
  }
}

.hawktress-title-col {
  grid-column: 1/-1;
}

.hawktress-desc-col {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .hawktress-title-col {
    grid-column: 1/6;
  }

  .hawktress-desc-col {
    grid-column: 6/13;
    padding-top: 12px;
  }
}

.section-title {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--bh-black);
  font-size: 45px;
}

.section-title .muted {
  color: var(--bh-graphite);
}

.hawktress-desc {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--bh-graphite);
}

@media (min-width: 768px) {
  .hawktress-desc {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 32px;
  }
}

.hawktress-desc .footnote {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(110, 113, 128, 0.8);
}

@media (min-width: 768px) {
  .hawktress-desc .footnote {
    font-size: 13px;
  }
}

/* Lifecycle tabs */
.lifecycle-tabs {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  margin: 0 calc(-1 * var(--px));
  padding: 0 var(--px);
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.lifecycle-tabs::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .lifecycle-tabs {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    overflow-x: visible;
  }
}

.lc-tab {
  flex: none;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 12px 16px;
  border-top: 2px solid rgba(188, 191, 204, 0.4);
  scroll-snap-align: start;
  transition: border-color 0.2s;
  cursor: pointer;
}

@media (min-width: 768px) {
  .lc-tab {
    flex: auto;
    min-width: 0;
    padding: 16px 20px;
  }
}

.lc-tab:hover {
  border-color: rgba(110, 113, 128, 0.6);
}

.lc-tab.active {
  border-color: var(--bh-orange);
}

.lc-tab-num {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 6px;
  transition: color 0.2s;
}

.lc-tab.active .lc-tab-num {
  color: var(--bh-orange);
}

.lc-tab-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--bh-graphite);
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .lc-tab-name {
    font-size: 15px;
  }
}

.lc-tab.active .lc-tab-name,
.lc-tab:hover .lc-tab-name {
  color: var(--bh-black);
}

/* Lifecycle panel */
.lc-panel {
  display: none;
  margin-top: 32px;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  animation: bh-stage-in 420ms var(--ease) both;
}

@media (min-width: 768px) {
  .lc-panel {
    margin-top: 40px;
    gap: 40px;
  }
}

.lc-panel.active {
  display: grid;
}

.lc-panel-main {
  grid-column: 1/-1;
}

.lc-panel-side {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .lc-panel-main {
    grid-column: 1/8;
  }

  .lc-panel-side {
    grid-column: 8/13;
    padding-left: 32px;
    border-left: 1px solid rgba(188, 191, 204, 0.4);
  }
}

.lc-fn {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 10px;
  font-weight: 600
}

.lc-role {
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--bh-black);
  max-width: 700px;
}

.lc-read-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  margin-bottom: 12px;
}

.lc-read-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--bh-black);
  transition: color 0.2s;
}

.lc-read-link:hover {
  color: var(--bh-orange);
}

.lc-read-link-text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  max-width: 280px;
}

@media (min-width: 768px) {
  .lc-read-link-text {
    font-size: 20px;
  }
}

.lc-read-icon {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  transition: background 0.2s;
}

.lc-read-link:hover .lc-read-icon {
  background: rgba(222, 81, 35, 0.15);
}

.lc-counter-label {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(110, 113, 128, 0.8);
}

/* Progress dots */
.lc-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .lc-dots {
    margin-top: 48px;
  }
}

.lc-dot {
  height: 4px;
  width: 20px;
  border-radius: 999px;
  background: rgba(188, 191, 204, 0.6);
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.3s;
}

.lc-dot.active {
  width: 40px;
  background: var(--bh-orange);
}

.lc-dot:hover:not(.active) {
  background: rgba(110, 113, 128, 0.6);
}

/* Threshold callout */
.lc-threshold {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(188, 191, 204, 0.4);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .lc-threshold {
    margin-top: 64px;
    padding-top: 48px;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

.lc-threshold-num {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--bh-orange);
  font-size: clamp(64px, 6vw, 88px);
  tabular-nums: true;
  white-space: nowrap;
  flex-shrink: 0;
}

.lc-threshold-text {
  flex: 1;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--bh-black);
}

@media (min-width: 768px) {
  .lc-threshold-text {
    font-size: 18px;
  }
}

.lc-threshold-text strong {
  font-weight: 500;
}

/* ── VALUE CASE ──────────────────────────────────────────────── */
#section-value {
  position: relative;
  background: var(--bh-cloud);
  padding: 64px 0;
}

.section-value-container {
  width: 100%;
  margin: auto;
}

@media (min-width: 768px) {
  #section-value {
    padding: 144px 0;
  }

  .section-value-container {
    width: 75%;
  }
}

.value-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .value-header {
    gap: 32px;
    margin-bottom: 80px;
  }
}

.value-label-col {
  grid-column: 1/-1;
}

.value-head-col {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .value-label-col {
    grid-column: 1/4;
  }

  .value-head-col {
    grid-column: 4/13;
  }
}

.value-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.value-heading {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--bh-black);
  font-size: clamp(36px, 4vw, 72px);
}

.value-heading .muted {
  color: var(--bh-graphite);
}

.value-sub {
  margin-top: 24px;
  max-width: 750px;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
}

@media (min-width: 768px) {
  .value-sub {
    font-size: 19px;
  }
}

.value-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .value-cards {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.value-card {
  background: var(--bh-white);
  border: 1px solid rgba(188, 191, 204, 0.6);
  padding: 28px;
}

@media (min-width: 768px) {
  .value-card {
    padding: 36px;
  }
}

.value-card-dark {
  position: relative;
  background: var(--bh-ink);
  color: var(--bh-paper);
  padding: 28px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .value-card-dark {
    padding: 36px;
  }
}

.value-card-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bh-orange);
}

.value-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(188, 191, 204, 0.6);
}

.value-card-dark .value-card-header {
  border-color: rgba(110, 113, 128, 0.4);
}

.value-card-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--bh-black);
}

.value-card-dark .value-card-title {
  color: var(--bh-paper);
}

.value-card-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.value-card-dark .value-card-meta {
  color: rgba(188, 191, 204, 0.8);
}

.value-list {
  display: flex;
  flex-direction: column;
}

.value-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(188, 191, 204, 0.4);
}

.value-list li:last-child {
  border-bottom: none;
}

.value-list li span:first-child {
  color: var(--bh-graphite);
  letter-spacing: -0.005em;
}

.value-list li span:last-child {
  color: var(--bh-black);
  font-variant-numeric: tabular-nums;
}

.value-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.value-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(188, 191, 204, 0.9);
  line-height: 1.45;
  letter-spacing: -0.005em;
}

.value-total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--bh-black);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.value-total-dark {
  border-color: var(--bh-orange);
}

.value-total-label {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-black);
}

.value-card-dark .value-total-label {
  color: var(--bh-paper);
}

.value-total-amount {
  font-size: clamp(28px, 2vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--bh-black);
  font-variant-numeric: tabular-nums;
}

.value-card-dark .value-total-amount {
  color: var(--bh-orange);
}

.value-note {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--bh-graphite);
}

.value-card-dark .value-note {
  color: rgba(188, 191, 204, 0.8);
  font-size: 12px;
}

.value-sub-note {
  margin-top: 48px;
  max-width: 760px;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
  line-height: 1.55;
}

@media (min-width: 768px) {
  .value-sub-note {
    font-size: 15px;
    margin-top: 64px;
  }
}

.value-sub-note .highlight {
  color: var(--bh-black);
}

/* ── PRICING ─────────────────────────────────────────────────── */
#section-pricing {
  position: relative;
  background: var(--bh-white);
  padding: 64px 0;
  scroll-margin-top: 80px;
}

@media (min-width: 768px) {
  #section-pricing {
    padding: 144px 0;
  }
}

.pricing-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .pricing-header {
    gap: 32px;
    margin-bottom: 56px;
  }
}

.pricing-label-col {
  grid-column: 1/-1;
}

.pricing-head-col {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .pricing-label-col {
    grid-column: 1/4;
  }

  .pricing-head-col {
    grid-column: 4/12;
  }
}

.pricing-heading {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--bh-black);
  font-size: clamp(32px, 3.5vw, 72px);
}

.pricing-heading .muted {
  color: var(--bh-graphite);
}

.pricing-sub {
  margin-top: 24px;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
}

@media (min-width: 768px) {
  .pricing-sub {
    font-size: 17px;
  }
}

.pricing-list {
  border-top: 1px solid rgba(188, 191, 204, 0.6);
}

.pricing-item {
  border-bottom: 1px solid rgba(188, 191, 204, 0.6);
}

.pricing-item-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  padding: 24px 0;
  border-radius: 10px;
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
  transition: background 0.2s;
}

.pricing-item-summary:hover {
  background: rgba(237, 239, 247, 0.4);
}

@media (min-width: 768px) {
  .pricing-item-summary {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.pricing-item-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  margin-bottom: 8px;
}

.pricing-item-title {
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--bh-black);
  transition: color 0.2s;
}

.pricing-item-summary:hover .pricing-item-title,
.pricing-item.open .pricing-item-title {
  color: var(--bh-orange);
}

.pricing-item-blurb {
  margin-top: 12px;
  max-width: 560px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--bh-graphite);
}

@media (min-width: 768px) {
  .pricing-item-blurb {
    font-size: 15px;
  }
}

.pricing-item-badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(188, 191, 204, 0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bh-graphite);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  transition: border-color 0.2s;
}

.pricing-item-summary:hover .pricing-item-badge,
.pricing-item.open .pricing-item-badge {
  border-color: rgba(222, 81, 35, 0.6);
}

.pricing-item-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(188, 191, 204, 0.6);
  color: var(--bh-graphite);
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, transform 0.3s;
}

@media (min-width: 768px) {
  .pricing-item-toggle {
    width: 40px;
    height: 40px;
  }
}

.pricing-item-summary:hover .pricing-item-toggle,
.pricing-item.open .pricing-item-toggle {
  border-color: var(--bh-orange);
  color: var(--bh-orange);
}

.pricing-item.open .pricing-item-toggle {
  transform: rotate(45deg);
}

.pricing-item-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding-top: 4px;
}

.pricing-item-badge-sm {
  display: flex;
}

@media (min-width: 640px) {
  .pricing-item-badge-sm {
    display: none;
  }
}

.pricing-item-badge-lg {
  display: none;
}

@media (min-width: 640px) {
  .pricing-item-badge-lg {
    display: inline-flex;
  }
}

/* Plan cards body */
.pricing-item-body {
  display: none;
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .pricing-item-body {
    padding-bottom: 48px;
  }
}

.pricing-item-body.open {
  display: block;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pricing-cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .pricing-cards--1 {
    max-width: 400px;
  }
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(188, 191, 204, 0.6);
  background: var(--bh-white);
  transition: border-color 0.2s;
}

@media (min-width: 768px) {
  .plan-card {
    padding: 28px;
  }
}

.plan-card:hover {
  border-color: rgba(110, 113, 128, 0.6);
}

.plan-card--featured {
  background: var(--bh-ink);
  color: var(--bh-paper);
  border-color: var(--bh-ink);
  box-shadow: 0 30px 60px -20px rgba(222, 81, 35, 0.25);
}

.plan-card--featured:hover {
  border-color: var(--bh-ink);
}

.plan-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--bh-orange);
  color: var(--bh-paper);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.plan-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.plan-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--bh-black);
}

.plan-card--featured .plan-name {
  color: var(--bh-paper);
}

.plan-plan-meta {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: right;
  color: var(--bh-graphite);
}

.plan-card--featured .plan-plan-meta {
  color: rgba(188, 191, 204, 0.8);
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.plan-amount {
  font-size: clamp(36px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--bh-black);
  font-variant-numeric: tabular-nums;
}

.plan-card--featured .plan-amount {
  color: var(--bh-orange);
}

.plan-cadence {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.plan-card--featured .plan-cadence {
  color: rgba(188, 191, 204, 0.8);
}

.plan-blurb {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
}

.plan-card--featured .plan-blurb {
  color: rgba(188, 191, 204, 0.9);
}

.plan-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--bh-graphite);
}

.plan-card--featured .plan-features li {
  color: rgba(188, 191, 204, 0.9);
}

.plan-dot {
  margin-top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bh-orange);
  flex-shrink: 0;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  height: 44px;
  padding-left: 20px;
  padding-right: 8px;
  border-radius: 8px;
  background: var(--bh-ink);
  color: var(--bh-paper);
  font-size: 13px;
  letter-spacing: -0.005em;
  font-weight: 500;
  transition: background 0.25s;
}

.pricing-cta:hover {
  background: var(--bh-orange);
}

.pricing-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.pricing-footnote {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .pricing-footnote {
    margin-top: 48px;
    gap: 32px;
  }
}

.pricing-footnote-inner {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .pricing-footnote-inner {
    grid-column: 4/13;
  }
}

.pricing-footnote p {
  font-size: 12px;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
  line-height: 1.5;
}

.pricing-footnote a {
  color: var(--bh-orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pricing-footnote a:hover {
  color: var(--bh-orange-700);
}

/* ── PORTFOLIO ───────────────────────────────────────────────── */
#section-portfolio {
  position: relative;
  background: var(--bh-white);
  padding: 64px 0;
}

@media (min-width: 768px) {
  #section-portfolio {
    padding: 144px 0;
  }
}

.portfolio-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .portfolio-header {
    gap: 32px;
    margin-bottom: 64px;
  }
}

.portfolio-label {
  grid-column: 1/-1;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.portfolio-heading-col {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .portfolio-label {
    grid-column: 1/4;
  }

  .portfolio-heading-col {
    grid-column: 4/13;
  }
}

.portfolio-heading {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--bh-black);
  font-size: clamp(32px, 3vw, 60px);
}

.portfolio-heading .muted {
  color: var(--bh-graphite);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 7fr 5fr;
  }
}

.portfolio-main-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bh-cloud);
}

@media (min-width: 768px) {
  .portfolio-main-img {
    aspect-ratio: 5/6;
  }
}

.portfolio-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 32px;
  color: var(--bh-paper);
}

.portfolio-img-caption::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1) 50%, transparent);
  pointer-events: none;
}

.portfolio-img-caption>* {
  position: relative;
}

.portfolio-caption-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(188, 191, 204, 0.8);
  margin-bottom: 8px;
}

.portfolio-caption-title {
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.portfolio-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.portfolio-side-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bh-cloud);
}

.portfolio-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-stat {
  flex: 1;
  min-height: 180px;
  background: var(--bh-cloud);
  border: 1px solid rgba(188, 191, 204, 0.4);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio-stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.portfolio-stat-text {
  margin-top: 12px;
  font-size: clamp(18px, 1.5vw, 20px);
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--bh-black);
}

.portfolio-stat-footer {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-orange);
}

/* ── FOUNDER ─────────────────────────────────────────────────── */
#section-founder {
  position: relative;
  background: var(--bh-cloud);
  padding: 64px 0;
}

@media (min-width: 768px) {
  #section-founder {
    padding: 144px 0;
  }
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .founder-grid {
    grid-template-columns: 5fr 7fr;
    gap: 40px;
  }
}

.founder-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bh-white);
  border: 1px solid rgba(188, 191, 204, 0.4);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}

.founder-caption {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.founder-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bh-black);
}

.founder-role {
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
  margin-top: 2px;
}

.founder-location {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-orange);
}

.founder-from {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 20px;
}

.founder-quote {
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--bh-black);
  font-size: clamp(28px, 3vw, 48px);
}

.accent {
  color: var(--bh-orange);
}

.founder-quote .accent {
  color: var(--bh-orange);
}

.founder-body {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
}

.founder-body p {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
}

@media (min-width: 768px) {
  .founder-body p {
    font-size: 17px;
  }
}

.founder-body .dark {
  color: var(--bh-black);
}

.founder-stats {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(188, 191, 204, 0.6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .founder-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.founder-stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 4px;
}

.founder-stat-value {
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--bh-black);
}

.founder-stat-value .accent {
  color: var(--bh-orange);
  font-weight: 500;
}

.founder-stat-link {
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--bh-black);
  transition: color 0.2s;
}

.founder-stat-link:hover {
  color: var(--bh-orange);
}

/* ── WHO WE ARE ──────────────────────────────────────────────── */
#section-about {
  position: relative;
  background: var(--bh-cloud);
  padding: 64px 0;
  scroll-margin-top: 80px;
}

@media (min-width: 768px) {
  #section-about {
    padding: 144px 0;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .about-grid {
    gap: 32px;
  }
}

.about-label-col {
  grid-column: 1/-1;
}

.about-content-col {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .about-label-col {
    grid-column: 1/4;
  }

  .about-content-col {
    grid-column: 4/13;
  }
}

.about-lead {
  font-size: 58px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--bh-black);
}

.about-lead .accent {
  color: var(--bh-orange);
}

.about-img-row {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 768px) {
  .about-img-row {
    grid-template-columns: 5fr 7fr;
    gap: 32px;
  }
}

.about-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bh-white);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-copy p {
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--bh-graphite);
}

@media (min-width: 768px) {
  .about-copy p {
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .about-lead {
    font-size: 32px;
  }

}

.about-copy p+p {
  margin-top: 24px;
}

.about-stats-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(188, 191, 204, 0.6);
}

@media (min-width: 768px) {
  .about-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-stat {
  background: var(--bh-cloud);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.about-stat-value {
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--bh-black);
}

@media (min-width: 768px) {
  .about-stat-value {
    font-size: 20px;
  }
}

/* ── PARTNERS ────────────────────────────────────────────────── */
#section-partners {
  position: relative;
  background: var(--bh-white);
  padding: 80px 0 112px;
  border-top: 1px solid rgba(188, 191, 204, 0.4);
}

@media (min-width: 768px) {
  #section-partners {
    padding: 112px 0;
  }
}

.partners-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .partners-header {
    gap: 32px;
    margin-bottom: 56px;
  }
}

.partners-label {
  grid-column: 1/-1;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.partners-head-col {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .partners-label {
    grid-column: 1/4;
  }

  .partners-head-col {
    grid-column: 4/13;
    display: flex;
    flex-direction: column;
  }
}

.partners-heading {
  font-size: clamp(28px, 2.5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--bh-black);
}

.partners-sub {
  margin-top: 16px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
}

@media (min-width: 768px) {
  .partners-sub {
    font-size: 18px;
  }
}

.partners-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--bh-black);
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .partners-link {
    align-self: flex-end;
    margin-top: 0;
  }
}

.partners-link:hover {
  color: var(--bh-orange);
}

.partners-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transition: background 0.2s;
}

.partners-link:hover .partners-link-icon {
  background: rgba(222, 81, 35, 0.15);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(188, 191, 204, 0.4);
  border-left: 1px solid rgba(188, 191, 204, 0.4);
}

@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.partner-tile {
  position: relative;
  aspect-ratio: 5/3;
  border-right: 1px solid rgba(188, 191, 204, 0.4);
  border-bottom: 1px solid rgba(188, 191, 204, 0.4);
  background: var(--bh-paper);
  overflow: hidden;
  display: block;
  transition: filter 0.25s;
}

.partner-tile:hover {
  filter: brightness(0.96);
}

.partner-tile--dark {
  background: var(--bh-ink);
}

.partner-tile-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
}

.partner-tile img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}

.partner-tile:hover img {
  transform: scale(1.04);
}

.partner-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(222, 81, 35, 0.1);
  color: var(--bh-orange);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.partner-name {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  opacity: 1;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .partner-name {
    opacity: 0;
  }

  .partner-tile:hover .partner-name {
    opacity: 1;
  }
}

/* ── INSIGHTS / FIELD NOTES ─────────────────────────────────── */
#section-insights {
  position: relative;
  background: var(--bh-white);
  padding: 64px 0;
}

@media (min-width: 768px) {
  #section-insights {
    padding: 144px 0;
  }
}

.insights-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .insights-header {
    gap: 32px;
    margin-bottom: 64px;
  }
}

.insights-lead-col {
  grid-column: 1/-1;
}

.insights-link-col {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .insights-lead-col {
    grid-column: 1/8;
  }

  .insights-link-col {
    grid-column: 8/13;
    text-align: right;
  }
}

.insights-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  margin-bottom: 16px;
}

.insights-eyebrow span {
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--bh-orange);
}

.insights-heading {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--bh-black);
  font-size: clamp(36px, 3.5vw, 64px);
}

.insights-heading .muted {
  color: var(--bh-graphite);
}

.insights-body {
  margin-top: 20px;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
}

@media (min-width: 768px) {
  .insights-body {
    font-size: 18px;
  }
}

@media (max-width: 767px) {

  .insights-heading {
    font-size: 32px;
  }
}

.insights-view-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--bh-orange);
  transition: color 0.2s;
}

.insights-view-link:hover {
  color: var(--bh-orange-700);
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 24px;
}

@media (min-width: 768px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  display: flex;
  flex-direction: column;
  color: var(--bh-black);
  transition: color 0.2s;
}

.article-card:hover {
  color: var(--bh-orange);
}

.article-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bh-cloud);
  margin-bottom: 20px;
}

.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.article-card:hover .article-card-img img {
  transform: scale(1.03);
}

.article-cat {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  margin-bottom: 8px;
}

.article-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--bh-black);
}

.article-excerpt {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--bh-graphite);
}

.article-meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--bh-graphite);
}

.article-meta-arrow {
  color: var(--bh-orange);
}

/* ── VOICES ──────────────────────────────────────────────────── */
#section-voices {
  position: relative;
  background: var(--bh-cloud);
  padding: 64px 0;
}

@media (min-width: 768px) {
  #section-voices {
    padding: 144px 0;
  }
}

.voices-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  align-items: end;
}

@media (min-width: 768px) {
  .voices-header {
    gap: 32px;
    margin-bottom: 64px;
  }
}

.voices-lead-col {
  grid-column: 1/-1;
}

.voices-sub-col {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .voices-lead-col {
    grid-column: 1/8;
  }

  .voices-sub-col {
    grid-column: 8/13;
    text-align: right;
  }
}

.voices-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 16px;
}

.voices-heading {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--bh-black);
  font-size: clamp(36px, 3.5vw, 64px);
}

.voices-heading .muted {
  color: var(--bh-graphite);
}

.voices-sub {
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
  max-width: 380px;
}

@media (min-width: 768px) {
  .voices-sub {
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  .voices-heading {
    font-size: 32px;
  }
}

.voices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .voices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.voice-card {
  background: var(--bh-white);
  border: 1px solid rgba(188, 191, 204, 0.4);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.voice-card:hover {
  border-color: rgba(110, 113, 128, 0.6);
}

.voice-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bh-black);
}

.voice-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.voice-thumb:hover img {
  transform: scale(1.03);
}

.voice-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1) 50%, transparent);
}

.voice-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.voice-play-circle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bh-orange);
  color: var(--bh-paper);
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  .voice-play-circle {
    width: 64px;
    height: 64px;
  }
}

.voice-thumb:hover .voice-play-circle {
  transform: scale(1.05);
}

.voice-play-circle .ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(222, 81, 35, 0.4);
  animation: ping 1.5s ease-out infinite;
}

@keyframes ping {

  75%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.voice-topic {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  color: var(--bh-paper);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.voice-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.voice-body {
  padding: 20px 24px;
  flex: 1;
}

.voice-title {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--bh-black);
}

@media (min-width: 768px) {
  .voice-title {
    font-size: 18px;
  }
}

.voice-channel {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
}

.voices-disclaimer {
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
  max-width: 760px;
  line-height: 1.55;
}

.voices-disclaimer a {
  color: var(--bh-orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── WAITLIST ────────────────────────────────────────────────── */
#section-waitlist {
  position: relative;
  background: var(--bh-ink);
  color: var(--bh-paper);
  padding: 80px 0 112px;
  overflow: hidden;
}

@media (min-width: 768px) {
  #section-waitlist {
    padding: 112px 0;
  }
}

.waitlist-emblem {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image: url(/brand/emblem-bh-dark.svg);
  background-size: 560px;
  background-repeat: no-repeat;
  background-position: calc(100% + 80px) center;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .waitlist-grid {
    grid-template-columns: 5fr 7fr;
    gap: 96px;
  }
}

.waitlist-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  margin-bottom: 24px;
}

.waitlist-heading {
  font-size: clamp(34px, 3vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.waitlist-sub {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  max-width: 400px;
}

@media (min-width: 768px) {
  .waitlist-sub {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .waitlist-heading {
    font-size: 32px;
  }
}

.waitlist-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.waitlist-feature-dash {
  margin-top: 8px;
  width: 12px;
  height: 1px;
  background: var(--bh-orange);
  flex-shrink: 0;
}

.waitlist-form-wrap {
  background: var(--bh-white);
  color: var(--bh-black);
  padding: 24px 28px;
}

@media (min-width: 768px) {
  .waitlist-form-wrap {
    padding: 40px;
  }
}

.waitlist-who-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 16px;
}

.waitlist-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.waitlist-audience-btn {
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(188, 191, 204, 0.6);
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--bh-black);
  background: var(--bh-white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.waitlist-audience-btn:hover {
  border-color: var(--bh-graphite);
}

.waitlist-audience-btn.active {
  background: var(--bh-ink);
  color: var(--bh-paper);
  border-color: var(--bh-black);
}

.waitlist-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .waitlist-fields {
    grid-template-columns: 1fr 1fr;
  }
}


/* ── ACADEMY ────────────────────────────────────────────────── */
#section-academy {
  position: relative;
  background: var(--bh-ink);
  color: var(--bh-paper);
  padding: 80px 0 112px;
  overflow: hidden;
}

.academy-heading {
  font-size: 78px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.academy-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.academy-sub {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  max-width: 700px;
}

.academy-button {
  height: 44px;
}

.academy-button svg {
  width: 20px;
}

#section-academy .muted {
  color: var(--bh-graphite);
  font-size: 14px;
}

@media (min-width: 768px) {
  .academy-sub {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .academy-heading {
    font-size: 32px;
  }

  .academy-button {
    height: 42px;
  }
}


.wl-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wl-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.wl-input {
  height: 48px;
  background: var(--bh-cloud);
  border: 1px solid rgba(188, 191, 204, 0.6);
  padding: 0 16px;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--bh-black);
  font-family: inherit;
  transition: border-color 0.2s;
}

.wl-input:focus {
  outline: none;
  border-color: var(--bh-orange);
}

.wl-textarea {
  margin-top: 16px;
  width: 100%;
  background: var(--bh-cloud);
  border: 1px solid rgba(188, 191, 204, 0.6);
  padding: 12px 16px;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--bh-black);
  font-family: inherit;
  resize: none;
  transition: border-color 0.2s;
}

.wl-textarea:focus {
  outline: none;
  border-color: var(--bh-orange);
}

.wl-textarea::placeholder,
.wl-input::placeholder {
  color: rgba(110, 113, 128, 0.7);
}

.wl-submit-row {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .wl-submit-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.wl-policy {
  font-size: 12px;
  color: var(--bh-graphite);
  line-height: 1.5;
  max-width: 400px;
}

.wl-policy a {
  color: var(--bh-black);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wl-policy a:hover {
  color: var(--bh-orange);
}

.wl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 48px;
  padding-left: 24px;
  padding-right: 8px;
  border-radius: 8px;
  background: var(--bh-orange);
  color: var(--bh-paper);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background 0.25s;
  white-space: nowrap;
}

.wl-btn:hover {
  background: var(--bh-orange-700);
}

.wl-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.wl-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.wl-error {
  margin-top: 16px;
  font-size: 13px;
  color: var(--bh-orange-700);
}

.wl-success {
  padding: 24px 0;
}

.wl-success-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(222, 81, 35, 0.15);
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.wl-success-title {
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--bh-black);
}

.wl-success-body {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--bh-graphite);
  max-width: 480px;
}

/* ── INTAKE FORM ─────────────────────────────────────────────── */
#section-intake {
  position: relative;
  background: var(--bh-white);
  padding: 64px 0;
  scroll-margin-top: 80px;
}

@media (min-width: 768px) {
  #section-intake {
    padding: 144px 0;
  }
}

.intake-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .intake-header {
    gap: 32px;
    margin-bottom: 64px;
  }
}

.intake-label-col {
  grid-column: 1/-1;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.intake-head-col {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .intake-label-col {
    grid-column: 1/4;
  }

  .intake-head-col {
    grid-column: 4/13;
  }
}

.intake-heading {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--bh-black);
  font-size: clamp(36px, 3.5vw, 72px);
}

.intake-heading .muted {
  color: var(--bh-graphite);
}

.intake-body-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .intake-body-grid {
    grid-template-columns: 4fr 8fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .intake-heading {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .intake-body-grid {
    grid-template-columns: 3fr 9fr;
  }
}

.intake-aside {}

.intake-aside-img {
  display: none;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bh-cloud);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .intake-aside-img {
    display: block;
  }
}

.intake-aside-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intake-aside-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
  color: var(--bh-graphite);
  letter-spacing: -0.005em;
}

.intake-aside-info p {
  line-height: 1.55;
}

.intake-aside-section {
  padding-top: 20px;
  border-top: 1px solid rgba(188, 191, 204, 0.6);
}

.intake-aside-section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 8px;
}

.intake-aside-section a {
  display: block;
  font-size: 16px;
  color: var(--bh-black);
  transition: color 0.2s;
  margin-top: 4px;
}

.intake-aside-section a:hover {
  color: var(--bh-orange);
}

.intake-aside-section p {
  font-size: 16px;
  color: var(--bh-black);
  margin-top: 4px;
}

/* Form grid */
.intake-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(188, 191, 204, 0.6);
  border: 1px solid rgba(188, 191, 204, 0.6);
}

@media (min-width: 640px) {
  .intake-form {
    grid-template-columns: 1fr 1fr;
  }
}

.intake-field {
  background: var(--bh-white);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.intake-field--full {
  grid-column: 1/-1;
}

.intake-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.intake-label .req {
  color: var(--bh-orange);
  margin-left: 4px;
}

.intake-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(188, 191, 204, 0.6);
  padding-bottom: 8px;
  padding-top: 8px;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--bh-black);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.intake-input:focus {
  border-color: var(--bh-orange);
}

.intake-input::placeholder {
  color: var(--bh-steel);
}

.intake-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(188, 191, 204, 0.6);
  padding-bottom: 8px;
  padding-top: 8px;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--bh-black);
  font-family: inherit;
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s;
}

.intake-textarea:focus {
  border-color: var(--bh-orange);
}

.intake-textarea::placeholder {
  color: var(--bh-steel);
}

/* Audience selector */
.intake-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 1024px) {
  .intake-audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.intake-audience-btn {
  text-align: left;
  padding: 14px;
  border: 1px solid rgba(188, 191, 204, 0.6);
  border-radius: 6px;
  background: var(--bh-white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.intake-audience-btn:hover {
  border-color: var(--bh-graphite);
}

.intake-audience-btn.active {
  border-color: var(--bh-orange);
  background: var(--bh-orange-50);
}

.intake-audience-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(188, 191, 204, 0.8);
  margin-right: 8px;
  vertical-align: middle;
  transition: background 0.2s, border-color 0.2s;
}

.intake-audience-btn.active .intake-audience-check {
  background: var(--bh-orange);
  border-color: var(--bh-orange);
}

.intake-audience-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--bh-black);
}

.intake-audience-note {
  display: block;
  margin-top: 4px;
  margin-left: 24px;
  font-size: 12px;
  color: var(--bh-graphite);
  line-height: 1.35;
}

/* Custom select */
.intake-select-wrap {
  position: relative;
}

.intake-select-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  border-bottom: 1px solid rgba(188, 191, 204, 0.6);
  padding: 8px 0;
  text-align: left;
  font-size: 16px;
  letter-spacing: -0.005em;
  font-family: inherit;
  cursor: pointer;
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
}

.intake-select-btn:focus {
  border-color: var(--bh-orange);
}

.intake-select-btn.placeholder-text {
  color: var(--bh-steel);
}

.intake-select-btn.selected-text {
  color: var(--bh-black);
}

.intake-select-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--bh-graphite);
}

.intake-select-btn.open svg {
  transform: rotate(180deg);
}

.intake-dropdown {
  display: none;
  position: absolute;
  z-index: 50;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: var(--bh-ink);
  border: 1px solid rgba(188, 191, 204, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.intake-dropdown.open {
  display: block;
}

.intake-dropdown button {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--bh-paper);
  font-family: inherit;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: background 0.15s, color 0.15s;
}

.intake-dropdown button:hover {
  background: var(--bh-orange);
  color: #fff;
}

.intake-dropdown button.selected {
  background: rgba(222, 81, 35, 0.2);
  color: var(--bh-orange);
  font-weight: 500;
}

/* File upload */
.intake-drop-zone {
  margin-top: 12px;
  border: 2px dashed rgba(188, 191, 204, 0.6);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.intake-drop-zone:hover,
.intake-drop-zone.drag-over {
  border-color: var(--bh-orange);
  background: rgba(222, 81, 35, 0.03);
}

.intake-drop-zone p {
  font-size: 15px;
  color: var(--bh-black);
}

.intake-drop-zone small {
  margin-top: 8px;
  display: block;
  font-size: 12px;
  color: var(--bh-graphite);
  line-height: 1.5;
}

.intake-file-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.intake-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(188, 191, 204, 0.6);
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--bh-black);
}

.intake-file-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #dc2626;
  font-size: 16px;
  line-height: 1;
  transition: color 0.2s;
  padding: 0 4px;
}

.intake-file-remove:hover {
  color: #991b1b;
}

.intake-file-count {
  font-size: 12px;
  color: var(--bh-graphite);
  margin-top: 8px;
}

/* Submit row */
.intake-submit-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 28px;
  background: var(--bh-white);
}

@media (min-width: 640px) {
  .intake-submit-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.intake-consent {
  font-size: 12px;
  color: var(--bh-graphite);
  letter-spacing: -0.005em;
  max-width: 400px;
  line-height: 1.5;
}

.intake-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 48px;
  padding-left: 24px;
  padding-right: 8px;
  border-radius: 8px;
  background: var(--bh-orange);
  color: var(--bh-paper);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background 0.25s;
  white-space: nowrap;
}

.intake-submit-btn:hover {
  background: var(--bh-orange-700);
}

.intake-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.intake-submit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.intake-form-error {
  grid-column: 1/-1;
  background: var(--bh-white);
  border-top: 2px solid #dc2626;
  padding: 20px 24px;
  font-size: 14px;
  color: #b91c1c;
}

.intake-phone-error {
  padding: 0 24px 16px;
  font-size: 14px;
  color: #dc2626;
  background: var(--bh-white);
}

.intake-success {
  border: 1px solid rgba(222, 81, 35, 0.4);
  background: var(--bh-orange-50);
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.intake-success-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(222, 81, 35, 0.15);
  align-items: center;
  justify-content: center;
}

.intake-success-title {
  font-size: clamp(28px, 2vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--bh-black);
}

.intake-success-body {
  font-size: 17px;
  line-height: 1.5;
  color: var(--bh-graphite);
  max-width: 560px;
}

.intake-success-body a {
  color: var(--bh-orange);
}

.intake-success-reset {
  font-size: 13px;
  color: var(--bh-graphite);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.intake-success-reset:hover {
  color: var(--bh-black);
}

/* ── CTA FOOTER / ENGAGE ─────────────────────────────────────── */
#section-contact {
  position: relative;
  overflow: hidden;
  background: var(--bh-ink);
  color: var(--bh-paper);
}

.cta-sweep {
  pointer-events: none;
  position: absolute;
  left: -25%;
  right: -25%;
  top: -50%;
  height: 200%;
  transform-origin: left;
  transform: rotate(-12deg);
  opacity: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(222, 81, 35, 0) 30%, rgba(222, 81, 35, 0.18) 50%, rgba(222, 81, 35, 0) 70%, transparent 100%);
}

.cta-sweep.bh-sweep-on {
  animation: bh-sweep 2.6s var(--ease) forwards;
}

.cta-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: linear-gradient(to right, #fff 1px, transparent 1px), linear-gradient(to bottom, #fff 1px, transparent 1px);
  background-size: 80px 80px;
}

.cta-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px var(--px);
}

@media (min-width: 768px) {
  .cta-inner {
    padding: 144px var(--px);
  }
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .cta-grid {
    gap: 32px;
  }
}

.cta-label-col {
  grid-column: 1/-1;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(188, 191, 204, 0.7);
}

.cta-main-col {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .cta-label-col {
    grid-column: 1/4;
  }

  .cta-main-col {
    grid-column: 4/13;
  }
}

.cta-heading {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-size: clamp(36px, 7vw, 112px);
}

.cta-heading .accent {
  color: var(--bh-orange);
}

.cta-sub {
  margin-top: 24px;
  max-width: 640px;
  color: var(--bh-steel);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .cta-sub {
    margin-top: 32px;
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .cta-heading {
    font-size: 32px;
  }
}

.cta-btns {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .cta-btns {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .cta-btns {
    margin-top: 40px;
  }
}

/* Contact panel */
.cta-contact-panel {
  margin-top: 64px;
  border: 1px solid rgba(222, 81, 35, 0.4);
  background: rgba(154, 42, 6, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-contact-panel {
    margin-top: 80px;
  }
}

.cta-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .cta-contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(222, 81, 35, 0.25);
  transition: background 0.2s;
}

.cta-contact-item:hover {
  background: rgba(154, 42, 6, 0.25);
}

@media (min-width: 768px) {
  .cta-contact-item {
    border-bottom: none;
    border-right: 1px solid rgba(222, 81, 35, 0.25);
  }

  .cta-contact-item:last-child {
    border-right: none;
  }
}

.cta-contact-icon {
  margin-top: 4px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(222, 81, 35, 0.15);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-contact-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(188, 191, 204, 0.8);
}

.cta-contact-value {
  margin-top: 4px;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--bh-paper);
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .cta-contact-value {
    font-size: 20px;
  }
}

.cta-contact-item:hover .cta-contact-value {
  color: var(--bh-orange);
}

/* Footer */
.cta-footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(110, 113, 128, 0.4);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .cta-footer {
    margin-top: 112px;
  }
}

.cta-footer-brand {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .cta-footer-brand {
    grid-column: 1/6;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-emblem {
  width: 32px;
  height: 32px;
}

.footer-logo-emblem img {
  width: 100%;
  height: 100%;
}

.footer-logo-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--bh-paper);
}

.cta-footer-tagline {
  font-size: 13px;
  color: rgba(188, 191, 204, 0.7);
  line-height: 1.55;
  letter-spacing: -0.005em;
  max-width: 320px;
  margin-top: 20px;
}

.cta-footer-nav-group {
  grid-column: span 6;
}

@media (min-width: 768px) {
  .cta-footer-nav-group {
    grid-column: span 2;
  }
}

.cta-footer-nav-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(188, 191, 204, 0.7);
  margin-bottom: 16px;
}

.cta-footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-footer-nav a {
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--bh-paper);
  transition: color 0.2s;
}

.cta-footer-nav a:hover {
  color: var(--bh-orange);
}

.cta-footer-bottom {
  grid-column: 1/-1;
  padding-top: 32px;
  border-top: 1px solid rgba(110, 113, 128, 0.4);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  letter-spacing: -0.005em;
  color: rgba(188, 191, 204, 0.7);
}

@media (min-width: 768px) {
  .cta-footer-bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.cta-footer-bottom a:hover {
  color: var(--bh-paper);
}

.cta-orange-band {
  position: relative;
  height: 12px;
  background: var(--bh-orange);
}

@media (min-width: 768px) {
  .cta-orange-band {
    height: 16px;
  }
}

/* ── Count-up ────────────────────────────────────────────────── */
.count-up {
  font-variant-numeric: tabular-nums;
}

/* ── Misc ─────────────────────────────────────────────────────── */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

body.overflow-hidden {
  overflow: hidden;
}

/* Section inner wrapper */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

/* ── Admin Views (keep existing) ─────────────────────────────── */
/* FAQ, Articles, Admin, Partners detail pages inherit this file */
.bh-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.bh-fade-up.visible {
  opacity: 1;
  transform: none;
}

/* Disclosure (pricing accordion native fallback) */
@media (prefers-reduced-motion: no-preference) {
  .bh-disclosure {
    interpolate-size: allow-keywords;
  }

  .bh-disclosure::details-content {
    block-size: 0;
    overflow: clip;
    opacity: 0;
    transition: block-size 340ms var(--ease), opacity 220ms ease;
  }

  .bh-disclosure[open]::details-content {
    block-size: auto;
    opacity: 1;
  }
}

/* ── PARTNERS PAGE ───────────────────────────────────────────── */
.partners-page-header {
  position: relative;
  padding-top: clamp(100px, 12vw, 176px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid rgba(188, 191, 204, 0.4);
}

.partners-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  transition: color 0.2s;
}

.partners-back-link:hover {
  color: var(--bh-orange);
}

.partners-title-large {
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--bh-black);
  font-weight: 500;
}

.partners-title-large .accent {
  color: var(--bh-orange);
}

.partners-intro-sub {
  margin-top: 24px;
  max-width: 640px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--bh-graphite);
}

.cs-card {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(188, 191, 204, 0.4);
  background: var(--bh-cloud);
  overflow: hidden;
  transition: border-color 0.2s;
}

@media (min-width: 768px) {
  .cs-card {
    grid-template-columns: 5fr 7fr;
  }
}

.cs-card:hover {
  border-color: rgba(222, 81, 35, 0.6);
}

.cs-logo-box {
  position: relative;
  background: var(--bh-paper);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border-bottom: 1px solid rgba(188, 191, 204, 0.4);
}

@media (min-width: 768px) {
  .cs-logo-box {
    min-height: 420px;
    padding: 48px;
    border-bottom: none;
    border-right: 1px solid rgba(188, 191, 204, 0.4);
  }
}

.cs-badge-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
}

.cs-badge-cat span {
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--bh-orange);
}

.cs-logo-img {
  max-width: 80%;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .cs-logo-img {
    max-height: 200px;
  }
}

.cs-content-box {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .cs-content-box {
    padding: 48px;
  }
}

.cs-headline {
  font-size: clamp(28px, 2.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--bh-black);
  font-weight: 500;
}

.cs-blurb {
  margin-top: 20px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
  max-width: 560px;
}

.cs-metrics {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 480px;
}

.cs-metric-k {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 6px;
}

.cs-metric-v {
  font-size: clamp(14px, 1.2vw, 16px);
  letter-spacing: -0.005em;
  color: var(--bh-black);
}

.cs-owners-wrap {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(188, 191, 204, 0.4);
}

.cs-owner-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cs-owner-avatar {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(188, 191, 204, 0.6);
  background: var(--bh-cloud);
  flex-shrink: 0;
}

.cs-owner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-visit-link {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--bh-black);
  transition: color 0.2s;
}

.cs-card:hover .cs-visit-link {
  color: var(--bh-orange);
}

.cs-visit-link .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transition: background 0.2s;
}

.cs-card:hover .cs-visit-link .icon-circle {
  background: rgba(222, 81, 35, 0.15);
}

.coaching-photo-box {
  position: relative;
  background: var(--bh-paper);
  min-height: 260px;
  border-bottom: 1px solid rgba(188, 191, 204, 0.4);
}

@media (min-width: 768px) {
  .coaching-photo-box {
    min-height: 440px;
    border-bottom: none;
    border-right: 1px solid rgba(188, 191, 204, 0.4);
  }
}

.coaching-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coaching-tag-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-paper);
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
}

.coaching-tag-overlay span {
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--bh-orange);
}

.vendor-strip-card {
  background: var(--bh-white);
  border: 1px solid rgba(188, 191, 204, 0.4);
  padding: 24px;
  transition: border-color 0.2s;
  display: block;
}

@media (min-width: 768px) {
  .vendor-strip-card {
    padding: 40px;
  }
}

.vendor-strip-card:hover {
  border-color: rgba(222, 81, 35, 0.6);
}

.vendor-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(188, 191, 204, 0.4);
  border: 1px solid rgba(188, 191, 204, 0.4);
}

.vendor-logo-item {
  background: var(--bh-paper);
  aspect-ratio: 5/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vendor-logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.accred-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(188, 191, 204, 0.4);
  border: 1px solid rgba(188, 191, 204, 0.4);
  margin-top: 40px;
}

@media (min-width: 640px) {
  .accred-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .accred-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.accred-item {
  background: var(--bh-white);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}

.accred-item-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-orange);
  margin-bottom: 12px;
}

.accred-item-tag span {
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--bh-orange);
}

/* ── ARTICLES PAGE ───────────────────────────────────────────── */
.articles-page-header {
  position: relative;
  padding-top: clamp(100px, 12vw, 176px);
  padding-bottom: clamp(32px, 4vw, 64px);
}

.articles-title-large {
  font-size: clamp(44px, 5.5vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--bh-black);
  font-weight: 500;
}

.articles-title-large .muted {
  color: var(--bh-graphite);
}

.articles-meta-pills {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.articles-meta-pills .sep {
  width: 1px;
  height: 12px;
  background: var(--bh-steel);
}

.articles-jump-bar {
  border-top: 1px solid rgba(188, 191, 204, 0.6);
  border-bottom: 1px solid rgba(188, 191, 204, 0.6);
  padding: 16px 0;
  margin-bottom: 40px;
}

.articles-jump-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 32px;
}

.articles-jump-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.articles-jump-link {
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--bh-black);
  transition: color 0.2s;
}

.articles-jump-link:hover {
  color: var(--bh-orange);
}

.articles-jump-count {
  margin-left: 6px;
  color: var(--bh-graphite);
}

.articles-series-section {
  padding-top: 32px;
  padding-bottom: 64px;
  scroll-margin-top: 120px;
}

.articles-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 24px;
}

@media (min-width: 640px) {
  .articles-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .articles-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card-v2 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card-v2-figure {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bh-cloud);
  margin-bottom: 20px;
}

.article-card-v2-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.article-card-v2:hover .article-card-v2-figure img {
  transform: scale(1.03);
}

.article-card-v2-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 10px;
}

.article-card-v2-cat {
  color: var(--bh-orange);
}

.article-card-v2-title {
  font-size: clamp(19px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--bh-black);
  transition: color 0.2s;
}

.article-card-v2:hover .article-card-v2-title {
  color: var(--bh-orange);
}

.article-card-v2-excerpt {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-v2-author {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
}

.article-card-v2-author strong {
  color: var(--bh-black);
  font-weight: 500;
}

/* Single Article Detail */
.article-detail-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.article-detail-header {
  padding-top: clamp(100px, 12vw, 176px);
  padding-bottom: 48px;
}

.article-detail-title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--bh-black);
}

.article-detail-dek {
  margin-top: 24px;
  font-size: clamp(18px, 1.6vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
}

.article-author-bar {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(188, 191, 204, 0.6);
  display: flex;
  align-items: center;
  gap: 16px;
}

.article-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bh-cloud);
  border: 1px solid rgba(188, 191, 204, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.article-author-avatar img {
  width: 28px;
  height: 22px;
}

.article-cover-figure {
  max-width: 1280px;
  margin: 0 auto 48px;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bh-cloud);
}

.article-cover-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-rich-body {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  color: var(--bh-black);
  letter-spacing: -0.005em;
}

.article-rich-body p {
  margin-bottom: 24px;
}

.article-rich-body h2 {
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--bh-black);
  margin-top: 48px;
  margin-bottom: 20px;
}

.article-rich-body h3 {
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--bh-black);
  margin-top: 36px;
  margin-bottom: 16px;
}

.article-rich-body blockquote {
  margin: 40px 0;
  padding-left: 24px;
  border-left: 3px solid var(--bh-orange);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: var(--bh-black);
  font-style: italic;
}

.article-rich-body hr {
  border: none;
  border-top: 1px solid rgba(188, 191, 204, 0.4);
  margin: 48px 0;
}

/* ── FAQ PAGE ───────────────────────────────────────────────── */
.faq-page-header {
  position: relative;
  padding-top: clamp(100px, 12vw, 176px);
  padding-bottom: clamp(32px, 4vw, 64px);
}

.faq-title-large {
  font-size: 52px;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--bh-black);
  font-weight: 500;
}

.faq-title-large .muted {
  color: var(--bh-graphite);
}

.faq-details-v2 {
  border-bottom: 1px solid rgba(188, 191, 204, 0.6);
  padding: 24px 0;
}

.faq-details-v2 summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
}

.faq-details-v2 summary::-webkit-details-marker {
  display: none;
}

.faq-details-v2-q {
  font-size: clamp(19px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--bh-black);
  transition: color 0.2s;
}

.faq-details-v2 summary:hover .faq-details-v2-q,
.faq-details-v2[open] .faq-details-v2-q {
  color: var(--bh-orange);
}

.faq-details-v2-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(188, 191, 204, 0.6);
  color: var(--bh-graphite);
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, transform 0.3s;
}

.faq-details-v2 summary:hover .faq-details-v2-toggle,
.faq-details-v2[open] .faq-details-v2-toggle {
  border-color: var(--bh-orange);
  color: var(--bh-orange);
}

.faq-details-v2[open] .faq-details-v2-toggle {
  transform: rotate(45deg);
}

.faq-details-v2-a {
  padding-top: 20px;
  max-width: 680px;
  font-size: clamp(15px, 1.2vw, 16px);
  line-height: 1.65;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
}

.faq-details-v2-a p {
  margin-bottom: 12px;
}

.faq-details-v2-a p:last-child {
  margin-bottom: 0;
}

.faq-details-v2-a ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.faq-details-v2-a ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.faq-details-v2-a li {
  margin-bottom: 0.35rem;
}

.faq-details-v2-a a {
  color: var(--bh-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-details-v2-a a:hover {
  color: var(--bh-orange-700);
}

.faq-details-v2-a strong,
.faq-details-v2-a b {
  font-weight: 600;
  color: var(--bh-black);
}

/* ── 404 NOT FOUND PAGE STYLES ────────────────────────────── */
.nf-hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--bh-white);
  color: var(--bh-black);
}

@media (min-width: 768px) {
  .nf-hero {
    padding-top: 160px;
    padding-bottom: 112px;
  }
}

.nf-badge-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  font-weight: 500;
}

.nf-badge-line span.line {
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--bh-orange);
}

.nf-big-number {
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--bh-orange);
  font-size: clamp(88px, 14vw, 200px);
  font-variant-numeric: tabular-nums;
}

.nf-title {
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(32px, 4.5vw, 72px);
  color: var(--bh-black);
}

.nf-title .muted {
  color: var(--bh-graphite);
}

.nf-intro {
  margin-top: 24px;
  max-width: 672px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
}

.nf-links-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(188, 191, 204, 0.4);
  border: 1px solid rgba(188, 191, 204, 0.4);
}

@media (min-width: 640px) {
  .nf-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .nf-links-grid {
    margin-top: 64px;
    grid-template-columns: repeat(4, 1fr);
  }
}

.nf-card-item {
  background: var(--bh-white);
  height: 100%;
  list-style: none;
}

.nf-card-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  height: 100%;
  transition: background 0.2s ease;
}

@media (min-width: 768px) {
  .nf-card-link {
    padding: 28px;
  }
}

.nf-card-link:hover {
  background: var(--bh-cloud);
}

.nf-card-try {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.nf-card-label-row {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: clamp(18px, 1.8vw, 20px);
  letter-spacing: -0.01em;
  color: var(--bh-black);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nf-card-link:hover .nf-card-label-row {
  color: var(--bh-orange);
}

.nf-card-note {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
}

/* ── LEGAL PAGE STYLES ────────────────────────────────────── */
.legal-article {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 120px;
  padding-bottom: 96px;
}

@media (min-width: 768px) {
  .legal-article {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 160px;
    padding-bottom: 128px;
  }
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(188, 191, 204, 0.6);
}

@media (min-width: 768px) {
  .legal-header {
    margin-bottom: 64px;
  }
}

.legal-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  margin-bottom: 16px;
  font-weight: 500;
}

.legal-title {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--bh-black);
}

.legal-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 8px;
  font-size: 12px;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
}

.legal-meta span {
  color: var(--bh-black);
}

.prose-bh {
  color: var(--bh-black);
  font-size: 15px;
  line-height: 1.7;
}

.prose-bh h2 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--bh-black);
  margin-top: 40px;
  margin-bottom: 16px;
}

.prose-bh h3 {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--bh-black);
  margin-top: 28px;
  margin-bottom: 12px;
}

.prose-bh p {
  margin-bottom: 16px;
  color: var(--bh-graphite);
}

.prose-bh strong {
  color: var(--bh-black);
  font-weight: 600;
}

.prose-bh ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 12px;
  margin-bottom: 20px;
}

.prose-bh ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-top: 12px;
  margin-bottom: 20px;
}

.prose-bh li {
  margin-bottom: 8px;
  color: var(--bh-graphite);
}

.prose-bh table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  margin-bottom: 32px;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  overflow-x: auto;
  display: block;
}

@media (min-width: 640px) {
  .prose-bh table {
    display: table;
  }
}

.prose-bh th {
  background: var(--bh-cloud);
  color: var(--bh-black);
  font-weight: 600;
  padding: 12px 14px;
  border-bottom: 2px solid rgba(188, 191, 204, 0.6);
}

.prose-bh td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(188, 191, 204, 0.4);
  color: var(--bh-graphite);
  vertical-align: top;
}

.prose-bh tr:hover td {
  background: var(--bh-cloud);
}

.legal-footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(188, 191, 204, 0.6);
}

.legal-footer-contact {
  font-size: 12px;
  letter-spacing: -0.005em;
  color: var(--bh-graphite);
}

.legal-footer-contact a {
  color: var(--bh-orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-footer-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 8px;
  font-size: 12px;
  letter-spacing: -0.005em;
}

.legal-footer-links a {
  color: var(--bh-graphite);
  transition: color 0.2s ease;
}

.legal-footer-links a:hover {
  color: var(--bh-black);
}

.legal-footer-sep {
  color: var(--bh-steel);
}




@media (max-width: 767px) {
  .faq-title-large {
    font-size: 32px;
  }
}

/* ── HOW IT WORKS (3D BUILD SEQUENCE) ────────────────────────── */
.how-section {
  position: relative;
  height: 300vh;
  width: 100%;
}

.how-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--bh-black);
  color: var(--bh-paper);
}

.how-canvas {
  position: absolute;
  inset: 0;
  width: 50%;
  height: 50%;
  pointer-events: none;
  z-index: 1;
  top: 30%;
  left: 38%;
}

.how-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(40px, 6vw, 80px);
}

.how-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-steel);
}

.how-heading {
  margin-top: 16px;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  max-width: 100%;
  color: var(--bh-paper);
}

.how-heading .muted {
  color: var(--bh-steel);
}

.how-timeline {
  margin-top: auto;
  padding-bottom: 24px;
}

.how-track {
  position: relative;
  height: 1px;
  width: 100%;
  background: rgba(110, 113, 128, 0.4);
}

.how-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  background: var(--bh-orange);
  width: 0%;
  transition: width 0.1s linear;
}

.how-stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-graphite);
}

.how-stage {
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.how-stage.active {
  color: var(--bh-paper);
}

.how-stage-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bh-graphite);
  margin-right: 8px;
  flex-shrink: 0;
  transition: background-color 0.3s;
}

.how-stage.active .how-stage-dot {
  background: var(--bh-orange);
}

@media (max-width: 767px) {
  .how-heading {
    font-size: 32px;
  }

  .how-canvas {
    height: 200px;
    width: 90%;
    left: 0;
    right: 0;
    margin: auto;
    top: 25%;
  }

  .how-stages {
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* ── CAPABILITY COMPARISON TABLE ───────────────────────────── */
.capability-table-heading {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--bh-black);
  font-size: 30px;
}


.capability-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 20px;
  border-radius: 4px;
}

.capability-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  min-width: 680px;
}

.capability-table th,
.capability-table td {
  padding: 18px 24px;
  vertical-align: middle;
}

/* Header styling */
.capability-table th {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.capability-table th.col-cap {
  background: var(--bh-black);
  color: var(--bh-paper);
  text-align: left;
  border-bottom: 1px solid #e2e4e9;
  width: 38%;
}

.capability-table th.col-internal {
  background: #ffffff;
  color: #111111;
  text-align: center;
  width: 31%;
  border-bottom: 1px solid #e2e4e9;
  border-right: 1px solid #e2e4e9;
}

.capability-table th.col-hawktress {
  background: var(--bh-orange);
  color: #ffffff;
  text-align: center;
  border-bottom: 1px solid #e2e4e9;
  width: 31%;
  font-size: 18px;
}

/* Body styling */
.capability-table td.col-cap {
  background: var(--bh-black);
  color: var(--bh-paper);
  font-weight: 500;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.capability-table td.col-internal {
  background: #ffffff;
  color: #111111;
  text-align: center;
  font-size: 16px;
  border-bottom: 1px solid #e2e4e9;
  border-right: 1px solid #e2e4e9;
}

.capability-table td.col-hawktress {
  background: var(--bh-orange);
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.capability-subtext {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.92;
  margin-top: 4px;
}

.col-check {
  font-size: 18px;
  font-weight: bold;
}

.col-cross {
  font-size: 18px;
  font-style: italic;
  font-family: serif;
}

.col-dash {
  font-size: 18px;
  opacity: 0.7;
}

.investment-table-header {
  margin-top: 30px;
}

.investment-table-heading {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--bh-black);
  font-size: 30px;
}

/* ── PRICING PLAN COMPARISON TABLE ───────────────────────── */
.pricing-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 24px;
  margin-bottom: 32px;
  border-radius: 4px;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  min-width: 680px;
}

.pricing-table th,
.pricing-table td {
  padding: 20px 24px;
  vertical-align: middle;
}

/* Header styling */
.pricing-table th.col-plan-head {
  background: var(--bh-black);
  color: var(--bh-paper);
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  width: 22%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-table th.col-orange-head {
  background: var(--bh-orange);
  color: #ffffff;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  width: 26%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.pricing-table th.col-orange-head:last-child {
  border-right: none;
}

/* Body styling */
.pricing-table td.col-plan-name {
  background: var(--bh-black);
  color: var(--bh-paper);
  font-weight: 600;
  font-size: 17px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-table td.col-orange-cell {
  background: var(--bh-orange);
  color: #ffffff;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.pricing-table td.col-orange-cell:last-child {
  border-right: none;
}

/* ── GRID SPAN UTILITIES ─────────────────────────────────── */
.col-span-12 {
  grid-column: span 12 / span 12;
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-3 {
  grid-column: span 3 / span 3;
}

.col-span-4 {
  grid-column: span 4 / span 4;
}

.col-span-5 {
  grid-column: span 5 / span 5;
}

.col-span-6 {
  grid-column: span 6 / span 6;
}

.col-span-7 {
  grid-column: span 7 / span 7;
}

.col-span-8 {
  grid-column: span 8 / span 8;
}

.col-span-9 {
  grid-column: span 9 / span 9;
}

.col-span-10 {
  grid-column: span 10 / span 10;
}

.col-span-11 {
  grid-column: span 11 / span 11;
}

@media (min-width: 768px) {
  .md\:mb-14 {
    margin-bottom: calc(var(--spacing) * 14);
  }

  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .md\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .md\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .md\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .md\:col-span-9 {
    grid-column: span 9 / span 9;
  }

  .md\:col-span-10 {
    grid-column: span 10 / span 10;
  }

  .md\:col-span-11 {
    grid-column: span 11 / span 11;
  }

  .md\:col-span-12 {
    grid-column: span 12 / span 12;
  }

  .md\:justify-end {
    justify-content: flex-end;
  }
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── PEACE OF MIND PAGE STYLES ───────────────────────────── */
.pom-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: var(--bh-white);
  color: var(--bh-black);
}

@media (min-width: 768px) {
  .pom-hero {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}

.pom-hero-badge-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  font-weight: 500;
}

.pom-hero-badge-line span.line {
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--bh-orange);
}

.pom-meta-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 20px;
}

.pom-meta-tags .tag-highlight {
  color: var(--bh-orange);
  font-weight: 500;
}

.pom-meta-tags .tag-divider {
  width: 1px;
  height: 12px;
  background: var(--bh-steel);
  display: inline-block;
}

.pom-hero-title {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  font-size: clamp(32px, 4.5vw, 64px);
  color: var(--bh-black);
}

.pom-hero-title .highlight {
  color: var(--bh-orange);
}

.pom-hero-intro {
  margin-top: 24px;
  max-width: 672px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.5;
  color: var(--bh-graphite);
}

.pom-hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.pom-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--bh-ink);
  color: var(--bh-paper);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.pom-btn-primary:hover {
  background: var(--bh-orange);
}

.pom-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid rgba(188, 191, 204, 0.6);
  color: var(--bh-black);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.pom-btn-secondary:hover {
  border-color: var(--bh-orange);
  color: var(--bh-orange);
}

/* Problem section */
.pom-problem-card {
  border-radius: 4px;
  border-left: 6px solid var(--bh-orange);
  background: var(--bh-cloud);
  padding: 24px;
}

@media (min-width: 768px) {
  .pom-problem-card {
    padding: 40px;
  }
}

.pom-problem-title {
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
  color: var(--bh-black);
}

.pom-problem-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 32px;
}

@media (min-width: 640px) {
  .pom-problem-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pom-problem-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--bh-graphite);
}

.pom-problem-item .dot {
  margin-top: 7px;
  width: 6px;
  height: 6px;
  flex: none;
  background: var(--bh-orange);
}

/* Coverage Grid */
.pom-coverage-card {
  border-radius: 10px;
  border: 1px solid rgba(188, 191, 204, 0.6);
  padding: 24px;
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.pom-coverage-card:hover {
  border-color: rgba(110, 113, 128, 0.6);
}

.pom-coverage-num {
  font-weight: 500;
  color: var(--bh-orange);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.pom-coverage-title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--bh-black);
}

.pom-coverage-body {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--bh-graphite);
}

/* Steps list */
.pom-price-val {
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 0.95;
  color: var(--bh-black);
  font-variant-numeric: tabular-nums;
}

.pom-price-unit {
  font-size: 18px;
  font-weight: 500;
  color: var(--bh-orange);
  margin-left: 8px;
}

.pom-btn-orange {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 8px;
  padding-left: 20px;
  padding-right: 8px;
  height: 48px;
  font-size: 14px;
  font-weight: 500;
  background: var(--bh-orange);
  color: var(--bh-paper);
  transition: background 0.2s ease;
}

.pom-btn-orange:hover {
  background: var(--bh-orange-700);
}

.pom-btn-orange .circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
}

.pom-steps-list {
  border-top: 1px solid rgba(188, 191, 204, 0.6);
}

.pom-step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(188, 191, 204, 0.6);
}

.pom-step-num {
  font-weight: 500;
  color: var(--bh-orange);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  width: 24px;
  flex: none;
}

.pom-step-text {
  font-size: 16px;
  line-height: 1.4;
  color: var(--bh-black);
}

/* Quote option radio labels */
.pom-quote-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid rgba(188, 191, 204, 0.6);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #ffffff;
  color: var(--bh-black);
}

.pom-quote-option.active,
.pom-quote-option:has(input:checked) {
  background: var(--bh-ink);
  color: var(--bh-paper);
  border-color: var(--bh-ink);
}

/* Input elements */
.pom-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(188, 191, 204, 0.6);
  background: #ffffff;
  font-size: 15px;
  color: var(--bh-black);
  transition: border-color 0.2s ease;
}

.pom-input::placeholder {
  color: rgba(110, 113, 128, 0.6);
}

.pom-input:focus {
  outline: none;
  border-color: var(--bh-orange);
  box-shadow: 0 0 0 1px var(--bh-orange);
}

.pom-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(188, 191, 204, 0.6);
  background: #ffffff;
  font-size: 15px;
  color: var(--bh-black);
  resize: vertical;
  transition: border-color 0.2s ease;
}

.pom-textarea::placeholder {
  color: rgba(110, 113, 128, 0.6);
}

.pom-textarea:focus {
  outline: none;
  border-color: var(--bh-orange);
  box-shadow: 0 0 0 1px var(--bh-orange);
}

/* Final CTA Section */
.pom-final-cta {
  padding: 80px 0;
  background: var(--bh-ink);
  color: var(--bh-paper);
}

@media (min-width: 768px) {
  .pom-final-cta {
    padding: 112px 0;
  }
}

.pom-final-cta-title {
  font-weight: 500;
  letter-spacing: -0.025em;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.03;
}

.pom-final-cta-title .highlight {
  color: var(--bh-orange);
}

/* ── TAILWIND UTILITY COMPATIBILITY MODULE ───────────────── */
/* Color utilities */
.text-bh-orange {
  color: var(--bh-orange);
}

.text-bh-black {
  color: var(--bh-black);
}

.text-bh-graphite {
  color: var(--bh-graphite);
}

.text-bh-paper {
  color: var(--bh-paper);
}

.text-bh-steel {
  color: var(--bh-steel);
}

.text-bh-steel\/70 {
  color: rgba(188, 191, 204, 0.7);
}

.text-bh-steel\/80 {
  color: rgba(188, 191, 204, 0.8);
}

.text-bh-steel\/40 {
  color: rgba(188, 191, 204, 0.4);
}

.text-bh-graphite\/60 {
  color: rgba(110, 113, 128, 0.6);
}

.bg-bh-white {
  background-color: var(--bh-white);
}

.bg-bh-cloud {
  background-color: var(--bh-cloud);
}

.bg-bh-ink {
  background-color: var(--bh-ink);
}

.bg-bh-orange {
  background-color: var(--bh-orange);
}

.bg-bh-paper {
  background-color: var(--bh-paper);
}

.bg-bh-paper\/20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-bh-steel {
  background-color: var(--bh-steel);
}

.bg-white {
  background-color: #ffffff;
}

.border-bh-orange {
  border-color: var(--bh-orange);
}

.border-bh-steel\/40 {
  border-color: rgba(188, 191, 204, 0.4);
}

.border-bh-steel\/60 {
  border-color: rgba(188, 191, 204, 0.6);
}

.border-bh-paper\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.border-bh-graphite\/60 {
  border-color: rgba(110, 113, 128, 0.6);
}

/* Spacing & Layout */
.pt-32 {
  padding-top: 8rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-12 {
  padding-top: 3rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.scroll-mt-24 {
  scroll-margin-top: 6rem;
}

@media (min-width: 768px) {
  .md\:pt-44 {
    padding-top: 11rem;
  }

  .md\:pb-16 {
    padding-bottom: 4rem;
  }

  .md\:pb-20 {
    padding-bottom: 5rem;
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:gap-5 {
    gap: 1.25rem;
  }

  .md\:gap-8 {
    gap: 2rem;
  }

  .md\:gap-12 {
    gap: 3rem;
  }

  .md\:text-\[40px\] {
    font-size: 40px;
  }

  .md\:text-\[60px\] {
    font-size: 60px;
  }

  .md\:text-\[76px\] {
    font-size: 76px;
  }

  .md\:text-\[56px\] {
    font-size: 56px;
  }

  .md\:text-\[34px\] {
    font-size: 34px;
  }

  .sm\:text-\[32px\] {
    font-size: 32px;
  }

  .md\:text-\[18px\] {
    font-size: 18px;
  }

  .md\:text-\[19px\] {
    font-size: 19px;
  }

  .md\:text-\[16px\] {
    font-size: 16px;
  }
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.gap-0 {
  gap: 0;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-2\.5 {
  gap: 0.625rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-x-3 {
  column-gap: 0.75rem;
}

.gap-x-8 {
  column-gap: 2rem;
}

.gap-y-2 {
  row-gap: 0.5rem;
}

.gap-y-3 {
  row-gap: 0.75rem;
}

.space-y-3>*+* {
  margin-top: 0.75rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.w-full {
  width: 100%;
}

.h-12 {
  height: 3rem;
}

.h-px {
  height: 1px;
}

.w-3 {
  width: 0.75rem;
}

.w-px {
  width: 1px;
}

.h-3 {
  height: 0.75rem;
}

.w-1\.5 {
  width: 0.375rem;
}

.h-1\.5 {
  height: 0.375rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.h-8 {
  height: 2rem;
}

.hover\:border-bh-graphite\/60:hover {
  border-color: rgba(110, 113, 128, 0.6);
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* ── COMMERCIAL SUPPORT PAGE STYLES ───────────────────────── */
.cs-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: var(--bh-white);
  color: var(--bh-black);
}

@media (min-width: 768px) {
  .cs-hero {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}

.cs-hero-badge-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  font-weight: 500;
}

.cs-hero-badge-line span.line {
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--bh-orange);
}

.cs-hero-title {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  font-size: clamp(36px, 5vw, 76px);
  color: var(--bh-black);
}

.cs-hero-title .highlight {
  color: var(--bh-orange);
}

.cs-hero-intro {
  margin-top: 24px;
  max-width: 672px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.5;
  color: var(--bh-graphite);
}

.cs-hero-tags {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.cs-hero-tag-link {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid rgba(188, 191, 204, 0.6);
  color: var(--bh-black);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.cs-hero-tag-link:hover {
  border-color: var(--bh-orange);
  color: var(--bh-orange);
}

/* Pricing Grid */
.cs-pricing-section {
  padding: 48px 0 80px;
  border-top: 1px solid rgba(188, 191, 204, 0.4);
  border-bottom: 1px solid rgba(188, 191, 204, 0.4);
  background: var(--bh-white);
}

.cs-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .cs-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.cs-tier-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 14px;
  padding: 28px;
  background: var(--bh-cloud);
  border: 1px solid rgba(188, 191, 204, 0.6);
}

@media (min-width: 768px) {
  .cs-tier-card {
    padding: 32px;
  }
}

.cs-tier-card.featured {
  background: var(--bh-ink);
  color: var(--bh-paper);
  border: none;
}

@media (min-width: 992px) {
  .cs-tier-card.featured {
    transform: translateY(-16px);
  }
}

.cs-tier-idx {
  font-family: monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--bh-orange);
}

.cs-tier-name {
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.cs-tier-card.featured .cs-tier-name {
  color: var(--bh-paper);
}

.cs-tier-turnover {
  display: inline-block;
  margin-top: 16px;
  align-self: flex-start;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(188, 191, 204, 0.7);
  color: var(--bh-black);
}

.cs-tier-card.featured .cs-tier-turnover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--bh-paper);
}

.cs-tier-price-row {
  margin-top: 28px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.cs-tier-amount {
  font-weight: 500;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--bh-orange);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.95;
}

.cs-tier-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--bh-graphite);
}

.cs-tier-card.featured .cs-tier-unit {
  color: var(--bh-steel);
}

.cs-tier-detail {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--bh-graphite);
}

.cs-tier-card.featured .cs-tier-detail {
  color: var(--bh-steel);
}

.cs-tier-divider {
  display: block;
  height: 1px;
  margin: 24px 0;
  background: rgba(188, 191, 204, 0.6);
}

.cs-tier-card.featured .cs-tier-divider {
  background: rgba(255, 255, 255, 0.15);
}

.cs-tier-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.cs-tier-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--bh-black);
}

.cs-tier-card.featured .cs-tier-feature-item {
  color: var(--bh-paper);
}

.cs-tier-feature-item .line-dot {
  margin-top: 9px;
  display: inline-block;
  width: 12px;
  height: 1px;
  flex: none;
  background: var(--bh-orange);
}

.cs-tier-enquire-btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bh-orange);
  transition: gap 0.2s ease;
}

.cs-tier-enquire-btn:hover {
  gap: 12px;
}

/* Homeowner Callout Banner */
.cs-homeowner-callout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  border-radius: 14px;
  border: 1px solid rgba(188, 191, 204, 0.6);
  background: var(--bh-cloud);
  padding: 24px;
  transition: border-color 0.2s ease;
}

@media (min-width: 640px) {
  .cs-homeowner-callout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .cs-homeowner-callout {
    margin-top: 56px;
    padding: 32px;
  }
}

.cs-homeowner-callout:hover {
  border-color: var(--bh-orange);
}

.cs-homeowner-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--bh-black);
}

.cs-homeowner-sub {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--bh-graphite);
  max-width: 576px;
}

.cs-homeowner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  padding-left: 20px;
  padding-right: 8px;
  height: 44px;
  font-size: 13px;
  font-weight: 500;
  background: var(--bh-ink);
  color: var(--bh-paper);
  flex: none;
  transition: background 0.2s ease;
}

.cs-homeowner-callout:hover .cs-homeowner-btn {
  background: var(--bh-orange);
}

.cs-homeowner-btn .circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

/* We Stay Involved Section */
.cs-involved-section {
  padding: 64px 0;
  background: var(--bh-white);
}

@media (min-width: 768px) {
  .cs-involved-section {
    padding: 96px 0;
  }
}

.cs-involved-bar {
  display: inline-block;
  width: 44px;
  height: 3px;
  background: var(--bh-orange);
  margin-bottom: 24px;
}

.cs-involved-title {
  font-weight: 500;
  letter-spacing: -0.025em;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.04;
  color: var(--bh-black);
}

.cs-involved-title .highlight {
  color: var(--bh-orange);
}

.cs-involved-intro {
  margin-top: 24px;
  max-width: 672px;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.55;
  color: var(--bh-graphite);
}

/* File Upload Dropzone */
.pom-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border-radius: 10px;
  border: 2px dashed rgba(188, 191, 204, 0.6);
  background: rgba(237, 239, 247, 0.35);
  padding: 36px 24px;
  transition: all 0.2s ease;
}

.pom-dropzone:hover,
.pom-dropzone.dragover {
  border-color: var(--bh-orange);
  background: var(--bh-orange-50);
}

.pom-upload-icon {
  color: var(--bh-orange);
  margin-bottom: 12px;
}

.pom-dropzone-title {
  font-size: 15px;
  color: var(--bh-black);
}

.pom-browse-link {
  color: var(--bh-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

.pom-dropzone-hint {
  margin-top: 4px;
  font-size: 12px;
  color: var(--bh-graphite);
}

.pom-file-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.pom-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(188, 191, 204, 0.4);
  background: #ffffff;
  font-size: 13px;
}

.pom-file-name {
  color: var(--bh-black);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 320px;
}

.pom-file-size {
  color: var(--bh-graphite);
  font-size: 12px;
  margin-left: 12px;
}

.pom-file-remove {
  background: none;
  border: none;
  color: var(--bh-graphite);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0 4px;
  margin-left: 12px;
  transition: color 0.2s ease;
}

.pom-file-remove:hover {
  color: var(--bh-orange);
}


/* Flex & Grid & Borders */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-none {
  flex: none;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.border {
  border-style: solid;
  border-width: 1px;
}

.border-y {
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.border-t {
  border-top: 1px solid;
}

.border-b {
  border-bottom: 1px solid;
}

.border-l-\[6px\] {
  border-left: 6px solid;
}

/* Typography */
.text-\[11px\] {
  font-size: 11px;
}

.text-\[12px\] {
  font-size: 12px;
}

.text-\[13px\] {
  font-size: 13px;
}

.text-\[14px\] {
  font-size: 14px;
}

.text-\[15px\] {
  font-size: 15px;
}

.text-\[16px\] {
  font-size: 16px;
}

.text-\[17px\] {
  font-size: 17px;
}

.text-\[18px\] {
  font-size: 18px;
}

.text-\[19px\] {
  font-size: 19px;
}

.text-\[22px\] {
  font-size: 22px;
}

.text-\[24px\] {
  font-size: 24px;
}

.text-\[28px\] {
  font-size: 28px;
}

.text-\[34px\] {
  font-size: 34px;
}

.text-\[36px\] {
  font-size: 36px;
}

.text-\[40px\] {
  font-size: 40px;
}

.text-\[56px\] {
  font-size: 56px;
}

.text-\[60px\] {
  font-size: 60px;
}

.text-\[64px\] {
  font-size: 64px;
}

.text-\[76px\] {
  font-size: 76px;
}

.text-\[80px\] {
  font-size: 80px;
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.tracking-\[0\.18em\] {
  letter-spacing: 0.18em;
}

.tracking-\[-0\.03em\] {
  letter-spacing: -0.03em;
}

.tracking-\[-0\.02em\] {
  letter-spacing: -0.02em;
}

.tracking-\[-0\.025em\] {
  letter-spacing: -0.025em;
}

.tracking-\[-0\.015em\] {
  letter-spacing: -0.015em;
}

.tracking-\[-0\.005em\] {
  letter-spacing: -0.005em;
}

.leading-\[1\.0\] {
  line-height: 1.0;
}

.leading-\[1\.03\] {
  line-height: 1.03;
}

.leading-\[1\.05\] {
  line-height: 1.05;
}

.leading-\[1\.1\] {
  line-height: 1.1;
}

.leading-\[1\.4\] {
  line-height: 1.4;
}

.leading-\[1\.45\] {
  line-height: 1.45;
}

.leading-\[1\.5\] {
  line-height: 1.5;
}

.leading-\[1\.55\] {
  line-height: 1.55;
}

.font-medium {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase;
}

.tabular-nums {
  font-variant-numeric: tabular-nums;
}

.text-center {
  text-align: center;
}

.rounded-\[4px\] {
  border-radius: 4px;
}

.rounded-\[8px\] {
  border-radius: 8px;
}

.rounded-\[10px\] {
  border-radius: 10px;
}

.rounded-full {
  border-radius: 9999px;
}

.hover\:bg-bh-orange:hover {
  background-color: var(--bh-orange);
}

.hover\:bg-bh-orange-700:hover {
  background-color: var(--bh-orange-700);
}

.hover\:border-bh-orange:hover {
  border-color: var(--bh-orange);
}

.hover\:text-bh-orange:hover {
  color: var(--bh-orange);
}

.hover\:border-bh-graphite\/60:hover {
  border-color: rgba(110, 113, 128, 0.6);
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

@media (max-width: 767px) {

  .capability-table-heading,
  .investment-table-heading {
    font-size: 21px;
  }

  .capability-table,
  .pricing-table {
    font-size: 12px;
    min-width: 100%;
  }

  .capability-table th {
    font-size: 13px;
  }

  .capability-table th,
  .capability-table td,
  .pricing-table th,
  .pricing-table td {
    padding: 8px 5px;
  }

  .capability-table th.col-hawktress {
    font-size: 13px;
  }

  .capability-table td.col-hawktress {
    font-size: 12px;
  }

  .capability-table td.col-internal {
    font-size: 12px;
  }

  .pricing-table {
    font-size: 12px;
  }

  .pricing-table th.col-plan-head,
  .pricing-table th.col-orange-head {
    font-size: 13px;
  }


  .pricing-table td.col-orange-cell {
    font-size: 10px;
  }

  .pricing-table td.col-plan-name {
    font-size: 13px;
  }
}

.max-w-xl {
  max-width: var(--container-xl);
}

button,
input,
select,
optgroup,
textarea {
  font: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  letter-spacing: inherit;
  color: inherit;
  opacity: 1;
  background-color: #0000;
  border-radius: 0;
}


.w-11 {
  width: calc(var(--spacing) * 11);
}

.h-\[3px\] {
  height: 3px;
}

.inline-block {
  display: inline-block;
}

.mx-auto {
  margin-inline: auto;
}

.max-w-\[1480px\] {
  max-width: 1480px;
}

.mt-16 {
  margin-top: calc(var(--spacing) * 16);
}

.py-16 {
  padding-block: calc(var(--spacing) * 16);
}

.gap-x-6 {
  column-gap: calc(var(--spacing) * 6);
}

.gap-6 {
  gap: calc(var(--spacing) * 6);
}

.mt-10 {
  margin-top: calc(var(--spacing) * 10);
}

.mt-12 {
  margin-top: calc(var(--spacing) * 12);
}

.tracking-\[0\.28em\] {
  --tw-tracking: .28em;
  letter-spacing: .28em;
}

.pb-16 {
  padding-bottom: calc(var(--spacing) * 16);
}

@media (min-width: 768px) {
  .md\:text-\[40px\] {
    font-size: 40px;
  }

  .md\:text-\[17px\] {
    font-size: 17px;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:h-4 {
    height: calc(var(--spacing) * 4);
  }

  .md\:py-28 {
    padding-block: calc(var(--spacing) * 28);
  }

  .md\:py-24 {
    padding-block: calc(var(--spacing) * 24);
  }
}

/* ── GROWTH ENGINE PAGE STYLES ────────────────────────────── */
.ge-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: var(--bh-white);
  color: var(--bh-black);
}

@media (min-width: 768px) {
  .ge-hero {
    padding-top: 25vh;
    padding-bottom: 20vh;
  }
}

.ge-badge-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bh-orange);
  font-weight: 500;
  margin-bottom: 20px;
}


.ge-badge-line .muted {
  color: var(--bh-graphite);
}

.ge-badge-line span.line {
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--bh-orange);
}

.ge-meta-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.ge-hero-title {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: 95px;
  color: var(--bh-black);
}

.ge-hero-title .highlight {
  color: var(--bh-orange);
}

.ge-hero-intro {
  margin-top: 24px;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--bh-graphite);
}

.ge-hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.ge-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--bh-orange);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(222, 81, 35, 0.25);
}

.ge-btn-primary:hover {
  background: var(--bh-orange-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(222, 81, 35, 0.35);
}

.ge-stats {
  padding-top: 40px;
}

.ge-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 6px;
}

.ge-btn-secondary {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid rgba(188, 191, 204, 0.6);
  background: var(--bh-white);
  color: var(--bh-black);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.ge-btn-secondary:hover {
  border-color: var(--bh-orange);
  color: var(--bh-orange);
}

.ge-section {
  padding: 64px 0;
}

@media (min-width: 768px) {
  .ge-section {
    padding: 96px 0;
  }
}

.ge-bg-white {
  background: var(--bh-white);
}

.ge-bg-cloud {
  background: #f8f9fc;
}

.ge-section-idx {
  font-family: monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bh-orange);
  font-weight: 600;
}

.ge-section-title {
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--bh-black);
}

.ge-section-title .highlight {
  color: var(--bh-orange);
}

.ge-section-desc {
  margin-top: 16px;
  max-width: 640px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.5;
  color: var(--bh-graphite);
}

/* Pillars Grid Container */
.ge-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bh-ink);
}

@media (min-width: 768px) {
  .ge-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ge-pillar-card {
  padding: 44px 36px;
  background: var(--bh-ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
}



.ge-pillar-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

.ge-pillar-bar {
  width: 28px;
  height: 2px;
  background-color: var(--bh-orange);
  margin-bottom: 28px;
}

.ge-pillar-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--bh-paper);
  margin-bottom: 16px;
  line-height: 1.25;
}

.ge-pillar-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--bh-space);
}

/* Platform Capability List */
.ge-platform-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(188, 191, 204, 0.4);
  max-width: 1000px;
  margin: auto;
}

.ge-platform-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(188, 191, 204, 0.4);
  background: transparent;
  transition: all 0.2s ease;
}

@media (max-width: 640px) {
  .ge-platform-item {
    gap: 16px;
    padding: 28px 0;
  }
}

.ge-platform-num {
  font-family: monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--bh-graphite);
  min-width: 32px;
  padding-top: 4px;
}

.ge-platform-content {
  flex: 1;
}

.ge-platform-item-title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--bh-black);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.ge-platform-item-desc {
  font-size: clamp(14.5px, 1.5vw, 16px);
  line-height: 1.6;
  color: var(--bh-graphite);
  margin-bottom: 20px;
  max-width: 820px;
}

.ge-platform-pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--bh-orange);
  border: 1px solid var(--bh-orange);
  border-radius: 9999px;
  padding: 5px 16px;
  background: transparent;
  transition: all 0.2s ease;
}

.ge-platform-pill:hover {
  background: var(--bh-orange-50);
}

/* Ecosystem Box & Grid */
.ge-eco-box {
  background: var(--bh-ink);
  margin-bottom: 60px;
  max-width: 900px;
  margin: auto;
}

.ge-eco-col {
  padding: 44px 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 768px) {
  .ge-eco-col-left {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 767px) {
  .ge-eco-col-left {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

.ge-eco-col-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--bh-paper);
  margin-bottom: 24px;
}

.ge-eco-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ge-eco-col-list li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--bh-space);
}

/* Director Quote Callout */
.ge-quote-callout {
  display: flex;
  gap: 24px;
  margin-top: 50px;
  max-width: 900px;
  margin: 50px auto 0;
}

.ge-quote-bar {
  width: 2px;
  background-color: var(--bh-orange);
  flex-shrink: 0;
}

.ge-quote-content {
  flex: 1;
}

.ge-quote-text {
  font-size: clamp(18px, 2.2vw, 22px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bh-paper);
  letter-spacing: -0.01em;
}

.ge-quote-author {
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--bh-graphite);
}

/* Contact Row (No background, top border divider) */
.ge-contact-row {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(188, 191, 204, 0.4);
}

.ge-contact-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bh-graphite);
  margin-bottom: 8px;
  font-weight: 500;
}

.ge-contact-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--bh-black);
}

.ge-section-services-title,
.ge-section-idx-title {
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--bh-paper);
  max-width: 750px;
}

.ge-services-title,
.ge-platform-title,
.ge-whofor-title {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .ge-stats {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ge-stat-label {
    font-size: 11px;
  }

  .ge-hero-intro {
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .ge-hero-title {
    font-size: 40px;
  }

  .ge-badge-line {
    font-size: 9px;
  }

  .ge-eco-col {
    padding: 30px 25px;
  }


  .xs\:gap-5 {
    gap: 1.25rem;
  }

}