/* ============================================================================
   PLATFORM.CSS — SONO XR platform page (platform.html) + master pricing page
   (pricing.html). NOT loaded by other MBB pages.
   Ported from SONOXR-Platform css/home.css (.mw-*, .mx-*, .twin-*, faq blocks)
   and re-skinned to MBB 3D Media's palette + fonts (Syne / Barlow Condensed).
   All variables below are either page-scoped-safe (style.css does not define
   --primary / --font-title / --font-tech / --text-dim) or match style.css
   values (--text-muted, --font-mono). FAQ classes renamed .pf-faq-* because
   style.css already owns .faq-item.
   ============================================================================ */

:root {
  --primary: #00ff66;                 /* MBB neon green (== --neon-green) */
  --sxr-cyan: #00d4ff;                /* MBB design-system cyan */
  --font-title: 'Syne', sans-serif;
  --font-tech: 'Barlow Condensed', sans-serif;
  --text-dim: #71717a;
  --text-primary: #ffffff;
  --bg-panel: rgba(7, 9, 14, 0.7);
}

/* ── Shared page scaffolding ─────────────────────────────────────────────── */
.pf-section { border-top: 1px solid rgba(255, 255, 255, 0.05); }

.pf-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 10px;
}
.pf-section-header .section-tag { letter-spacing: 0.12em; }
.pf-section-sub {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.65;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.pf-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #030304;
  padding: 140px 24px 90px;
}
/* Hero darkening (2026-07-10 Michael: villa was drowned): effectively ONE light
   scrim — bg runs near full strength; the old 0.35 image opacity + 0.88 radial
   compounded, same trap as the homepage hero-overlays fix. Text stays legible
   via the soft center vignette + text shadows below. */
.pf-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/spaces-malibu.png') center / cover no-repeat;
  opacity: 0.9;
}
.pf-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(75% 65% at 50% 45%, rgba(3, 3, 4, 0.35) 0%, rgba(3, 3, 4, 0.52) 100%),
    linear-gradient(to top, #030304 0%, transparent 20%);
}
.pf-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.pf-hero-logo { height: 44px; width: auto; }
.pf-hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.85), 0 1px 6px rgba(0, 0, 0, 0.7);
}
.pf-hero-title span {
  display: block;
  color: var(--primary);
  font-size: 0.36em;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 14px;
}
.pf-hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #d4d4d8;
  line-height: 1.6;
  max-width: 620px;
  margin: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 0.8);
}
.pf-hero-tagline strong { color: #ffffff; font-weight: 600; }
.pf-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-tech);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.5);
}
.pf-status .dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.7);
  flex-shrink: 0;
}
.pf-status b { color: var(--primary); font-weight: 600; }
.pf-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

/* ── TWO WAYS TO BUY ─────────────────────────────────────────────────────── */
.pf-buy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0;
}
.pf-buy-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
  padding: 36px 32px;
  text-align: left;
  transition: border-color 0.3s ease;
}
.pf-buy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 0% 0%, rgba(0, 255, 102, 0.09), transparent 70%);
  pointer-events: none;
}
.pf-buy-card:hover { border-color: rgba(0, 255, 102, 0.25); }
.pf-buy-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(141, 227, 141, 0.75);
}
.pf-buy-card h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: #e9f5e9;
  letter-spacing: -0.015em;
  margin-top: 10px;
}
.pf-buy-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-top: 12px;
}
.pf-buy-chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 10px;
  vertical-align: 2px;
}
.pf-buy-chip.live { color: var(--primary); border: 1px solid rgba(0, 255, 102, 0.4); }
.pf-buy-chip.dev { color: var(--text-dim); border: 1px solid rgba(255, 255, 255, 0.2); }
.pf-hybrid-note {
  max-width: 1200px;
  margin: 22px auto 0;
  border: 1px dashed rgba(0, 255, 102, 0.25);
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: left;
}
.pf-hybrid-note b { color: #ffffff; }

/* ══════════════════════════════════════════════════════════════════════════
   Modal-style window cards (ported .mw-*)
   ══════════════════════════════════════════════════════════════════════════ */
.mw-headline-wrap { width: 100%; max-width: 1200px; margin: 0 auto 40px; text-align: left; }
.mw-headline {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #cdeccd;
  margin-top: 10px;
  line-height: 1.05;
  text-transform: none;
}

.mw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.mw-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.mw-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 0% 0%, rgba(0, 255, 102, 0.09), transparent 70%);
  pointer-events: none;
}
.mw-card:hover { border-color: rgba(0, 255, 102, 0.25); }

.mw-window {
  position: relative;
  border: 1px solid rgba(140, 170, 200, 0.25);
  border-radius: 12px;
  background: #0a0d10;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.mw-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}
.mw-dots { display: flex; gap: 5px; }
.mw-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); display: block; }
.mw-dots i:first-child { background: rgba(0, 255, 102, 0.7); }
.mw-wintitle {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
}
.mw-body { min-height: 210px; }
.mw-body-img { background-size: cover; background-position: center; }

.mw-code pre {
  margin: 0; padding: 20px 18px;
  font-family: var(--font-mono);
  font-size: 0.78rem; line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  overflow-x: auto;
}
.mw-code .ln { color: rgba(255, 255, 255, 0.25); margin-right: 14px; }
.mw-code .str { color: #7fee64; }
.mw-code .kw { color: var(--sxr-cyan); }

.mw-bench { padding: 26px 20px; display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.mw-bench-row { display: grid; grid-template-columns: 170px 1fr 84px; align-items: center; gap: 12px; }
.mw-bench-label { font-family: var(--font-tech); font-size: 0.8rem; letter-spacing: 0.04em; color: var(--text-muted); }
.mw-bench-label b { color: #fff; }
.mw-bench-bar { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.05); overflow: hidden; }
.mw-bench-bar span { display: block; height: 100%; border-radius: 4px; background: rgba(255, 255, 255, 0.22); }
.mw-bench-bar span.lit { background: var(--primary); box-shadow: 0 0 12px rgba(0, 255, 102, 0.5); }
.mw-bench-val { font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-dim); text-align: right; }
.mw-bench-val.ok { color: var(--primary); }

.mw-surfaces { padding: 26px 20px; display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.mw-surf-row {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px; padding: 14px 16px;
}
.mw-surf-name { font-family: var(--font-tech); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; color: #fff; min-width: 105px; }
.mw-surf-desc { font-size: 0.72rem; color: var(--text-dim); flex: 1; }
.mw-surf-status { font-family: var(--font-mono); font-size: 0.62rem; color: var(--text-dim); letter-spacing: 0.06em; }
.mw-surf-status.live { color: var(--primary); }

.mw-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.12em;
  color: rgba(141, 227, 141, 0.75);
  margin-top: 22px;
}
.mw-card h3 {
  font-family: var(--font-title);
  font-size: 1.45rem; font-weight: 700; color: #e9f5e9;
  letter-spacing: -0.015em; margin-top: 8px;
  text-transform: none;
}
.mw-card p { font-size: 0.88rem; line-height: 1.6; color: var(--text-muted); margin-top: 8px; }
.mw-link {
  display: inline-block; margin-top: 14px;
  font-family: var(--font-tech); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary); text-decoration: none;
}
.mw-link:hover { color: #ffffff; }

/* ── Modules explorer (ported .mx-*) ─────────────────────────────────────── */
.mx-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 1000px; margin: 40px auto 28px; }
.mx-pill {
  font-family: var(--font-tech); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim); background: none;
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 22px;
  padding: 9px 18px; cursor: pointer;
  transition: all 0.25s ease;
}
.mx-pill:hover { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.mx-pill.active { color: var(--primary); border-color: rgba(0, 255, 102, 0.6); background: rgba(0, 255, 102, 0.05); }

.mx-panel {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 32px; align-items: center;
  width: 100%; max-width: 1100px; margin: 0 auto;
}
.mx-window .mw-body { min-height: 320px; position: relative; }
.mx-media { transition: opacity 0.25s ease; }
.mx-media > img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; position: absolute; inset: 0; }
.mx-mock { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 30px; }
.mx-info { text-align: left; }
.mx-info h3 { font-family: var(--font-title); font-size: 1.7rem; font-weight: 700; color: #e9f5e9; letter-spacing: -0.02em; margin-top: 10px; text-transform: none; }
.mx-info p { font-size: 0.92rem; line-height: 1.65; color: var(--text-muted); margin-top: 10px; }
.mx-tag-chip {
  display: inline-block; font-family: var(--font-mono); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.08em; padding: 3px 8px; border-radius: 4px;
}
.mx-tag-chip.core { color: var(--primary); border: 1px solid rgba(0, 255, 102, 0.4); }
.mx-tag-chip.pro { color: var(--sxr-cyan); border: 1px solid rgba(0, 212, 255, 0.4); }
.mx-tag-chip.new { color: var(--primary); border: 1px solid rgba(0, 255, 102, 0.4); }
.mx-tag-chip.roadmap { color: var(--text-dim); border: 1px solid rgba(255, 255, 255, 0.2); }
.pf-btn-row { display: flex; gap: 16px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }

/* .twin-* stage styles moved to style.css 2026-07-15 (shared with index.html) */

/* ── Platform pricing ────────────────────────────────────────────────────── */
.pf-price-intro {
  max-width: 1200px; margin: 40px auto 24px; width: 100%;
  text-align: left; font-family: var(--font-tech);
}
.pf-price-intro .pf-kicker {
  font-size: 0.8rem; color: var(--primary);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.pf-price-intro h3 {
  font-family: var(--font-title); font-size: 1.8rem; font-weight: 700;
  margin-top: 8px; color: #ffffff; text-transform: none; letter-spacing: -0.015em;
}
.pf-price-intro p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted); font-size: 0.9rem; margin-top: 6px; max-width: 720px; line-height: 1.6;
}
.pf-plan-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  width: 100%; max-width: 1200px; margin: 0 auto 50px;
}
.pf-plan {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 32px; text-align: left;
}
.pf-plan-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.pf-plan h4 { font-family: var(--font-title); font-size: 1.3rem; font-weight: 700; text-transform: none; color: #ffffff; }
.pf-plan.featured { border-color: rgba(0, 255, 102, 0.35); }
.pf-plan .pf-badge {
  font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.08em;
  padding: 3px 7px; border-radius: 4px;
  background: rgba(0, 255, 102, 0.1); border: 1px solid rgba(0, 255, 102, 0.5); color: var(--primary);
}
.pf-price { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.pf-price small { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.pf-price-note { font-size: 0.8rem; color: var(--primary); margin-bottom: 20px; font-family: 'Inter', sans-serif; }
.pf-plan ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 0.85rem; color: var(--text-muted); }
.pf-plan ul li::before { content: '✓'; color: var(--primary); margin-right: 9px; font-weight: 700; }
.pf-plan .pf-plan-cta { margin-top: 30px; width: 100%; }
.pf-plan-alt {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.25s ease;
}
.pf-plan-alt:hover { color: var(--primary); }

.pf-addon-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  width: 100%; max-width: 1200px; margin: 0 auto;
}
.pf-addon {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 26px 28px; text-align: left; background: rgba(255, 255, 255, 0.01);
}
.pf-addon h4 { font-family: var(--font-title); font-size: 1.05rem; font-weight: 700; text-transform: none; color: #ffffff; }
.pf-addon-price { font-size: 1.3rem; font-weight: 800; color: #fff; margin-top: 6px; font-family: 'Inter', sans-serif; }
.pf-addon-price small { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }
.pf-addon p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.5; margin-top: 8px; }
.pf-addon a {
  margin-top: 16px; font-family: var(--font-tech); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary); text-decoration: none;
}
.pf-addon a:hover { color: #ffffff; }

/* ── FAQ accordion (ported, renamed .pf-faq-* — style.css owns .faq-item) ── */
.pf-faq-list {
  width: 100%;
  max-width: 860px;
  margin: 44px auto 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pf-faq-item { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.pf-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 4px;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}
.pf-faq-q:hover { color: var(--primary); }
.pf-faq-q svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pf-faq-item.open .pf-faq-q svg { transform: rotate(45deg); }
.pf-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pf-faq-a p {
  padding: 0 40px 22px 4px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 720px;
}

/* ── Intake CTA band ─────────────────────────────────────────────────────── */
.pf-cta {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 20px 10px;
}
.pf-cta h2 { font-size: 2.4rem; margin-bottom: 14px; }
.pf-cta h2 span { color: var(--primary); }
.pf-cta p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; max-width: 560px; margin: 0 auto 26px; }

/* ── Pricing page: compact page header + chapters (pricing.html) ─────────── */
.pf-page-hero {
  position: relative;
  padding: 170px 24px 70px;
  text-align: center;
  background:
    radial-gradient(60% 55% at 50% 0%, rgba(0, 255, 102, 0.07), transparent 70%),
    #030304;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pf-page-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
}
.pf-page-hero h1 span { color: var(--primary); }
.pf-page-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 640px;
  margin: 0;
}
.pf-chapter-head {
  max-width: 1200px;
  margin: 0 auto 28px;
  width: 100%;
  text-align: left;
}
.pf-chapter-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(141, 227, 141, 0.75);
  display: block;
}
.pf-chapter-head h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #cdeccd;
  margin-top: 10px;
  text-transform: none;
  line-height: 1.08;
}
.pf-chapter-head .pf-chapter-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 720px;
  margin-top: 10px;
}
.pf-chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 14px;
}
.pf-chip.live { color: var(--primary); border: 1px solid rgba(0, 255, 102, 0.4); }
.pf-chip.dev { color: var(--text-dim); border: 1px solid rgba(255, 255, 255, 0.2); }

/* Hybrid lane (pricing.html chapter 03) */
.pf-hybrid-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
.pf-hybrid-copy {
  border: 1px dashed rgba(0, 255, 102, 0.3);
  border-radius: 16px;
  padding: 34px 32px;
  text-align: left;
}
.pf-hybrid-copy h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: #e9f5e9;
  text-transform: none;
  letter-spacing: -0.015em;
}
.pf-hybrid-copy p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; margin-top: 12px; }
.pf-hybrid-copy p b { color: #ffffff; }
.pf-hybrid-services {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
  padding: 34px 32px;
  text-align: left;
}
.pf-hybrid-services h4 {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}
.pf-hybrid-services ul { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 12px; font-size: 0.88rem; color: var(--text-muted); }
.pf-hybrid-services ul li::before { content: '+'; color: var(--primary); margin-right: 10px; font-weight: 700; }

/* Compact pricing preview (platform.html #pricing) */
.pf-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 900px;
  margin: 36px auto 0;
}
.pf-mini {
  padding: 22px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pf-mini h4 { font-family: var(--font-title); font-size: 1rem; font-weight: 700; color: #ffffff; text-transform: none; }
.pf-mini .pf-mini-price { font-size: 1.5rem; font-weight: 800; color: #fff; font-family: 'Inter', sans-serif; }
.pf-mini .pf-mini-price small { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }
.pf-mini .pf-mini-note { font-size: 0.75rem; color: var(--text-muted); }
.pf-mini.featured { border-color: rgba(0, 255, 102, 0.35); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .pf-hybrid-grid { grid-template-columns: 1fr; }
  .pf-mini-grid { grid-template-columns: 1fr; max-width: 480px; }
  .mw-grid { grid-template-columns: 1fr; }
  .mx-panel { grid-template-columns: 1fr; }
  .pf-buy-grid { grid-template-columns: 1fr; }
  .pf-plan-grid { grid-template-columns: 1fr; }
  .pf-addon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 740px) {
  .mw-bench-row { grid-template-columns: 110px 1fr 70px; }
  .pf-addon-grid { grid-template-columns: 1fr; }
  .pf-faq-q { font-size: 0.95rem; padding: 18px 2px; }
  .pf-faq-a p { padding-right: 20px; }
  .pf-hero { min-height: 70vh; padding-top: 120px; }
  .pf-cta h2 { font-size: 1.9rem; }
}


/* ══ SpaceX pass (2026-07-11): each section gets its own full-bleed visual ══
   Real MBB captures as backdrops, heavy scrims for legibility, one identity
   per section: hero=live showcase · ecosystem=architecture · modules=explorer
   · twin=live 3D · pricing=Beverly Hills Hotel capture · cta=Hollywood. */
#ecosystem, #pricing, #platform-cta { position: relative; overflow: hidden; }
#ecosystem::before, #pricing::before, #platform-cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  opacity: 0.16; filter: saturate(0.85);
}
#ecosystem::after, #pricing::after, #platform-cta::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, #05080f 0%, rgba(5,8,15,0.35) 18%, rgba(5,8,15,0.35) 78%, #05080f 100%);
}
#ecosystem > *, #pricing > *, #platform-cta > * { position: relative; z-index: 1; }

#ecosystem::before   { background-image: url('../assets/blackwelder-hero.jpg'); }
#pricing::before     { background-image: url('../assets/bhh_main.png'); opacity: 0.14; }
#platform-cta::before{ background-image: url('../assets/footer-hollywood.jpg'); opacity: 0.2; }

/* modules explorer: subtle depth so it reads as its own room, not more black */
#modules { position: relative; overflow: hidden; }
#modules::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(85% 60% at 50% 0%, rgba(0,255,102,0.06), transparent 60%),
              radial-gradient(70% 50% at 50% 100%, rgba(0,212,255,0.05), transparent 60%);
}
#modules > * { position: relative; z-index: 1; }

/* twin section: let the live 3D breathe on a cool field */
#twin { position: relative; overflow: hidden; }
#twin::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(75% 55% at 50% 45%, rgba(0,212,255,0.07), transparent 65%);
}
#twin > * { position: relative; z-index: 1; }


/* ══════════════════════════════════════════════════════════════════
   IDENTITY PASS v7 (2026-07-11) — each section holds its own.
   References: novaverse.space (light showroom sections between dark),
   flexis-mobility.com (blueprint navy, huge numbers, hairline rows).
   · scroll-statement — black void, words ignite on scroll
   · ecosystem       — BLUEPRINT: navy drafting-grid, numbered rows
   · modules         — SHOWROOM: light field, dark display windows
   · twin            — (already owns green wireframe identity)
   ══════════════════════════════════════════════════════════════════ */

/* ── SCROLL STATEMENT — MBB HQ render behind the igniting words ── */
#scroll-statement { background: #000; padding: 150px 0 130px; position: relative; overflow: hidden; }
#scroll-statement::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url('../assets/mbb-hq.jpg') center 32% / cover no-repeat;
  opacity: 0.68; filter: brightness(1.12);
}
#scroll-statement::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.18) 24%, rgba(0,0,0,0.3) 62%, #000 100%);
}
.ss-wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }
.scroll-highlight-text {
  font-family: var(--font-title); font-size: clamp(2.2rem, 5vw, 3.9rem);
  font-weight: 700; line-height: 1.14; letter-spacing: -0.03em;
  text-transform: none; text-align: left;
}
.highlight-word {
  display: inline-block; margin-right: 0.28em;
  color: rgba(255, 255, 255, 0.24); transition: color 0.3s ease;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.highlight-word.lit { color: #ffffff; }
.highlight-word.accent.lit { color: var(--primary); text-shadow: 0 0 24px rgba(0, 255, 102, 0.35); }
.ss-sub {
  max-width: 680px; margin: 34px auto 0; padding: 0 20px; text-align: center;
  font-size: 0.95rem; line-height: 1.65; color: var(--text-muted);
}
.ss-sub span { color: #fff; }

/* ── ECOSYSTEM → THE BLUEPRINT (Flexis language: navy field, drafting
      grid, hairline rows, giant outlined numbers, cool blue accent) ── */
#ecosystem {
  background: linear-gradient(180deg, #05080f 0%, #070d1c 14%, #081026 50%, #070d1c 86%, #05080f 100%);
}
#ecosystem::before {
  background-image:
    linear-gradient(rgba(110, 150, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 150, 255, 0.055) 1px, transparent 1px);
  background-size: 56px 56px; opacity: 1; filter: none;
}
#ecosystem::after {
  background: linear-gradient(180deg, #05080f 0%, transparent 12%, transparent 88%, #05080f 100%);
}
#ecosystem .section-tag { color: #8fb3ff !important; }
#ecosystem .mw-headline-wrap { margin-bottom: 10px; }
#ecosystem .mw-headline { font-size: clamp(2.4rem, 4.6vw, 4rem); }

/* grid → vertical numbered rows */
#ecosystem .mw-grid {
  grid-template-columns: 1fr; gap: 0; max-width: 1200px; counter-reset: arch;
}
#ecosystem .mw-card {
  counter-increment: arch; position: relative;
  display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  column-gap: clamp(28px, 5vw, 72px); align-content: center;
  background: transparent; border: none; border-radius: 0;
  border-top: 1px solid rgba(140, 170, 255, 0.16);
  padding: clamp(44px, 6vw, 72px) 8px;
}
#ecosystem .mw-card::before { display: none; } /* kill old hover sheen */
#ecosystem .mw-card::after {
  content: "0" counter(arch);
  position: absolute; top: 34px; right: 8px;
  font-family: var(--font-title); font-weight: 800;
  font-size: clamp(4rem, 9vw, 7.5rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(140, 170, 255, 0.22);
  pointer-events: none;
}
#ecosystem .mw-card:hover { border-color: rgba(140, 170, 255, 0.35); }
#ecosystem .mw-card .mw-window {
  grid-column: 2; grid-row: 1 / span 4; align-self: center;
  border-color: rgba(140, 170, 255, 0.2);
  box-shadow: 0 30px 80px rgba(3, 8, 25, 0.8);
}
#ecosystem .mw-card .mw-eyebrow,
#ecosystem .mw-card h3,
#ecosystem .mw-card p,
#ecosystem .mw-card .mw-link { grid-column: 1; }
/* alternate: even rows flip window to the left */
#ecosystem .mw-card:nth-child(even) { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
#ecosystem .mw-card:nth-child(even) .mw-window { grid-column: 1; }
#ecosystem .mw-card:nth-child(even) .mw-eyebrow,
#ecosystem .mw-card:nth-child(even) h3,
#ecosystem .mw-card:nth-child(even) p,
#ecosystem .mw-card:nth-child(even) .mw-link { grid-column: 2; }
#ecosystem .mw-card:nth-child(even)::after { right: auto; left: 8px; }

#ecosystem .mw-eyebrow { color: #8fb3ff; }
#ecosystem .mw-card h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -0.02em; line-height: 1.15;
}
#ecosystem .mw-card p { font-size: 0.94rem; max-width: 46ch; }
#ecosystem .mw-link { color: #8fb3ff; }
#ecosystem .mw-link:hover { color: #fff; }
#ecosystem .mw-dots i:first-child { background: rgba(140, 170, 255, 0.8); }

@media (max-width: 900px) {
  #ecosystem .mw-card,
  #ecosystem .mw-card:nth-child(even) { grid-template-columns: 1fr; }
  #ecosystem .mw-card .mw-window,
  #ecosystem .mw-card:nth-child(even) .mw-window { grid-column: 1; grid-row: auto; margin-bottom: 22px; }
  #ecosystem .mw-card:nth-child(even) .mw-eyebrow,
  #ecosystem .mw-card:nth-child(even) h3,
  #ecosystem .mw-card:nth-child(even) p,
  #ecosystem .mw-card:nth-child(even) .mw-link { grid-column: 1; }
  #ecosystem .mw-card::after { font-size: 3.4rem; top: 20px; }
}

/* ── MODULES → THE GREEN ROOM (brand-green field like the services
      feature cards: dark display windows on solid signal green,
      everything else goes ink-dark) ── */
#modules {
  background: linear-gradient(180deg, #05080f 0%, #00e05c 6%, #00ef66 50%, #00e05c 94%, #05080f 100%);
  border-top: none;
}
#modules::before {
  inset: -120px;
  background:
    radial-gradient(42% 38% at 18% 22%, rgba(255, 255, 255, 0.3), transparent 70%),
    radial-gradient(50% 44% at 82% 28%, rgba(0, 150, 85, 0.5), transparent 70%),
    radial-gradient(46% 40% at 28% 84%, rgba(200, 255, 180, 0.35), transparent 70%),
    radial-gradient(40% 36% at 76% 80%, rgba(0, 110, 65, 0.45), transparent 70%);
  filter: blur(46px);
  animation: sxrLiquid 16s ease-in-out infinite alternate;
}
@keyframes sxrLiquid {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1) rotate(0deg); }
  50%  { transform: translate3d(2.5%, 3%, 0) scale(1.1) rotate(2deg); }
  100% { transform: translate3d(4%, -3%, 0) scale(1.04) rotate(-2deg); }
}
#modules .section-tag { color: #04140a !important; }
#modules .section-title { color: #04140a; }
#modules .section-title span {
  color: #04140a !important; -webkit-text-fill-color: #04140a !important;
  background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important;
  animation: none !important; text-shadow: none;
  border-bottom: 4px solid rgba(4, 20, 10, 0.85); padding-bottom: 2px;
}
#modules .pf-section-sub { color: rgba(4, 20, 10, 0.75); }

#modules .mx-pill {
  color: #04140a; background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(4, 20, 10, 0.4);
}
#modules .mx-pill:hover { color: #04140a; border-color: #04140a; background: rgba(255, 255, 255, 0.35); }
#modules .mx-pill.active {
  color: #00ff66; background: #04140a; border-color: #04140a;
}

#modules .mx-window,
#modules .mw-window {
  border: 1px solid rgba(4, 20, 10, 0.55); background: #0d1117;
  box-shadow: 0 34px 70px rgba(0, 60, 25, 0.45);
}
#modules .mx-info h3 { color: #04140a; }
#modules .mx-info p { color: rgba(4, 20, 10, 0.8); }
#modules .mx-tag-chip.core { color: #04140a; border-color: rgba(4, 20, 10, 0.55); }
#modules .mx-tag-chip.new { color: #04140a; border-color: rgba(4, 20, 10, 0.55); }
#modules .mx-tag-chip.pro { color: #04140a; border-color: rgba(4, 20, 10, 0.55); background: rgba(255,255,255,0.25); }
#modules .mx-tag-chip.roadmap { color: rgba(4, 20, 10, 0.6); border-color: rgba(4, 20, 10, 0.3); }
#modules .mw-link { color: #04140a; font-weight: 700; }
#modules .mw-link:hover { color: #ffffff; }

#modules .btn-primary {
  background: #04140a; color: #00ff66; border-color: #04140a;
  box-shadow: 0 8px 28px rgba(0, 40, 15, 0.35);
}
#modules .btn-primary:hover { background: #000; }
#modules .btn-secondary {
  color: #04140a; border-color: rgba(4, 20, 10, 0.55);
}
#modules .btn-secondary:hover { border-color: #04140a; }

/* blueprint rows: let the window media breathe at the larger row size */
#ecosystem .mw-body { min-height: 260px; }
#ecosystem .mw-body-img { min-height: 300px; }

/* ── PAGE-HERO VIDEO variant (pricing + any pf-page-hero): full-bleed
      background video with scrim, matching the services-page aesthetic ── */
.pf-page-hero--video { position: relative; overflow: hidden; }
.pf-page-hero--video .pph-bg { position: absolute; inset: 0; z-index: 0; }
.pf-page-hero--video .pph-bg video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.pf-page-hero--video .pph-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3, 6, 12, 0.82) 0%, rgba(3, 6, 12, 0.55) 45%, rgba(3, 6, 12, 0.9) 100%);
}
.pf-page-hero--video > *:not(.pph-bg) { position: relative; z-index: 2; }

/* ── WHY IT WINS — feature stage (Novaverse pattern: pill selector +
      one huge rounded media panel, auto-rotating) ── */
#why { position: relative; }
.wf-pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  max-width: 1060px; margin: 36px auto 26px;
}
.wf-pill {
  padding: 12px 24px; border-radius: 999px; cursor: pointer;
  font-family: var(--font-tech); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.22s ease;
}
.wf-pill:hover { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.wf-pill.active { color: #05080f; background: #ffffff; border-color: #ffffff; }

.wf-stage {
  position: relative; width: 100%; max-width: 1280px; margin: 0 auto;
  height: min(64vh, 640px); min-height: 420px;
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}
.wf-media {
  position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  transition: opacity 0.45s ease; transform: scale(1.02);
}
.wf-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(72deg, rgba(3, 6, 12, 0.9) 0%, rgba(3, 6, 12, 0.55) 42%, rgba(3, 6, 12, 0.08) 75%),
              linear-gradient(180deg, transparent 55%, rgba(3, 6, 12, 0.75) 100%);
}
.wf-copy {
  position: absolute; left: clamp(24px, 4.5vw, 60px); bottom: clamp(24px, 5vh, 56px);
  max-width: 560px; text-align: left; z-index: 2;
}
.wf-kicker {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.18em;
  color: var(--primary); border: 1px solid rgba(0, 255, 102, 0.4);
  border-radius: 999px; padding: 6px 14px; margin-bottom: 16px;
}
.wf-copy h3 {
  font-family: var(--font-title); font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.08;
  text-transform: none;
}
.wf-copy p {
  margin-top: 14px; font-size: 0.96rem; line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}
.wf-anim .wf-copy > * { animation: wfRise 0.55s ease both; }
.wf-anim .wf-copy h3 { animation-delay: 0.08s; }
.wf-anim .wf-copy p { animation-delay: 0.16s; }
@keyframes wfRise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wf-dots {
  position: absolute; right: clamp(20px, 3.5vw, 44px); bottom: clamp(20px, 4vh, 40px);
  display: flex; gap: 8px; z-index: 2;
}
.wf-dots i {
  width: 10px; height: 10px; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, 0.3); transition: all 0.25s ease;
}
.wf-dots i.active { background: #fff; width: 30px; border-radius: 6px; }

@media (max-width: 760px) {
  .wf-stage { height: 70vh; }
  .wf-copy { right: 20px; }
}

/* ── FEATURES-SECTION-SPEC additions (2026-07-11) ─────────────────────────── */

/* Aesthetic guardrail: SpaceX not Tron — accent headline words on this page
   are flat green, no shimmer gradient, no glow. (#modules keeps its own
   higher-specificity dark-on-light override.) */
.pf-section .section-title span {
  background: none !important;
  -webkit-background-clip: initial !important; background-clip: initial !important;
  -webkit-text-fill-color: var(--primary) !important; color: var(--primary) !important;
  filter: none !important; animation: none !important;
}

/* Video slides get a flat ~40% dark layer so white copy stays readable
   (posters keep the lighter gradient scrim only). */
.wf-media.has-vid::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(3, 6, 12, 0.4); pointer-events: none;
}

/* ── 4-stat counter ── */
#pf-stats { padding: clamp(48px, 7vh, 84px) 24px; }
.pf-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.pf-stat {
  text-align: center; padding: 28px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}
.pf-stat-num {
  display: block; font-size: clamp(2.4rem, 4.6vw, 3.6rem); font-weight: 800;
  letter-spacing: -0.01em; color: var(--primary); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pf-stat-label {
  display: block; margin-top: 10px; font-size: 0.86rem;
  letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.65);
}
.pf-stats-source {
  max-width: 1100px; margin: 18px auto 0; text-align: center;
  font-size: 0.7rem; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.38);
}
@media (max-width: 860px) {
  .pf-stats-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pf-stat { padding: 20px 10px; }
}

/* ── Sales-machine block ── */
#sales-machine .pf-sm-desc { max-width: 760px; }
.pf-sm-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1160px; margin: 40px auto 0;
}
/* Flexis-style benefit cards: tall, imagery behind (dim by default, revealed
   on hover), flat-green category label on top. --sm-img set per card inline. */
.pf-sm-item {
  position: relative; overflow: hidden; text-align: left;
  min-height: 420px; padding: 26px;
  display: flex; flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px;
  background: #05080f;
  transition: border-color 0.3s ease;
}
.pf-sm-item::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: var(--sm-img); background-size: cover; background-position: center;
  opacity: 0.55; transform: scale(1.01); /* 0.3 read as black on real displays (2026-07-12) */
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.pf-sm-item::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(3, 6, 12, 0.85) 0%, rgba(3, 6, 12, 0.25) 52%, rgba(3, 6, 12, 0.55) 100%);
}
.pf-sm-item:hover { border-color: rgba(0, 255, 102, 0.4); }
.pf-sm-item:hover::before { opacity: 0.9; transform: scale(1.05); }
.pf-sm-item h4 {
  position: relative; z-index: 1;
  font-family: var(--font-tech); font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.06em; color: var(--primary); text-transform: uppercase; line-height: 1.35;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}
.pf-sm-item h4::before { content: '▸ '; }
.pf-sm-item p {
  position: relative; z-index: 1;
  margin-top: 12px; font-size: 0.94rem; line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.7);
}
#sales-machine .pf-btn-row { margin-top: 40px; }
@media (max-width: 960px) { .pf-sm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .pf-sm-grid { grid-template-columns: 1fr; }
  /* no hover on touch — keep the imagery present */
  .pf-sm-item { min-height: 300px; }
  .pf-sm-item::before { opacity: 0.55; }
}

/* ── Feature-stage HTML overlay slides (e.g. Avatar Guided Tours) ──
   The narration bubble floats as a lower third over the slide's banner —
   the same framing the future HeyGen clip gets. */
.wf-media.has-html { background-color: #070d16; }
.wf-html {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 24px clamp(20px, 3.5vw, 44px) 96px; /* clear of the dots row */
}
.wf-avatar-bubble {
  max-width: 400px;
  background: rgba(0, 0, 0, 0.72); border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px; padding: 16px 18px; text-align: left;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.wf-avatar-bubble span {
  display: block; font-size: 0.58rem; color: var(--primary);
  letter-spacing: 0.1em; margin-bottom: 7px;
}
.wf-avatar-bubble p {
  font-size: 0.92rem; color: rgba(255, 255, 255, 0.88); line-height: 1.55;
}
@media (max-width: 760px) {
  .wf-html { align-items: flex-start; justify-content: center; padding: 56px 18px 0; }
  .wf-avatar-bubble { text-align: center; }
}

/* ── How it works — 3 steps (2026-07-12, the missing piece per first-timer feedback) ── */
.hiw-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1160px; margin: 36px auto 0;
}
.hiw-step {
  position: relative; overflow: hidden;
  padding: 26px 26px 30px; text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}
/* glow pooling behind the step number (2026-07-12, Michael; v18 boosted —
   the 0.14-alpha first pass was invisible on real displays) */
.hiw-step::before {
  content: ''; position: absolute; top: -70px; left: -70px;
  width: 270px; height: 270px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 102, 0.34) 0%, rgba(0, 255, 102, 0.12) 45%, transparent 72%);
  filter: blur(4px);
  pointer-events: none;
}
.hiw-step {
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.06) 0%, rgba(255, 255, 255, 0.02) 45%);
}
.hiw-num {
  position: relative; display: block;
  font-size: 1.1rem; font-weight: 700; letter-spacing: 0.16em;
  color: var(--primary); margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(0, 255, 102, 0.9), 0 0 26px rgba(0, 255, 102, 0.5);
}
.hiw-step h4 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.hiw-step p { font-size: 0.92rem; line-height: 1.65; color: rgba(255, 255, 255, 0.7); }
@media (max-width: 860px) { .hiw-grid { grid-template-columns: 1fr; } }

/* Custom tiers went numberless 2026-07-12 (first-timer feedback: the $10k–$50k
   anchors scared people off before they understood the product) */
.pf-price--request { font-size: clamp(1.5rem, 2.6vw, 2rem); padding-top: 6px; }

/* FEATURES carries the section solo now (2026-07-12 final trim) — eyebrow at
   headline scale */
.section-tag--xl { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: 0.14em; margin-bottom: 4px; }

/* ══════════════════════════════════════════════════════════════════════════
   THE CONFIGURATOR (2026-07-15) — skins · media · customize · upgrade
   ══════════════════════════════════════════════════════════════════════════ */
.cfg-eyebrow {
  display: inline-block; font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 6px;
}
.cfg-eyebrow b { color: var(--primary); margin-right: 4px; }
.cfg-note { max-width: 1160px; margin: 26px auto 0; text-align: center; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.cfg-note b { color: var(--primary); font-weight: 600; }

/* ── skins: 3 × 2 grid of mini-interface mocks (placeholders until the six
      real skin demos exist — same space, six UIs) ── */
.skin-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1240px; margin: 40px auto 0;
}
.skin-card {
  border: 1px solid rgba(0, 255, 102, 0.22); border-radius: 16px; overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.skin-card:hover { border-color: rgba(0, 255, 102, 0.55); transform: translateY(-4px); }
.skin-thumb {
  position: relative; aspect-ratio: 16 / 9.5; display: flex; flex-direction: column;
  justify-content: space-between; padding: 14px 16px;
}
.sk-title { display: block; width: 42%; height: 9px; border-radius: 3px; }
.sk-stage { display: block; flex: 1; margin: 10px 0; border-radius: 8px; }
.sk-dock { display: flex; gap: 6px; justify-content: center; }
.sk-dock i { width: 26px; height: 10px; border-radius: 3px; }
/* six distinct interface languages */
.skin--mission .skin-thumb { background: #05100a; }
.skin--mission .sk-title { background: #00ff66; }
.skin--mission .sk-stage { background: linear-gradient(135deg, #0a2416, #051009); border: 1px solid rgba(0,255,102,0.35); }
.skin--mission .sk-dock i { background: rgba(0,255,102,0.28); border: 1px solid rgba(0,255,102,0.5); border-radius: 1px; }
.skin--modern .skin-thumb { background: #eceff1; }
.skin--modern .sk-title { background: #26313a; width: 30%; border-radius: 6px; }
.skin--modern .sk-stage { background: linear-gradient(160deg, #cfd8dc, #f6f8f9); border-radius: 14px; }
.skin--modern .sk-dock i { background: #fff; border-radius: 999px; box-shadow: 0 2px 6px rgba(0,0,0,0.12); }
.skin--futuristic .skin-thumb { background: #04070f; }
.skin--futuristic .sk-title { background: #00d4ff; box-shadow: 0 0 12px rgba(0,212,255,0.7); }
.skin--futuristic .sk-stage { background: radial-gradient(80% 90% at 50% 100%, #062338, #04070f); border: 1px solid rgba(0,212,255,0.4); }
.skin--futuristic .sk-dock i { background: rgba(0,212,255,0.18); border: 1px solid #00d4ff; border-radius: 999px; box-shadow: 0 0 8px rgba(0,212,255,0.4); }
.skin--retro .skin-thumb { background: #1d1204; }
.skin--retro .sk-title { background: #ffb020; width: 55%; }
.skin--retro .sk-stage { background: repeating-linear-gradient(0deg, #2a1a06 0 3px, #221405 3px 6px); border: 2px solid #ffb020; border-radius: 4px; }
.skin--retro .sk-dock i { background: #ffb020; border-radius: 0; height: 12px; }
.skin--noir .skin-thumb { background: #0b0b0b; }
.skin--noir .sk-title { background: #f5f5f5; width: 36%; height: 12px; }
.skin--noir .sk-stage { background: linear-gradient(120deg, #2e2e2e, #101010 60%); border: 1px solid #f5f5f5; border-radius: 2px; }
.skin--noir .sk-dock i { background: transparent; border: 1px solid #f5f5f5; border-radius: 0; }
.skin--luxe .skin-thumb { background: #14110b; }
.skin--luxe .sk-title { background: #d8b46a; height: 6px; width: 50%; }
.skin--luxe .sk-stage { background: linear-gradient(150deg, #241d10, #14110b); border-top: 1px solid #d8b46a; border-bottom: 1px solid #d8b46a; border-radius: 0; }
.skin--luxe .sk-dock i { background: transparent; border: 1px solid #d8b46a; border-radius: 999px; width: 18px; height: 8px; }
.skin-meta { padding: 18px 20px 20px; }
.skin-meta h3 { font-family: var(--font-tech); font-size: 1.15rem; font-weight: 800; letter-spacing: 0.1em; color: #fff; margin: 0 0 4px; }
.skin-tag { font-size: 0.9rem; color: var(--primary); margin: 0 0 6px; }
.skin-desc { font-size: 0.84rem; line-height: 1.55; color: rgba(255,255,255,0.6); margin: 0 0 14px; }
.skin-chip {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px; padding: 5px 12px;
}

/* ── media + feature tiles ── */
.cfg-grid { display: grid; gap: 16px; max-width: 1240px; margin: 40px auto 0; }
.cfg-grid--media { grid-template-columns: repeat(3, 1fr); }
.cfg-grid--features { grid-template-columns: repeat(3, 1fr); }
.cfg-tile {
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px;
  background: rgba(255, 255, 255, 0.02); padding: 22px 24px; text-align: left;
  transition: border-color 0.25s ease;
}
.cfg-tile:hover { border-color: rgba(0, 255, 102, 0.4); }
.cfg-tile-badge {
  display: inline-block; font-size: 1.3rem; font-weight: 800; letter-spacing: 0.08em;
  color: var(--primary); margin-bottom: 8px;
}
.cfg-tile p { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.7); margin: 0; }
.cfg-tile--feature h4 {
  font-family: var(--font-tech); font-size: 1rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: #fff; margin: 0 0 8px;
}
.cfg-tile--feature h4::before { content: '▸ '; color: var(--primary); }

/* ── lander tiers ── */
.cfg-tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1160px; margin: 40px auto 0; }
.cfg-tier { padding: 28px 26px; text-align: left; }
.cfg-tier h4 { font-family: var(--font-tech); font-size: 1.2rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin: 0 0 4px; }
.cfg-tier-sub { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0 0 14px; }
.cfg-tier ul { list-style: none; padding: 0; margin: 0; }
.cfg-tier li { position: relative; padding-left: 1.2rem; font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.78); }
.cfg-tier li::before { content: '▸'; position: absolute; left: 0; color: var(--primary); }

@media (max-width: 960px) {
  .skin-grid, .cfg-grid--media, .cfg-grid--features { grid-template-columns: repeat(2, 1fr); }
  .cfg-tier-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .skin-grid, .cfg-grid--media, .cfg-grid--features { grid-template-columns: 1fr; }
}

/* ── v23 (2026-07-15): configurator re-housed in the services-pipeline build-out
      (Michael: keep the 4 categories, restore the full services-page design).
      The skin CSS mini-mocks above now live INSIDE .panel cards as the card art
      (until the six real skin demos exist) — override the standalone-card
      geometry so the mock fills the panel behind the overlay + content. ── */
.panel--skin .skin-thumb {
  position: absolute; inset: 0; z-index: 0;
  aspect-ratio: auto;
  padding: 16px 18px 110px; /* keep the dock clear of the bottom-anchored panel-content text */
}
/* style.css tuned .pipeline-nav's sticky offset for the old 102px .main-nav;
   the mbb-nav is 87px at rest and 66px once .scrolled (which is always the
   state while this nav is sticking) — close the see-through gap. */
.pipeline-nav { top: 65px; }

/* ── v24 (2026-07-15): SONO XR brand lockup above the hero showcase —
      the platform page finally names the platform. ── */
.pf-brand-lockup { text-align: center; margin: 0 auto 26px; }
.pf-brand-lockup img { height: 62px; width: auto; display: inline-block; }
.pf-brand-lockup p {
  margin: 10px 0 0; font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.pf-brand-lockup p span { color: rgba(255,255,255,0.4); }
@media (max-width: 860px) { .pf-brand-lockup img { height: 48px; } }

/* ── v25 (2026-07-15): the full SXR banner (mark + tagline, the asset that
      came out of the mega menu) becomes the platform page's brand moment. ── */
.pf-brand-lockup .pf-brand-banner {
  height: auto; width: min(560px, 86vw); display: inline-block;
  border-radius: 14px; border: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 860px) { .pf-brand-lockup .pf-brand-banner { width: 92vw; } }
