/* ============================================================
   CREATIVECORE — styles.css
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --ink: #0D0D0D;
  --ink-2: #161616;
  --ink-text: #F2F2F2;
  --ink-muted: #888888;
  --paper: #FFFFFF;
  --paper-2: #F7F7F5;
  --type: #0D0D0D;
  --type-2: #4A4A4A;
  --type-3: #8A8A8A;
  --border: #E5E5E3;
  --blue: #1A6AFF;
  --display: 'Manrope', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --trans: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--paper); color: var(--type);
  font-family: var(--sans); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utilities ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.d-br { display: none; }
@media(min-width: 768px) { .d-br { display: inline; } }

/* ── Reveal animations ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up-anim 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fade-up-anim {
  to { opacity: 1; transform: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--trans), border-color var(--trans), backdrop-filter var(--trans);
}

/* Mobile scrolled: full-width light bar */
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

/* Desktop scrolled: floating pill — background moves to nav-inner */
@media(min-width: 900px) {
  .nav.scrolled {
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav.scrolled .nav-inner {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-top: 14px;
    max-width: 1160px;
    height: 52px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  }
}

.nav.scrolled .nav-logo-img { filter: brightness(0); }
.nav.scrolled .nav-links a { color: var(--type-2); }
.nav.scrolled .nav-links a:hover { color: var(--type); }
.nav.scrolled .nav-cta {
  color: var(--type); border-color: var(--border);
}
.nav.scrolled .nav-cta:hover {
  background: var(--type); color: var(--paper); border-color: var(--type);
}
.nav.scrolled .hamburger-icon { color: var(--type-2); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1160px; margin: 0 auto; padding: 0 32px; height: 68px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
  height: 16px; width: auto; display: block;
  filter: brightness(0) invert(1);
  transition: filter var(--trans);
}

.nav-links { display: none; align-items: center; gap: 36px; }
@media(min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-family: var(--display); font-size: 0.85rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.6); letter-spacing: 0.01em;
  transition: color var(--trans);
}
.nav-links a:hover { color: #fff; }

.nav-actions {
  display: none; align-items: center; gap: 16px;
}
@media(min-width: 900px) { .nav-actions { display: flex; } }

.nav-cta-alt {
  font-family: var(--display); font-size: 0.85rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.45); letter-spacing: 0.01em;
  transition: color var(--trans);
}
.nav-cta-alt:hover { color: rgba(255, 255, 255, 0.85); }
.nav.scrolled .nav-cta-alt { color: var(--type-3); }
.nav.scrolled .nav-cta-alt:hover { color: var(--ink); }

.nav-cta {
  display: inline-block;
  padding: 8px 20px;
  font-family: var(--display); font-size: 0.85rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.8); letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px; transition: var(--trans);
}
.nav-cta:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

.nav-hamburger {
  display: flex; align-items: center; justify-content: center;
  padding: 6px; background: none; border: none; cursor: pointer;
}
@media(min-width: 900px) { .nav-hamburger { display: none; } }

.hamburger-icon {
  color: rgba(255, 255, 255, 0.75);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), color var(--trans);
}
.nav-hamburger.open .hamburger-icon { transform: rotate(-45deg); }

.hamburger-path-top {
  stroke-dasharray: 12 63;
  transition: stroke-dasharray 300ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-hamburger.open .hamburger-path-top {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42px;
}

.nav-drawer {
  display: none; flex-direction: column;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 32px 32px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  display: block; padding: 14px 0;
  font-family: var(--display); font-size: 1rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--trans);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: #fff; }
.nav-drawer .drawer-cta-bootcamp { color: rgba(255, 255, 255, 0.5); }
.nav-drawer .drawer-cta-primary {
  color: rgba(255, 255, 255, 0.9); font-weight: 600;
  border-bottom: none;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: sticky; top: 0; z-index: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 75% 65% at 50% 44%, #0C1F40 0%, var(--ink) 68%);
  display: flex; align-items: center;
  padding: 120px 0 100px; overflow: hidden;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26, 106, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 106, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 72%);
  pointer-events: none;
}

.hero-dotted-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}


.hero-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--display); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(68, 136, 255, 0.9); margin-bottom: 28px;
}

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 24px; max-width: 980px;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.60); line-height: 1.75;
  margin-bottom: 44px; max-width: 580px;
}

.btn-hero {
  display: inline-flex; align-items: center;
  padding: 14px 34px;
  font-family: var(--display); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink); background: #fff;
  border-radius: 6px; transition: var(--trans);
}
.btn-hero:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.22), 0 0 56px rgba(255, 255, 255, 0.09);
}

.hero-rule {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: rgba(255, 255, 255, 0.06);
}

/* ── SECTION LABELS ─────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px;
  opacity: 0.85;
}

.section-h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.025em;
  color: var(--type);
}

/* ── SITE BODY (stacking context above sticky hero) ────────── */
.site-body { position: relative; z-index: 1; }

/* ── INTRO ──────────────────────────────────────────────────── */
.intro {
  background: var(--paper); padding: 108px 0;
  border-radius: 56px 56px 0 0;
  position: relative; z-index: 1;
  margin-top: -56px;
}

.intro-body { margin-bottom: 72px; max-width: 800px; }

.intro-statement {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500; line-height: 1.55; letter-spacing: -0.01em;
  color: var(--type); margin-bottom: 24px;
}

.intro-secondary {
  font-size: 0.95rem; color: var(--type-3); line-height: 1.65;
}

.intro-pillars {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border); border-left: 1px solid var(--border);
}
@media(min-width: 768px) {
  .intro-pillars { grid-template-columns: repeat(4, 1fr); }
}

.pillar {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 40px 32px;
  border-bottom: 1px solid var(--border); border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.pillar::before {
  content: attr(data-letter);
  position: absolute; bottom: -0.15em; right: 0.1em;
  font-family: var(--display); font-size: 7rem; font-weight: 800;
  color: var(--blue); opacity: 0.07;
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -0.05em;
  transition: opacity 0.35s ease, text-shadow 0.35s ease;
}
.pillar:hover::before {
  opacity: 0.13;
  text-shadow:
    0 0 32px rgba(26, 106, 255, 0.55),
    0 0 72px rgba(26, 106, 255, 0.25);
}
.pillar-num {
  font-family: var(--display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; color: var(--type-3);
  flex-shrink: 0; padding-top: 3px;
}
.pillar-text h3 {
  font-family: var(--display); font-size: 0.95rem; font-weight: 700;
  color: var(--type); margin-bottom: 8px; letter-spacing: -0.01em;
}
.pillar-text p {
  font-size: 0.84rem; color: var(--type-3); line-height: 1.65;
}

/* ── SHOWCASE ACCORDION ─────────────────────────────────────── */
.showcase {
  background: var(--ink);
  padding: 108px 0;
  position: relative; z-index: 1;
}
.showcase-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.showcase-text {
  flex: 0 0 360px;
}
.showcase-h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.showcase-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  margin-bottom: 36px;
}
.btn-showcase {
  display: inline-block;
  font-family: var(--display); font-size: 0.85rem; font-weight: 600;
  color: var(--ink);
  background: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  letter-spacing: -0.01em;
  transition: background var(--trans), box-shadow var(--trans);
  white-space: nowrap;
}
.btn-showcase:hover {
  background: rgba(255,255,255,0.88);
  box-shadow: 0 0 24px rgba(255,255,255,0.16);
}
.showcase-accordion {
  display: flex;
  gap: 10px;
  flex: 1;
  height: 460px;
  min-width: 0;
}
.sa-item {
  position: relative;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  width: 56px;
  transition: width 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.sa-item.active { width: 340px; }
.sa-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.sa-item:hover .sa-img { transform: scale(1.04); }
.sa-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.sa-label {
  position: absolute;
  color: #fff;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: bottom 0.35s ease, left 0.35s ease, transform 0.35s ease;
}
.sa-item:not(.active) .sa-label {
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center center;
}
.sa-item.active .sa-label {
  bottom: 22px;
  left: 28px;
  transform: none;
}
@media (max-width: 960px) {
  .showcase-inner { flex-direction: column; gap: 48px; }
  .showcase-text { flex: none; width: 100%; }
  .showcase-accordion { width: 100%; height: 360px; }
  .sa-item.active { width: 260px; }
}
@media (max-width: 600px) {
  .showcase-accordion { height: 280px; gap: 6px; }
  .sa-item { width: 44px; }
  .sa-item.active { width: 180px; }
  .sa-label { font-size: 0.74rem; }
  .sa-item:not(.active) .sa-label { bottom: 56px; }
}

/* ── WORK ───────────────────────────────────────────────────── */
.work {
  background: var(--paper-2); padding: 108px 0;
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.work .container { position: relative; z-index: 1; }

.work-pattern {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(4px 100px at 0px 235px, #2D2D2D, transparent),
    radial-gradient(4px 100px at 300px 235px, #2D2D2D, transparent),
    radial-gradient(1.5px 1.5px at 150px 117.5px, #2D2D2D 100%, transparent 150%),
    radial-gradient(4px 100px at 0px 252px, #2D2D2D, transparent),
    radial-gradient(4px 100px at 300px 252px, #2D2D2D, transparent),
    radial-gradient(1.5px 1.5px at 150px 126px, #2D2D2D 100%, transparent 150%),
    radial-gradient(4px 100px at 0px 150px, #2D2D2D, transparent),
    radial-gradient(4px 100px at 300px 150px, #2D2D2D, transparent),
    radial-gradient(1.5px 1.5px at 150px 75px, #2D2D2D 100%, transparent 150%),
    radial-gradient(4px 100px at 0px 253px, #2D2D2D, transparent),
    radial-gradient(4px 100px at 300px 253px, #2D2D2D, transparent),
    radial-gradient(1.5px 1.5px at 150px 126.5px, #2D2D2D 100%, transparent 150%),
    radial-gradient(4px 100px at 0px 204px, #2D2D2D, transparent),
    radial-gradient(4px 100px at 300px 204px, #2D2D2D, transparent),
    radial-gradient(1.5px 1.5px at 150px 102px, #2D2D2D 100%, transparent 150%),
    radial-gradient(4px 100px at 0px 134px, #2D2D2D, transparent),
    radial-gradient(4px 100px at 300px 134px, #2D2D2D, transparent),
    radial-gradient(1.5px 1.5px at 150px 67px, #2D2D2D 100%, transparent 150%),
    radial-gradient(4px 100px at 0px 179px, #2D2D2D, transparent),
    radial-gradient(4px 100px at 300px 179px, #2D2D2D, transparent),
    radial-gradient(1.5px 1.5px at 150px 89.5px, #2D2D2D 100%, transparent 150%),
    radial-gradient(4px 100px at 0px 299px, #2D2D2D, transparent),
    radial-gradient(4px 100px at 300px 299px, #2D2D2D, transparent),
    radial-gradient(1.5px 1.5px at 150px 149.5px, #2D2D2D 100%, transparent 150%),
    radial-gradient(4px 100px at 0px 215px, #2D2D2D, transparent),
    radial-gradient(4px 100px at 300px 215px, #2D2D2D, transparent),
    radial-gradient(1.5px 1.5px at 150px 107.5px, #2D2D2D 100%, transparent 150%),
    radial-gradient(4px 100px at 0px 281px, #2D2D2D, transparent),
    radial-gradient(4px 100px at 300px 281px, #2D2D2D, transparent),
    radial-gradient(1.5px 1.5px at 150px 140.5px, #2D2D2D 100%, transparent 150%),
    radial-gradient(4px 100px at 0px 158px, #2D2D2D, transparent),
    radial-gradient(4px 100px at 300px 158px, #2D2D2D, transparent),
    radial-gradient(1.5px 1.5px at 150px 79px, #2D2D2D 100%, transparent 150%),
    radial-gradient(4px 100px at 0px 210px, #2D2D2D, transparent),
    radial-gradient(4px 100px at 300px 210px, #2D2D2D, transparent),
    radial-gradient(1.5px 1.5px at 150px 105px, #2D2D2D 100%, transparent 150%);
  background-size:
    300px 235px, 300px 235px, 300px 235px,
    300px 252px, 300px 252px, 300px 252px,
    300px 150px, 300px 150px, 300px 150px,
    300px 253px, 300px 253px, 300px 253px,
    300px 204px, 300px 204px, 300px 204px,
    300px 134px, 300px 134px, 300px 134px,
    300px 179px, 300px 179px, 300px 179px,
    300px 299px, 300px 299px, 300px 299px,
    300px 215px, 300px 215px, 300px 215px,
    300px 281px, 300px 281px, 300px 281px,
    300px 158px, 300px 158px, 300px 158px,
    300px 210px, 300px 210px, 300px 210px;
  background-repeat: repeat;
  animation: workshop-fall 150s linear infinite;
}

.work-pattern::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background-image: radial-gradient(circle at 50% 50%, transparent 0, transparent 2px, #F7F7F5 2px);
  background-size: 8px 8px;
}
.work-header { margin-bottom: 52px; }
.work-sub {
  font-size: 0.92rem; color: var(--type-3); line-height: 1.7;
  margin-top: 14px; max-width: 580px;
}

/* ── WORK BENTO GRID ────────────────────────────────────────── */
.work-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.wb-card {
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: 14px; padding: 28px 28px 24px;
  display: flex; flex-direction: column;
  grid-column: span 2;
  transition: border-color var(--trans), box-shadow var(--trans);
  overflow: hidden; position: relative;
}
.wb-card:hover {
  border-color: rgba(26,106,255,0.25);
  box-shadow: 0 4px 24px rgba(26,106,255,0.06);
}

.wb-card--ink {
  background: var(--ink);
  border-color: rgba(255,255,255,0.06);
}
.wb-card--ink:hover { border-color: rgba(26,106,255,0.4); }

.wb-card--wide { grid-column: span 3; }

.wb-service {
  font-family: var(--display); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--type-3); margin-bottom: 12px; display: block;
}
.wb-card--ink .wb-service { color: rgba(255,255,255,0.3); }

.wb-visual {
  margin: 0 -4px 12px;
  flex-shrink: 0;
}
.wb-visual--ring svg { width: 72px; height: 72px; display: block; }
.wb-visual--wave svg { width: 100%; height: 40px; display: block; }
.wb-visual--bars svg { width: 80px; height: 44px; display: block; }

.wb-stat-wrap {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 8px;
}
.wb-stat {
  font-family: var(--display); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  color: #fff;
}
.wb-stat--blue { color: var(--blue); }
.wb-card:not(.wb-card--ink) .wb-stat { color: var(--ink); }
.wb-unit {
  font-family: var(--display); font-size: 0.9rem; font-weight: 600;
  color: rgba(255,255,255,0.5); letter-spacing: -0.01em;
}
.wb-card:not(.wb-card--ink) .wb-unit { color: var(--type-3); }

.wb-client {
  font-family: var(--display); font-size: 0.88rem; font-weight: 700;
  color: rgba(255,255,255,0.85); letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.wb-card:not(.wb-card--ink) .wb-client { color: var(--ink); }

.wb-detail {
  font-size: 0.82rem; color: rgba(255,255,255,0.38);
  line-height: 1.5; margin-top: auto; padding-top: 8px;
}
.wb-card:not(.wb-card--ink) .wb-detail { color: var(--type-3); }

/* Wide card inner layout */
.wb-card--wide { flex-direction: row; align-items: center; gap: 32px; }
.wb-wide-left { flex: 1; display: flex; flex-direction: column; }
.wb-wide-left .wb-stat-wrap { margin-top: 8px; }
.wb-wide-left .wb-detail { padding-top: 12px; font-size: 0.875rem; }
.wb-wide-right { flex-shrink: 0; width: 140px; }
.wb-wide-right svg { width: 100%; height: auto; display: block; }

/* Credentials panel */
.wb-credentials {
  display: flex; flex-direction: column; gap: 14px;
  border-left: 1px solid var(--border); padding-left: 28px;
}
.wb-cred-item { display: flex; flex-direction: column; gap: 2px; }
.wb-cred-num {
  font-family: var(--display); font-size: 1.5rem; font-weight: 800;
  color: var(--blue); letter-spacing: -0.04em; line-height: 1;
}
.wb-cred-label {
  font-family: var(--display); font-size: 0.68rem; font-weight: 600;
  color: var(--type-3); letter-spacing: 0.04em;
}

/* Industries list */
.wb-industries {
  display: flex; flex-direction: column; gap: 8px;
  list-style: none; margin-top: 12px;
}
.wb-industries li {
  font-size: 0.82rem; color: var(--type-2);
  padding-left: 12px; position: relative; line-height: 1.4;
}
.wb-industries li::before {
  content: '·'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700;
}

/* Bento responsive */
@media(max-width: 900px) {
  .work-bento { grid-template-columns: repeat(4, 1fr); }
  .wb-card { grid-column: span 2; }
  .wb-card--wide { grid-column: span 4; flex-direction: column; gap: 20px; align-items: flex-start; }
  .wb-credentials { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 16px; flex-direction: row; gap: 24px; }
  .wb-wide-right { width: 100%; }
  .wb-wide-right svg { max-width: 200px; }
}
@media(max-width: 600px) {
  .work-bento { grid-template-columns: 1fr 1fr; gap: 8px; }
  .wb-card { grid-column: span 1; padding: 20px; }
  .wb-card--wide { grid-column: span 2; }
  .wb-stat { font-size: 2rem; }
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services-section {
  background: var(--paper); padding: 108px 0;
  border-top: 1px solid var(--border);
}

.svc-header {
  text-align: center; max-width: 560px;
  margin: 0 auto 56px;
}
.svc-sub {
  font-size: 0.9rem; color: var(--type-3);
  line-height: 1.7; margin-top: 16px;
}

/* Features-4 style bordered grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.sg-cell {
  padding: 36px 40px;
  border-right: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  transition: background var(--trans);
}
.sg-cell:hover { background: var(--paper-2); }
.sg-cell:nth-child(3n)   { border-right: none; }
.sg-cell:nth-child(n+4)  { border-bottom: none; }

.sg-icon-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.sg-icon {
  display: flex; align-items: center; color: var(--ink);
  flex-shrink: 0; transition: color var(--trans);
}
.sg-cell:hover .sg-icon { color: var(--blue); }
.sg-title {
  font-family: var(--display); font-size: 0.9rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
}
.sg-desc {
  font-size: 0.9rem; color: var(--type-3); line-height: 1.7;
}

@media(max-width: 768px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .sg-cell:nth-child(3n) { border-right: 1.5px solid var(--border); }
  .sg-cell:nth-child(2n) { border-right: none; }
  .sg-cell:nth-child(n+4) { border-bottom: 1.5px solid var(--border); }
  .sg-cell:nth-child(n+5) { border-bottom: none; }
}
@media(max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .sg-cell { border-right: none !important; border-bottom: 1.5px solid var(--border) !important; }
  .sg-cell:last-child { border-bottom: none !important; }
  .sg-cell { padding: 28px 24px; }
}

/* 4-column services override */
.svc-grid--4 { grid-template-columns: repeat(4, 1fr); }
.svc-grid--4 .sg-cell:nth-child(3n)  { border-right: 1.5px solid var(--border); }
.svc-grid--4 .sg-cell:nth-child(n+4) { border-bottom: 1.5px solid var(--border); }
.svc-grid--4 .sg-cell:nth-child(4n)  { border-right: none; }
.svc-grid--4 .sg-cell:nth-child(n+5) { border-bottom: none; }
.sg-title { text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; }
@media(max-width: 900px) {
  .svc-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .svc-grid--4 .sg-cell:nth-child(4n)  { border-right: 1.5px solid var(--border); }
  .svc-grid--4 .sg-cell:nth-child(n+5) { border-bottom: 1.5px solid var(--border); }
  .svc-grid--4 .sg-cell:nth-child(2n)  { border-right: none; }
  .svc-grid--4 .sg-cell:nth-child(n+3) { border-bottom: none; }
}
@media(max-width: 480px) {
  .svc-grid--4 { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials {
  background: var(--paper-2); padding: 108px 0;
  border-top: 1px solid var(--border);
}

.testi-header {
  margin-bottom: 64px;
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 48px;
}
.testi-header-copy { flex: 1; max-width: 520px; }
.testi-sub { font-size: 0.95rem; color: var(--type-3); margin-top: 16px; line-height: 1.65; }

.testi-scorecard {
  flex-shrink: 0; min-width: 172px;
  display: flex; flex-direction: column; align-items: flex-end;
  padding: 24px 28px;
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  margin-top: 34px;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.testi-scorecard:hover {
  border-color: rgba(26,106,255,0.25);
  box-shadow: 0 4px 24px rgba(26,106,255,0.06);
}
.ts-service {
  font-family: var(--display); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--type-3); display: block; margin-bottom: 14px;
}
.ts-num {
  font-family: var(--display); font-size: 3rem; font-weight: 800;
  color: var(--blue); letter-spacing: -0.05em; line-height: 1;
  display: block; margin-bottom: 4px;
}
.ts-label {
  font-family: var(--display); font-size: 0.8rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em; display: block;
  margin-bottom: 4px;
}
.ts-sub {
  font-size: 0.7rem; color: var(--type-3);
  display: block; text-align: right; line-height: 1.5;
}
@media(max-width: 640px) {
  .testi-header { flex-direction: column; gap: 28px; }
  .testi-scorecard { align-items: flex-start; }
  .ts-sub { text-align: left; }
}

.testi-columns {
  display: flex; gap: 16px; justify-content: center;
  max-height: 720px; overflow: hidden;
  padding: 0 max(24px, calc((100vw - 1160px) / 2 + 32px));
  mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
}

.testi-col { flex: 1; min-width: 0; overflow: hidden; }
.testi-col--md { display: none; }
.testi-col--lg { display: none; }
@media(min-width: 640px) { .testi-col--md { display: block; } }
@media(min-width: 900px) { .testi-col--lg { display: block; } }

@keyframes testi-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.testi-track {
  display: flex; flex-direction: column; gap: 16px; padding-bottom: 16px;
  animation: testi-scroll linear infinite;
}

.testi-card {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 14px; padding: 26px 24px;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.testi-card:hover {
  border-color: #CFCFCD; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testi-text {
  font-size: 0.88rem; color: var(--type-2); line-height: 1.72;
  margin-bottom: 20px;
}
.testi-text::before { content: '\201C'; color: var(--blue); opacity: 0.7; }
.testi-text::after  { content: '\201D'; color: var(--blue); opacity: 0.7; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.testi-avatar-init {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 0.68rem; font-weight: 700;
  color: #fff; letter-spacing: 0.02em;
}
.testi-name {
  font-family: var(--display); font-size: 0.85rem; font-weight: 700;
  color: var(--type); letter-spacing: -0.01em;
}
.testi-role { font-size: 0.76rem; color: var(--type-3); margin-top: 1px; }

/* ── TEARDOWN ENTRY ─────────────────────────────────────────── */
.teardown-entry {
  background: var(--ink); padding: 88px 0;
  position: relative;
}
.teardown-entry-inner {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.teardown-entry .section-label { color: rgba(68,136,255,0.9); }
.teardown-entry .section-h2 { color: #fff; }
.te-body {
  font-size: 1rem; color: rgba(255,255,255,0.62); line-height: 1.78;
  margin-bottom: 32px; max-width: 520px;
}
.btn-te {
  display: inline-flex; align-items: center;
  padding: 14px 32px;
  font-family: var(--display); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink); background: #fff;
  border-radius: 6px; transition: var(--trans);
}
.btn-te:hover { background: rgba(255,255,255,0.92); }
@media(max-width: 768px) {
  .teardown-entry-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── WHY PET ────────────────────────────────────────────────── */
.why-pet {
  background: var(--paper); padding: 108px 0;
  border-top: 1px solid var(--border);
}
.wp-inner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.wp-body {
  font-size: 1rem; color: var(--type-2); line-height: 1.78;
}
.wp-stats {
  display: flex; gap: 40px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.wp-stat-item {
  display: flex; flex-direction: column; gap: 4px;
}
.wp-stat-num {
  font-family: var(--display); font-size: 1.6rem; font-weight: 800;
  color: var(--ink); letter-spacing: -0.03em;
}
.wp-stat-label {
  font-size: 0.78rem; color: var(--type-3); line-height: 1.4; max-width: 120px;
}
@media(max-width: 768px) {
  .wp-inner { grid-template-columns: 1fr; gap: 32px; }
  .wp-stats { gap: 28px; }
}

/* ── PRICING ────────────────────────────────────────────────── */
.pricing {
  background: var(--paper-2); padding: 108px 0;
  border-top: 1px solid var(--border);
}

.pricing-header { margin-bottom: 64px; max-width: 600px; }
.pricing-path {
  font-family: var(--display); font-size: 1rem; font-weight: 700;
  color: var(--blue); margin-top: 20px; letter-spacing: -0.01em;
}
.pricing-sub {
  font-size: 0.95rem; color: var(--type-3); margin-top: 10px; line-height: 1.65;
}

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

.price-card {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: box-shadow var(--trans), border-color var(--trans);
}
.price-card:hover {
  border-color: #CFCFCD;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

.price-card--popular,
.price-card--recommended {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 12px 40px rgba(26, 106, 255, 0.12);
}
.price-card--popular:hover,
.price-card--recommended:hover {
  box-shadow: 0 0 0 1px var(--blue), 0 16px 52px rgba(26, 106, 255, 0.18);
}
.price-card--popular .pc-popular-label { display: inline-block; }
.price-card--recommended .pc-featured-label { display: inline-block; }

.pc-popular-label,
.pc-featured-label {
  display: none; margin-bottom: 14px;
  padding: 3px 10px;
  font-family: var(--display); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); background: rgba(26, 106, 255, 0.07);
  border: 1px solid rgba(26, 106, 255, 0.18); border-radius: 100px;
}

.pc-tier {
  font-family: var(--display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--type-3); margin-bottom: 14px;
}

.pc-price {
  font-family: var(--display); font-size: 2.5rem; font-weight: 800;
  letter-spacing: -0.04em; color: var(--type); line-height: 1;
  margin-bottom: 6px;
}
.pc-per {
  font-family: var(--sans); font-size: 1rem; font-weight: 400;
  color: var(--type-3); letter-spacing: 0;
}

.pc-desc {
  font-size: 0.875rem; color: var(--type-2); line-height: 1.65;
  margin-top: 12px; margin-bottom: 28px;
  padding-bottom: 28px; border-bottom: 1px solid var(--border);
}

.pc-features {
  flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px;
}
.pc-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--type-2); line-height: 1.5;
}
.pc-features li::before {
  content: '—'; color: var(--type-3); font-size: 0.8rem;
  flex-shrink: 0; line-height: 1.5;
}

.btn-card-cta {
  display: block; text-align: center;
  padding: 12px 24px; margin-top: auto;
  font-family: var(--display); font-size: 0.88rem; font-weight: 600;
  color: var(--type-3);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: transparent;
  transition: color var(--trans), background var(--trans), border-color var(--trans);
}
.btn-card-cta:hover { border-color: #B8B8B6; color: var(--type-2); }

.price-card--popular .btn-card-cta,
.price-card--recommended .btn-card-cta {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
.price-card--popular .btn-card-cta:hover,
.price-card--recommended .btn-card-cta:hover {
  background: #0F5CE8;
  border-color: #0F5CE8;
}

/* ── BUDGET TYPE TOGGLE ─────────────────────────────────────── */
.budget-type-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.bt-opt {
  font-family: var(--display); font-size: 0.8rem; font-weight: 600;
  color: var(--type-3); transition: color var(--trans);
  user-select: none; letter-spacing: -0.01em;
}
.bt-opt--on { color: var(--ink); }

.btt {
  position: relative; display: block;
  cursor: pointer; height: 32px; width: 52px;
  transform: translateZ(0); flex-shrink: 0;
}
.btt-input {
  width: 100%; height: 100%;
  appearance: none; -webkit-appearance: none;
  border-radius: 100px; margin: 0;
  background: #D2D6E9; outline: none; cursor: pointer;
  transition: background 0.5s; transform: translate3d(0, 0, 0);
}
.btt-input:hover { background: #C7CBDF; }
.btt-input:checked { background: var(--blue); }
.btt-svg {
  pointer-events: none; position: absolute; inset: 0;
  width: 52px; height: 32px; fill: white; overflow: visible;
}
.btt-cl {
  transform-origin: 16px 16px;
  transform: translateX(0) scale(1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.btt-cr {
  transform-origin: 36px 16px;
  transform: translateX(-12px) scale(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.btt-drp {
  opacity: 0; transform-origin: 35px -1px;
  transition: opacity 0.2s, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.btt-input:checked ~ .btt-svg .btt-cl { transform: translateX(12px) scale(0); }
.btt-input:checked ~ .btt-svg .btt-cr { transform: translateX(0) scale(1); }
.btt-input:checked ~ .btt-svg .btt-drp { opacity: 1; }

.btt-goo-svg { position: fixed; width: 0; height: 0; overflow: hidden; top: -9999px; left: -9999px; }

/* Ecommerce mode — dim slider, lock to Custom */
.budget-block--ecomm .budget-range { opacity: 0.28; pointer-events: none; }
.budget-block--ecomm .budget-marks { opacity: 0.28; }

/* Budget drawer */
.budget-drawer { margin-bottom: 36px; }
.budget-toggle {
  display: flex; align-items: center; gap: 8px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 100px; padding: 9px 18px 9px 20px;
  font-family: var(--display); font-size: 0.82rem; font-weight: 600;
  color: var(--type-2); cursor: pointer;
  transition: color var(--trans), border-color var(--trans);
  margin: 0 auto 0;
}
.budget-toggle:hover { color: var(--ink); border-color: rgba(26,106,255,0.4); }
.budget-toggle svg { transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); flex-shrink: 0; }
.budget-toggle[aria-expanded="true"] { color: var(--ink); border-color: var(--blue); }
.budget-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.budget-calc {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}
.budget-calc.open { max-height: 620px; }
.budget-calc .budget-block { margin-top: 16px; margin-bottom: 0; }

/* Budget slider */
.budget-block {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 12px; padding: 32px 36px;
  margin-bottom: 36px;
}

.budget-top {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.budget-label {
  font-family: var(--display); font-size: 0.85rem; font-weight: 600;
  color: var(--type-2); letter-spacing: -0.01em;
}
.budget-value {
  font-family: var(--display); font-size: 1.35rem; font-weight: 800;
  color: var(--blue); letter-spacing: -0.03em;
}

.budget-track-wrap { margin-bottom: 12px; }

.budget-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: var(--border);
  border-radius: 100px; outline: none; cursor: pointer;
  transition: none;
}
.budget-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue); border: 3px solid var(--paper);
  box-shadow: 0 0 0 1.5px var(--blue), 0 2px 8px rgba(26, 106, 255, 0.3);
  cursor: grab; transition: transform 0.15s, box-shadow 0.15s;
}
.budget-range::-webkit-slider-thumb:active {
  cursor: grabbing; transform: scale(1.15);
  box-shadow: 0 0 0 1.5px var(--blue), 0 4px 16px rgba(26, 106, 255, 0.4);
}
.budget-range::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue); border: 3px solid var(--paper);
  box-shadow: 0 0 0 1.5px var(--blue); cursor: grab;
}
.budget-range:focus { outline: none; }
.budget-range:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(26, 106, 255, 0.25), 0 0 0 1.5px var(--blue);
}

.budget-marks {
  display: flex; justify-content: space-between;
  margin-bottom: 24px;
}
.budget-marks span {
  font-family: var(--display); font-size: 0.72rem; font-weight: 500;
  color: var(--type-3);
}

.budget-rec {
  font-size: 0.88rem; color: var(--type-3); line-height: 1.6;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.budget-rec strong {
  color: var(--blue); font-weight: 700;
}

.pricing-note {
  text-align: center; margin-top: 44px;
  font-size: 0.85rem; color: var(--type-3);
}
.pricing-adspend {
  margin-top: 10px; font-size: 0.78rem; color: var(--type-3);
  opacity: 0.75;
}

/* ── PARTNERSHIP MODEL ──────────────────────────────────────── */
.partnership-model {
  background: var(--ink);
  padding: 108px 0;
  position: relative;
  overflow: hidden;
}
.partnership-model::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.pm-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.pm-left .section-h2 { color: #fff; }
.pm-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pm-statement {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}
.pm-detail {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.48);
  max-width: 54ch;
}
.pm-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.pm-tier {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pm-tier--featured {
  background: rgba(26,106,255,0.08);
  border-color: rgba(26,106,255,0.28);
}
.pm-tier--equity {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.13);
}
.pm-tier-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(26,106,255,0.12);
  border: 1px solid rgba(26,106,255,0.22);
  border-radius: 4px;
  padding: 3px 7px;
  margin-bottom: 4px;
  width: fit-content;
}
.pm-tier-num {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.pm-tier--featured .pm-tier-num { color: rgba(26,106,255,0.65); }
.pm-tier-name {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.pm-tier-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.38);
}
.pm-tier--featured .pm-tier-desc { color: rgba(255,255,255,0.58); }
@media(max-width: 900px) {
  .pm-wrap { grid-template-columns: 1fr; gap: 36px; }
  .pm-tiers { grid-template-columns: 1fr; }
}
@media(min-width: 640px) and (max-width: 900px) {
  .pm-tiers { grid-template-columns: 1fr 1fr; }
  .pm-tier--equity { grid-column: span 2; }
}

/* ── WORKSHOP ───────────────────────────────────────────────── */
/* ── CLIENT LOGOS ───────────────────────────────────────────── */
.logos-section {
  background: var(--paper);
  padding: 48px 0 0;
  overflow: hidden;
}

.logos-eyebrow {
  text-align: center;
  font-family: var(--display); font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 800;
  color: var(--ink); letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 44px;
}

.logos-slider-outer {
  position: relative; overflow: hidden; z-index: 1;
}

.logos-track {
  display: flex; align-items: center; width: max-content;
  gap: 64px; padding: 0 32px;
  animation: logos-scroll 32s linear infinite;
}

@keyframes logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-item {
  flex-shrink: 0; display: flex; align-items: center; height: 52px;
}

.logo-mark {
  font-family: var(--display); font-size: 1.05rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em; white-space: nowrap;
  opacity: 0.55; transition: opacity var(--trans);
}

.logo-item:hover .logo-mark { opacity: 0.85; }

/* Progressive blur edges */
.logos-blur-l,
.logos-blur-r {
  position: absolute; top: 0; bottom: 0; width: 180px;
  pointer-events: none; z-index: 2;
}
.logos-blur-l { left: 0; background: linear-gradient(to right, var(--paper) 30%, transparent); }
.logos-blur-r { right: 0; background: linear-gradient(to left, var(--paper) 30%, transparent); }

/* Glow + curved horizon */
.logos-glow-wrap {
  position: relative; height: 280px;
  margin-top: -16px;
  z-index: 0; overflow: hidden;
}
.logos-oval {
  position: absolute; left: -50%; top: 50%;
  width: 200%; height: 900px;
  border-radius: 50%;
  border-top: 1px solid rgba(26,106,255,0.2);
  background: var(--paper);
  z-index: 1;
  box-shadow: 0 -12px 56px 6px rgba(26,106,255,0.54);
}

/* ── WORKSHOP ───────────────────────────────────────────────── */
.workshop {
  background: var(--paper); padding: 64px 0;
}


@keyframes workshop-fall {
  from {
    background-position:
      0px 220px, 3px 220px, 151.5px 337.5px,
      25px 24px, 28px 24px, 176.5px 150px,
      50px 16px, 53px 16px, 201.5px 91px,
      75px 224px, 78px 224px, 226.5px 230.5px,
      100px 19px, 103px 19px, 251.5px 121px,
      125px 120px, 128px 120px, 276.5px 187px,
      150px 31px, 153px 31px, 301.5px 120.5px,
      175px 235px, 178px 235px, 326.5px 384.5px,
      200px 121px, 203px 121px, 351.5px 228.5px,
      225px 224px, 228px 224px, 376.5px 364.5px,
      250px 26px, 253px 26px, 401.5px 105px,
      275px 75px, 278px 75px, 426.5px 180px;
  }
  to {
    background-position:
      0px 6800px, 3px 6800px, 151.5px 6917.5px,
      25px 13632px, 28px 13632px, 176.5px 13758px,
      50px 5416px, 53px 5416px, 201.5px 5491px,
      75px 17175px, 78px 17175px, 226.5px 17301.5px,
      100px 5119px, 103px 5119px, 251.5px 5221px,
      125px 8428px, 128px 8428px, 276.5px 8495px,
      150px 9876px, 153px 9876px, 301.5px 9965.5px,
      175px 13391px, 178px 13391px, 326.5px 13540.5px,
      200px 14741px, 203px 14741px, 351.5px 14848.5px,
      225px 18770px, 228px 18770px, 376.5px 18910.5px,
      250px 5082px, 253px 5082px, 401.5px 5161px,
      275px 6375px, 278px 6375px, 426.5px 6480px;
  }
}

/* Section heading above the card */
.workshop-section-head { margin-bottom: 28px; }
.workshop-section-label {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.2;
  color: var(--ink);
}

.workshop-card {
  background: var(--blue);
  border: none;
  border-radius: 0 0 12px 12px; padding: 0;
  display: grid;
  grid-template-columns: 1fr 280px 240px;
  align-items: stretch;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,106,255,0.22);
}

/* Event info column */
.ws-info {
  padding: 48px 52px;
  display: flex; flex-direction: column; gap: 0;
  position: relative; z-index: 1;
}
.ws-event-label {
  display: inline-block;
  font-family: var(--display); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.ws-badges { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.ws-badge {
  display: inline-block;
  font-family: var(--display); font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); background: rgba(255,255,255,0.95);
  padding: 4px 10px; border-radius: 100px;
}
.ws-badge--alt {
  color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.12);
}
.ws-event-title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 14px;
}
.ws-event-desc {
  font-size: 0.84rem; color: rgba(255,255,255,0.6);
  line-height: 1.65; margin-bottom: 24px;
  max-width: 340px;
}
.ws-platforms {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto;
}

.ws-event-img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 12px 12px 0 0;
}
.ws-platform {
  font-family: var(--display); font-size: 0.7rem; font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* Date & time column */
.ws-datetime {
  border-left: 1px solid rgba(255,255,255,0.1);
  padding: 52px 40px;
  display: flex; flex-direction: column; justify-content: center; gap: 26px;
  position: relative; z-index: 1;
}
.ws-date-block,
.ws-time-block { display: flex; flex-direction: column; gap: 6px; }
.ws-day-label,
.ws-time-label {
  font-family: var(--display); font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.ws-day-val {
  font-family: var(--display); font-size: 1.25rem; font-weight: 800;
  color: #fff; letter-spacing: -0.02em; line-height: 1.1;
}
.ws-time-range {
  font-family: var(--display); font-size: 1.05rem; font-weight: 700;
  color: rgba(255,255,255,0.9); letter-spacing: -0.01em; line-height: 1.2;
  white-space: nowrap;
}

.ws-location-block { display: flex; flex-direction: column; gap: 4px; }
.ws-location-val {
  font-family: var(--display); font-size: 1.05rem; font-weight: 700;
  color: rgba(255,255,255,0.9); letter-spacing: -0.01em; line-height: 1.2;
}
.ws-location-addr {
  font-family: var(--display); font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.4); letter-spacing: 0.01em;
}

/* Price & CTA column */
.ws-action {
  border-left: 1px solid rgba(255,255,255,0.1);
  padding: 52px 40px;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
  position: relative; z-index: 1;
}
.ws-seats-note {
  font-size: 0.7rem; color: rgba(255,255,255,0.35);
  line-height: 1.5; text-align: center;
}

.workshop-price-block {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15); width: 100%;
}
.workshop-once {
  font-family: var(--display); font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.workshop-price {
  font-family: var(--display); font-size: 2rem; font-weight: 800;
  color: #fff; letter-spacing: -0.04em; line-height: 1;
}

.btn-workshop {
  display: inline-flex; align-items: center; width: 100%;
  justify-content: center; padding: 11px 20px;
  font-family: var(--display); font-size: 0.84rem; font-weight: 600;
  color: var(--blue); background: #fff;
  border: none; border-radius: 6px; white-space: nowrap;
  transition: background var(--trans), color var(--trans);
}
.btn-workshop:hover { background: rgba(255,255,255,0.88); }

@media(max-width: 768px) {
  .workshop-card {
    grid-template-columns: 1fr;
  }
  .workshop-card::before,
  .workshop-card::after { display: none; }
  .ws-info { padding: 36px 32px 28px; }
  .ws-datetime {
    flex-direction: row; gap: 32px;
    padding: 28px 32px;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .ws-action {
    padding: 0 32px 36px;
    border-left: none;
  }
  .btn-workshop { width: 100%; }
  .ws-event-desc { max-width: 100%; }
}

/* ── CONTACT FORM ───────────────────────────────────────────── */
.contact {
  background: var(--ink); padding: 108px 0;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
/* Ambient glow behind the form (right column) */
.contact::before {
  content: '';
  position: absolute; z-index: 1;
  width: 680px; height: 520px;
  top: 50%; left: 68%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(26,106,255,0.13) 0%, transparent 60%);
  pointer-events: none;
}
/* Floating paths background */
.contact-paths {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.contact-paths svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
@keyframes contact-path-flow {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1; }
}

.contact-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.contact-eyebrow {
  display: block;
  font-family: var(--display); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px;
}
.contact-h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.8vw, 2.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 18px;
}
.contact-tagline {
  font-size: 0.88rem; color: rgba(255,255,255,0.4);
  line-height: 1.7; margin-bottom: 28px; max-width: 320px;
}
.contact-detail {
  font-family: var(--display); font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.45); line-height: 1.9;
}
.contact-detail--muted { color: rgba(255,255,255,0.22); font-weight: 400; }

/* Form card */
.contact-form {
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: 16px; padding: 40px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.3);
}

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cf-field { display: flex; flex-direction: column; gap: 7px; }

.cf-label {
  font-family: var(--display); font-size: 0.59rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--type-3);
}

.cf-input {
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 14px;
  font-family: var(--sans); font-size: 0.85rem;
  color: var(--ink); outline: none; width: 100%;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.cf-input::placeholder { color: var(--type-3); }
.cf-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,106,255,0.12);
}

/* Select */
.cf-select-wrap { position: relative; }
.cf-select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 36px; }
.cf-select option { background: var(--paper); color: var(--ink); }
.cf-chevron {
  position: absolute; right: 13px; top: 50%;
  transform: translateY(-50%);
  color: var(--type-3); pointer-events: none;
}

/* Segmented business type toggle */
.cf-seg {
  display: flex;
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 3px; gap: 0;
}
.cf-seg-opt { flex: 1; cursor: pointer; }
.cf-seg-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.cf-seg-opt span {
  display: block; text-align: center;
  padding: 8px 12px; border-radius: 6px;
  font-family: var(--display); font-size: 0.8rem; font-weight: 600;
  color: var(--type-3);
  transition: color var(--trans), background var(--trans);
}
.cf-seg-opt input:checked + span { background: var(--blue); color: #fff; }
.cf-seg-opt:hover span { color: var(--type-2); }
.cf-seg-opt:has(input:checked):hover span { color: #fff; }

/* Timeline radio pills */
.cf-timeline { display: flex; gap: 7px; flex-wrap: wrap; }
.cf-tl-opt { cursor: pointer; }
.cf-tl-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.cf-tl-opt span {
  display: block; padding: 7px 14px;
  font-family: var(--display); font-size: 0.76rem; font-weight: 600;
  color: var(--type-3);
  border: 1px solid var(--border); border-radius: 100px;
  transition: color var(--trans), background var(--trans), border-color var(--trans);
  white-space: nowrap;
}
.cf-tl-opt input:checked + span {
  color: var(--blue);
  background: rgba(26,106,255,0.08);
  border-color: var(--blue);
}
.cf-tl-opt:hover span { color: var(--type-2); border-color: var(--type-3); }

/* Submit */
.cf-submit {
  display: block; width: 100%; margin-top: 4px;
  padding: 13px 24px;
  font-family: var(--display); font-size: 0.9rem; font-weight: 700;
  color: #fff; background: var(--blue);
  border: none; border-radius: 8px; cursor: pointer;
  transition: background var(--trans);
}
.cf-submit:hover { background: #0F5CE8; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.ft {
  background: var(--blue);
}

.ft-card {
  background: var(--blue);
  padding: 60px 64px 0;
  position: relative;
  overflow: hidden;
}
.ft-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
@media(max-width: 900px) {
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media(max-width: 520px) {
  .ft-card { padding: 40px 32px 0; }
  .ft-grid { grid-template-columns: 1fr; gap: 28px; }
}

.ft-logo {
  height: 18px; width: auto; margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.ft-desc {
  font-size: 0.81rem; line-height: 1.68;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
  max-width: 256px;
}
.ft-contact-info {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
}

.ft-col-title {
  font-family: var(--display);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.ft-col a {
  display: block; font-size: 0.81rem;
  color: rgba(255,255,255,0.65); margin-bottom: 10px;
  transition: color var(--trans);
}
.ft-col a:hover { color: #fff; }

.ft-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin: 0 0 22px;
}

.ft-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 26px;
  flex-wrap: wrap; gap: 12px;
}
.ft-copy {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
}
.ft-socials {
  display: flex; align-items: center; gap: 14px;
}
.ft-social-link {
  color: rgba(255,255,255,0.55);
  transition: color var(--trans);
  display: flex; align-items: center;
}
.ft-social-link:hover { color: #fff; }

/* Footer newsletter */
.ft-newsletter {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 40px; flex-wrap: wrap;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 44px;
  position: relative; z-index: 1;
}
.ft-nl-left { flex: 0 0 auto; max-width: 280px; min-width: 0; }
.ft-newsletter .ft-socials { margin-left: auto; }
.ft-nl-eyebrow {
  font-family: var(--display); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 8px;
}
.ft-nl-label {
  font-family: var(--display); font-size: 1.05rem; font-weight: 700;
  color: #fff; letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 8px;
}
.ft-nl-sub {
  font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.6;
  max-width: 340px;
}
.ft-nl-form {
  display: flex; gap: 10px; align-items: stretch; flex-shrink: 0;
}
.ft-nl-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; padding: 10px 16px;
  font-family: var(--sans); font-size: 0.84rem;
  color: #fff; outline: none; width: 220px;
  transition: border-color var(--trans), background var(--trans);
}
.ft-nl-input::placeholder { color: rgba(255,255,255,0.3); }
.ft-nl-input:focus {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
}
.ft-nl-btn {
  padding: 10px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  font-family: var(--display); font-size: 0.82rem; font-weight: 600;
  color: #fff; cursor: pointer; white-space: nowrap;
  transition: background var(--trans), border-color var(--trans);
}
.ft-nl-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }
@media(max-width: 640px) {
  .ft-newsletter { flex-direction: column; align-items: flex-start; }
  .ft-newsletter .ft-socials { margin-left: 0; }
  .ft-nl-form { width: 100%; }
  .ft-nl-input { flex: 1; width: auto; min-width: 0; }
}

/* Footer legal links */
.ft-legal { display: flex; flex-direction: column; gap: 5px; }
.ft-legal-links {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem;
}
.ft-legal-links a {
  color: rgba(255,255,255,0.3); transition: color var(--trans);
}
.ft-legal-links a:hover { color: rgba(255,255,255,0.65); }
.ft-legal-links span { color: rgba(255,255,255,0.18); }

/* Large footer logo — fixed height clips image to show only top portion */
.ft-logo-large-wrap {
  width: calc(100% + 128px);
  margin-left: -64px;
  line-height: 0;
  height: clamp(28px, 5.8vw, 100px);
  overflow: hidden;
}
@media(max-width: 520px) {
  .ft-logo-large-wrap { width: calc(100% + 64px); margin-left: -32px; }
}
.ft-logo-large {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* ── LEGAL PAGES ─────────────────────────────────────────────── */
.legal-hero {
  background: var(--ink); padding: 140px 0 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-hero-label {
  font-family: var(--display); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 16px; display: block;
}
.legal-hero-title {
  font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: #fff; letter-spacing: -0.03em;
  line-height: 1.05; margin-bottom: 16px;
}
.legal-hero-meta {
  font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.5;
}
.legal-body {
  background: var(--paper); padding: 80px 0 100px;
}
.legal-content {
  max-width: 740px;
}
.legal-content h2 {
  font-family: var(--display); font-size: 1.05rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
  margin: 48px 0 12px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p {
  font-size: 0.9rem; color: var(--type-2); line-height: 1.8; margin-bottom: 14px;
}
.legal-content ul {
  margin: 8px 0 16px 20px;
}
.legal-content ul li {
  font-size: 0.9rem; color: var(--type-2); line-height: 1.8; margin-bottom: 6px;
}
.legal-content a { color: var(--blue); }
.legal-content a:hover { text-decoration: underline; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media(max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-drawer { padding: 20px 20px 28px; }

  .hero { padding: 100px 0 80px; }
  .hero-h1 { letter-spacing: -0.025em; }

  .intro { padding: 80px 0; }
  .intro-body { margin-bottom: 52px; }
  .intro-pillars { grid-template-columns: 1fr; }
  .pillar { padding: 28px 20px; }

  .work { padding: 80px 0; }

  .services-section { padding: 80px 0; }

  .pricing { padding: 80px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { padding: 28px 24px; }
  .budget-block { padding: 24px 20px; }

  .contact { padding: 80px 0; }
  .contact-paths { bottom: auto; height: 480px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-tagline { max-width: 100%; }
  .contact-form { padding: 28px 24px; gap: 16px; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-timeline { gap: 6px; }

  .ft-card { padding: 40px 32px 0; }
}


/* ============================================================
   BOOTCAMP PAGE — bc-*
   ============================================================ */

/* ── Hero meta strip ──────────────────────────────────────── */
.bc-hero { min-height: 88vh; position: relative; }

.bc-hero-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  font-family: var(--display); font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.45); letter-spacing: 0.03em;
  margin-bottom: 32px;
}
.bc-meta-dot { color: rgba(255,255,255,0.2); }

/* ── At-a-glance stats bar ────────────────────────────────── */
.bc-stats-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.bc-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide-color: var(--border);
}
.bc-stat-item {
  display: flex; flex-direction: column; gap: 5px;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
}
.bc-stat-item:last-child { border-right: none; }
.bc-stat-label {
  font-family: var(--display); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--type-3);
}
.bc-stat-val {
  font-family: var(--display); font-size: 1rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em;
}

/* ── Intro ────────────────────────────────────────────────── */
.bc-intro-section {
  background: var(--paper); padding: 96px 0 80px;
}
.bc-intro-section .intro-body { margin-bottom: 0; }

/* ── Curriculum ───────────────────────────────────────────── */
.bc-curriculum-section {
  background: var(--paper-2); padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bc-curriculum-section .work-header { margin-bottom: 56px; }

.bc-modules {
  display: flex; flex-direction: column;
  border: 1.5px solid var(--border); border-radius: 12px;
  overflow: hidden;
}
.bc-module {
  display: flex; align-items: flex-start; gap: 40px;
  padding: 44px 48px;
  border-bottom: 1.5px solid var(--border);
  background: var(--paper);
  transition: background var(--trans);
}
.bc-module:last-child { border-bottom: none; }
.bc-module:hover { background: var(--paper-2); }

.bc-module-num {
  font-family: var(--display); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.12em; color: var(--blue);
  flex-shrink: 0; padding-top: 4px;
}
.bc-module-body { flex: 1; min-width: 0; }
.bc-module-title {
  font-family: var(--display); font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700; color: var(--ink); letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.bc-module-desc {
  font-size: 0.875rem; color: var(--type-2); line-height: 1.7;
  margin-bottom: 20px; max-width: 680px;
}
.bc-module-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 6px 40px; list-style: none;
}
.bc-module-list li {
  font-size: 0.8rem; color: var(--type-3); line-height: 1.5;
  padding-left: 12px; position: relative;
}
.bc-module-list li::before {
  content: '·'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700;
}

/* ── What's Included ──────────────────────────────────────── */
.bc-includes-section {
  background: var(--paper); padding: 96px 0;
}
.bc-includes-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.bc-includes-sub {
  font-size: 0.95rem; color: var(--type-2); line-height: 1.75;
  margin-top: 20px;
}
.bc-includes-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
  border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden;
}
.bc-includes-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem; color: var(--type-2);
  transition: background var(--trans);
}
.bc-includes-list li:last-child { border-bottom: none; }
.bc-includes-list li:hover { background: var(--paper-2); }
.bc-includes-list svg { color: var(--blue); flex-shrink: 0; }

.bc-includes-right {
  display: flex; flex-direction: column;
}

/* ── CTA BAND ─────────────────────────────────────────────── */
@keyframes bc-gradient-scroll {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.bc-cta-band {
  background: linear-gradient(135deg, #5AABFF, #1A6AFF, #1055F0, #0838C8, #1A6AFF, #5AABFF);
  background-size: 300% 300%;
  animation: bc-gradient-scroll 8s ease infinite;
  padding: 72px 0;
}
.bc-cta-band-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 60px;
}
.bc-cta-band-copy { flex: 1; max-width: 580px; }
.bc-cta-band-h {
  font-family: var(--display); font-size: 1.6rem; font-weight: 800;
  color: #fff; letter-spacing: -0.03em; line-height: 1.2;
  margin-bottom: 14px;
}
.bc-cta-band-p {
  font-size: 0.95rem; color: rgba(255,255,255,0.80); line-height: 1.75;
}
.bc-cta-band-btn {
  display: inline-flex; align-items: center; white-space: nowrap; flex-shrink: 0;
  padding: 15px 32px;
  font-family: var(--display); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em;
  color: #1150CC; background: #fff;
  border-radius: 6px; transition: background var(--trans);
  text-decoration: none;
}
.bc-cta-band-btn:hover { background: rgba(255,255,255,0.90); }
@media(max-width: 768px) {
  .bc-cta-band { padding: 56px 0; }
  .bc-cta-band-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
}

/* ── Who It's For ─────────────────────────────────────────── */
.bc-audience-section {
  background: var(--paper-2); padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bc-audience-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.bc-audience-grid {
  display: flex; flex-direction: column; gap: 28px;
}
.bc-audience-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.bc-audience-dash {
  flex-shrink: 0;
  display: inline-block;
  width: 14px; height: 1.5px;
  background: var(--blue);
  margin-top: 11px;
}
.bc-audience-item p {
  font-size: 0.95rem; color: var(--type-2); line-height: 1.7; margin: 0;
}

/* ── Register section ─────────────────────────────────────── */
.bc-register-section {
  background: var(--ink); padding: 120px 0;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.bc-register-section::before {
  content: '';
  position: absolute; z-index: 0;
  width: 680px; height: 520px;
  top: 50%; left: 68%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(26,106,255,0.13) 0%, transparent 60%);
  pointer-events: none;
}
.bc-register-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.bc-register-h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: #fff; margin: 16px 0 20px;
}
.bc-register-sub {
  font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7;
  margin-bottom: 36px;
}
.bc-price-block {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 36px;
}
.bc-price {
  font-family: var(--display); font-size: 3rem; font-weight: 800;
  color: #fff; letter-spacing: -0.04em; line-height: 1;
}
.bc-price-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.4); font-weight: 500;
}
.bc-reg-details {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.bc-reg-detail {
  display: flex; justify-content: space-between; align-items: baseline;
}
.bc-reg-detail-label {
  font-family: var(--display); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.bc-reg-detail-val {
  font-family: var(--display); font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.bc-reg-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.bc-faq-section {
  background: var(--paper); padding: 96px 0;
}
.bc-faq-header { margin-bottom: 52px; }
.bc-faq-list {
  max-width: 760px;
  border: 1.5px solid var(--border); border-radius: 12px;
  overflow: hidden;
}
.bc-faq-item {
  border-bottom: 1px solid var(--border);
}
.bc-faq-item:last-child { border-bottom: none; }
.bc-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; gap: 24px;
  font-family: var(--display); font-size: 0.92rem; font-weight: 600;
  color: var(--ink); cursor: pointer;
  list-style: none;
  transition: background var(--trans), color var(--trans);
}
.bc-faq-q::-webkit-details-marker { display: none; }
.bc-faq-q::after {
  content: '+';
  font-size: 1.1rem; font-weight: 300; color: var(--type-3);
  flex-shrink: 0; transition: transform var(--trans), color var(--trans);
}
.bc-faq-item[open] .bc-faq-q { color: var(--blue); }
.bc-faq-item[open] .bc-faq-q::after {
  transform: rotate(45deg); color: var(--blue);
}
.bc-faq-item:hover .bc-faq-q { background: var(--paper-2); }
.bc-faq-a {
  padding: 0 28px 24px;
  font-size: 0.95rem; color: var(--type-2); line-height: 1.75;
}

/* ── Bootcamp responsive ──────────────────────────────────── */
@media(max-width: 900px) {
  .bc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-stat-item:nth-child(2) { border-right: none; }
  .bc-stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .bc-stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  .bc-module { padding: 32px 28px; gap: 20px; }
  .bc-module-list { grid-template-columns: 1fr; }

  .bc-includes-inner,
  .bc-audience-inner,
  .bc-register-inner { grid-template-columns: 1fr; gap: 48px; }

  .bc-register-section::before { display: none; }
}

@media(max-width: 600px) {
  .bc-stats-grid { grid-template-columns: 1fr 1fr; }
  .bc-reg-row { grid-template-columns: 1fr; }
  .bc-hero-meta { font-size: 0.78rem; gap: 8px; }
  .bc-faq-q { font-size: 0.85rem; padding: 18px 20px; }
  .bc-faq-a { padding: 0 20px 20px; }
}


/* ── FAQ SECTION (index) ────────────────────────────────────── */
.faq-section {
  background: var(--paper); padding: 88px 0;
}
.faq-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.faq-header { position: sticky; top: 96px; }
.faq-header-sub {
  font-size: 0.95rem; color: var(--type-3); line-height: 1.75;
  margin-top: 16px; max-width: 300px;
}
.faq-list { max-width: 100%; }

@media(max-width: 768px) {
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-header { position: static; }
}

/* ── BREEDER STORIES / FLOW ART ─────────────────────────────── */
.flow-art {
  position: relative;
  width: 100%;
}
.flow-section {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.flow-section:nth-child(1) { z-index: 1; }
.flow-section:nth-child(2) { z-index: 2; }
.flow-section:nth-child(3) { z-index: 3; }
.flow-section:nth-child(4) { z-index: 4; }
.flow-section:nth-child(5) { z-index: 5; }
.flow-section:nth-child(6) { z-index: 6; }
.flow-section:nth-child(7)  { z-index: 7; }
.flow-section:nth-child(8)  { z-index: 8; }
.flow-section:nth-child(9)  { z-index: 9; }
.flow-section:nth-child(10) { z-index: 10; }

/* Background layer helpers */
.fs-bg-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(26,106,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,106,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
}
.fs-bg-radial {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 75% 65% at 50% 44%, #0C1F40 0%, transparent 70%);
}
.fs-bg-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255,255,255,0.11) 0%, transparent 65%);
}
.fs-bg-dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
}
.flow-inner {
  position: relative; z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 5.5rem clamp(3.5rem, 9vw, 8rem) clamp(3rem, 5vw, 5rem);
  gap: clamp(0.75rem, 1.25vw, 1.25rem);
  transform-origin: bottom left;
  will-change: transform;
  box-sizing: border-box;
}

/* Apple-like inner layout */
.fs-top { flex-shrink: 0; }
.fs-center { flex: 1; display: flex; align-items: center; }
.fs-foot { flex-shrink: 0; }

/* Two-column content layout */
.fs-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: end;
  width: 100%;
}
.fs-two-col--top { align-items: start; }
.fs-two-col--center { align-items: center; }

/* Typography */
.fs-label {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.4;
}
.fs-hr {
  border: none; border-top: 1px solid currentColor; opacity: 0.12; margin: 0;
}
.fs-headline {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 800; line-height: 0.9;
  letter-spacing: -0.04em; text-transform: uppercase;
}
.fs-headline--md { font-size: clamp(1.6rem, 3.8vw, 4.8rem); }
.fs-headline--sm { font-size: clamp(1.5rem, 3.2vw, 4rem); }
.fs-body {
  font-size: clamp(1rem, 1.55vw, 1.15rem);
  line-height: 1.75; opacity: 0.65; max-width: 50ch;
}
.fs-body--wide { max-width: 60ch; }

/* Stat columns */
.fs-cols {
  display: flex; gap: clamp(2rem, 5vw, 4rem); flex-wrap: wrap;
}
.fs-col { min-width: 120px; }
.fs-col-label {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 5px; opacity: 0.4;
}
.fs-col-val { font-size: 0.85rem; line-height: 1.55; opacity: 0.8; }
.fs-col-num {
  font-family: var(--display); font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 4px;
}

/* 3 Phases visual slide */
.fs-phases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.fs-phase-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.fs-phase-num {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
}
.fs-phase-icon {
  width: 38px; height: 38px;
  background: var(--paper-2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.fs-phase-title {
  font-family: var(--display); font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 0.92;
  text-transform: uppercase; color: var(--ink);
}
.fs-phase-sub {
  font-family: var(--display); font-size: 0.78rem; font-weight: 600;
  color: var(--blue); margin-bottom: 2px;
}
.fs-phase-desc {
  font-size: 0.82rem; color: var(--type-3); line-height: 1.6;
}

/* Blueprint / CTA last slide */
.fs-blueprint-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  flex: 1; min-height: 0; overflow: hidden;
}
.fs-blueprint-left {
  display: flex; flex-direction: column;
  justify-content: center; gap: 1.75rem;
  overflow: hidden;
}
.fs-guarantee-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fs-guarantee-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.82rem; line-height: 1.6;
  padding: 11px 14px;
  background: rgba(26,106,255,0.12);
  border: 1px solid rgba(26,106,255,0.28);
  border-radius: 10px;
}
.fs-guarantee-list li svg {
  flex-shrink: 0; margin-top: 2px;
  color: #7fb3ff; opacity: 1;
}

/* Onboarding panel — Apple-style light */
.ob-panel {
  background: var(--paper);
  border-radius: 20px;
  box-shadow: 0 2px 0 rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.08), 0 24px 64px rgba(0,0,0,0.12);
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  display: flex; flex-direction: column; height: 100%; overflow: hidden;
}
.ob-progress {
  display: flex; gap: 5px; margin-bottom: 1.5rem; flex-shrink: 0;
}
.ob-pip {
  height: 3px; flex: 1; border-radius: 3px;
  background: var(--border);
  transition: background 0.35s cubic-bezier(0.4,0,0.2,1);
}
.ob-pip.done { background: var(--ink); }
.ob-step-label {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--type-3); margin-bottom: 1.1rem; flex-shrink: 0;
}
.ob-step { display: none; flex-direction: column; gap: 16px; flex: 1; overflow-y: auto; min-height: 0; }
.ob-step.active { display: flex; }
.ob-step-heading {
  font-family: var(--display); font-size: 1.25rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--ink); flex-shrink: 0;
  margin-bottom: -6px;
}
.ob-step-desc {
  font-size: 0.86rem; line-height: 1.55; color: var(--type-3);
  flex-shrink: 0;
}
.ob-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; column-gap: 14px; }
.ob-field { display: flex; flex-direction: column; gap: 5px; }
.ob-field label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--type-3);
}
.ob-field input, .ob-field select {
  background: var(--paper-2);
  border: 1.5px solid var(--border);
  border-radius: 10px; padding: 10px 13px;
  font-family: var(--sans); font-size: 0.9rem; color: var(--ink); outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  box-sizing: border-box; width: 100%;
  -webkit-appearance: none; appearance: none;
}
.ob-field input::placeholder { color: var(--type-3); opacity: 0.55; }
.ob-field input:focus, .ob-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,106,255,0.12);
  background: var(--paper);
}
.ob-field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A8A8A' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.ob-field select option { background: var(--paper); color: var(--ink); }
.ob-check {
  display: flex; align-items: flex-start; gap: 11px; cursor: pointer;
  padding: 0; border: none; background: none;
}
.ob-check input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; accent-color: var(--blue); cursor: pointer; width: 16px; height: 16px; }
.ob-check-text { font-size: 0.82rem; line-height: 1.55; color: var(--type-2); }
.ob-actions { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; margin-top: 12px; }
.ob-btn {
  padding: 11px 18px; border-radius: 10px;
  font-family: var(--display); font-size: 0.82rem; font-weight: 700;
  cursor: pointer; text-align: center; transition: background 0.18s, opacity 0.18s, box-shadow 0.18s;
  border: 1.5px solid var(--border); background: var(--paper-2); color: var(--ink);
  white-space: nowrap;
}
.ob-btn:hover { background: var(--border); }
.ob-btn--primary {
  background: var(--ink); color: #fff; border-color: transparent;
}
.ob-btn--primary:hover { background: #1a1a1a; }
.ob-btn--ghost {
  background: none; border: none; color: var(--type-3);
  font-size: 0.72rem; padding: 4px 0; font-weight: 500;
}
.ob-btn--ghost:hover { color: var(--type-2); }
/* Agreement text box */
.ob-agreement {
  background: var(--paper-2); border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 15px;
  font-size: 0.74rem; line-height: 1.7; color: var(--type-2);
  max-height: 110px; overflow-y: auto; flex-shrink: 0;
}
.ob-agreement p { margin-bottom: 6px; }
/* Signature field */
.ob-signature {
  font-style: italic !important;
  border-color: var(--ink) !important;
  background: var(--paper) !important;
  font-size: 1rem !important;
}
/* Payment summary */
.ob-summary {
  background: var(--paper-2); border: 1px solid var(--border);
  border-radius: 12px; padding: 15px 17px;
  display: flex; flex-direction: column; gap: 6px; flex-shrink: 0;
}
.ob-summary-label {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--type-3);
}
.ob-summary-title {
  font-family: var(--display); font-size: 1rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--ink);
}
.ob-summary-price {
  font-family: var(--display); font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.04em; color: var(--ink);
}
.ob-summary-note {
  display: block; font-family: var(--sans); font-size: 0.76rem;
  font-weight: 500; color: var(--type-3); letter-spacing: 0; margin-top: 5px;
}
.ob-summary-items { display: flex; flex-direction: column; gap: 4px; margin-top: 10px; }
.ob-summary-item {
  font-size: 0.74rem; color: var(--type-3); display: flex; align-items: center; gap: 7px;
}
.ob-summary-item svg { flex-shrink: 0; opacity: 0.5; }
.ob-trust-row {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 4px 0;
}
.ob-trust-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.03em;
  color: var(--type-3);
}
.ob-trust-item svg { flex-shrink: 0; }
.ob-trust-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--border); flex-shrink: 0;
}
.ob-btn--pay {
  background: var(--blue); color: #fff; border-color: transparent;
  font-size: 0.85rem;
}
.ob-btn--pay:hover { background: #1558e6; }
.ob-confirm-list { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ob-confirm-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 13px; background: var(--paper-2);
  border-radius: 10px; border: 1px solid var(--border);
}
.ob-confirm-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center;
  justify-content: center; font-size: 0.66rem; font-weight: 700; flex-shrink: 0;
}
.ob-confirm-text { font-size: 0.78rem; line-height: 1.5; color: var(--type-2); }

/* Plan selector cards */
.ob-plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.ob-plan-card {
  position: relative; cursor: pointer;
  display: flex; flex-direction: column;
  border: 1.5px solid var(--border); border-radius: 14px;
  padding: 14px 14px 13px; background: var(--paper);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-user-select: none; user-select: none;
}
.ob-plan-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }

/* Phase tag */
.ob-plan-tag {
  display: inline-block; margin-bottom: 9px;
  font-family: var(--sans); font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--type-3);
}
.ob-plan-tag--today {
  color: var(--blue);
  background: rgba(26,106,255,0.08);
  border-radius: 4px; padding: 2px 7px;
  margin-left: -2px;
}

.ob-plan-name {
  font-family: var(--display); font-size: 1rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--ink); line-height: 1; margin-bottom: 3px;
}
.ob-plan-sub {
  font-size: 0.69rem; color: var(--type-3); line-height: 1.35;
}
.ob-plan-price {
  font-family: var(--display); font-size: 1.4rem; font-weight: 800;
  letter-spacing: -0.04em; color: var(--ink); line-height: 1;
  margin-top: auto; padding-top: 12px;
}
.ob-plan-price span { font-size: 0.68rem; font-weight: 500; opacity: 0.4; letter-spacing: 0; }
.ob-plan-delta { font-size: 0.62rem; color: var(--type-3); margin-top: 4px; }
.ob-plan-was { font-size: 0.62rem; color: var(--type-3); margin-top: 4px; }

/* Hover */
.ob-plan-card:hover:not(:has(input:checked)) {
  border-color: #c0c0be; background: var(--paper-2);
}

/* Selected — ink fill */
.ob-plan-card:has(input:checked) {
  border-color: var(--ink); background: var(--ink);
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}
.ob-plan-card:has(input:checked) .ob-plan-tag { color: rgba(255,255,255,0.38); }
.ob-plan-card:has(input:checked) .ob-plan-name { color: #fff; }
.ob-plan-card:has(input:checked) .ob-plan-sub { color: rgba(255,255,255,0.48); }
.ob-plan-card:has(input:checked) .ob-plan-price { color: #fff; }
.ob-plan-card:has(input:checked) .ob-plan-delta,
.ob-plan-card:has(input:checked) .ob-plan-was { color: rgba(255,255,255,0.38); }

/* Featured card (Today Only) */
.ob-plan-card--featured { border-color: rgba(26,106,255,0.22); background: rgba(26,106,255,0.03); }
.ob-plan-card--full {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: 20px;
  align-items: start;
  padding: 18px 16px;
  min-height: 100px;
}
.ob-plan-card--full .ob-plan-tag  { grid-column: 1 / -1; margin-bottom: 8px; }
.ob-plan-card--full .ob-plan-name { grid-column: 1; grid-row: 2; margin-bottom: 5px; }
.ob-plan-card--full .ob-plan-sub  { grid-column: 1; grid-row: 3; align-self: end; }
.ob-plan-card--full .ob-plan-price { grid-column: 2; grid-row: 2; margin-top: 0; padding-top: 0; text-align: right; align-self: end; }
.ob-plan-card--full .ob-plan-was  { grid-column: 2; grid-row: 3; text-align: right; }
.ob-plan-card--featured:hover:not(:has(input:checked)) {
  border-color: rgba(26,106,255,0.45); background: rgba(26,106,255,0.06);
}
.ob-plan-card--featured:has(input:checked) {
  border-color: var(--ink); background: var(--ink);
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}
.ob-plan-card--featured:has(input:checked) .ob-plan-tag--today {
  color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.1);
}
.ob-plan-card--featured:has(input:checked) .ob-plan-name,
.ob-plan-card--featured:has(input:checked) .ob-plan-price { color: #fff; }
.ob-plan-card--featured:has(input:checked) .ob-plan-sub,
.ob-plan-card--featured:has(input:checked) .ob-plan-was { color: rgba(255,255,255,0.5); }

/* Agreement validation error states */
.ob-check--error .ob-check-text { color: #c0392b !important; }
.ob-check--error input[type="checkbox"] { outline: 2px solid #c0392b; outline-offset: 2px; border-radius: 2px; }
.ob-sig--error { border-color: #c0392b !important; box-shadow: 0 0 0 3px rgba(192,57,43,0.12) !important; }

/* Breeder photo (slide 01) */
.fs-breeder-img-wrap {
  width: 100%;
  height: clamp(160px, 22vh, 240px);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}
.fs-breeder-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
.fs-breeder-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.22;
}

/* Stat col icon */
.fs-col-icon {
  display: flex; align-items: center; gap: 6px; margin-bottom: 4px;
}
.fs-col-icon svg { opacity: 0.35; flex-shrink: 0; }

/* Client logo container */
.fs-client-logo-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 160px; height: 72px;
  border: 1.5px solid var(--border);
  border-radius: 12px; overflow: hidden;
  background: var(--paper);
  margin-bottom: 2rem;
}
.fs-client-logo {
  max-width: 85%; max-height: 65%; object-fit: contain;
  filter: invert(1);
}
.fs-client-logo-placeholder {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--type-3);
}

/* Dark phase cards (phases overview on dark/blue bg) */
.fs-phase-card--dark {
  border-color: rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.05);
}
.fs-phase-card--dark .fs-phase-title { color: #fff; letter-spacing: -0.04em; }
.fs-phase-card--dark .fs-phase-desc { color: rgba(255,255,255,0.48); }
.fs-phase-card--dark .fs-phase-num { color: rgba(255,255,255,0.55); }
.fs-phase-card--dark .fs-phase-sub { color: rgba(255,255,255,0.65); }

/* Slide-in animations */
@keyframes fs-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fs-scale-in {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.fs-anim {
  opacity: 0;
  animation: fs-fade-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-play-state: paused;
}
.fs-anim--scale { animation-name: fs-scale-in; }
.fs-anim-d1 { animation-delay: 0.1s; }
.fs-anim-d2 { animation-delay: 0.2s; }
.fs-anim-d3 { animation-delay: 0.32s; }
.fs-anim-d4 { animation-delay: 0.46s; }
.fs-anim-d5 { animation-delay: 0.6s; }
.flow-section.is-active .fs-anim { animation-play-state: running; }

/* Bar chart (results slide) */
.fs-bar-chart { margin-top: 1.75rem; }
.fs-bar-chart-title {
  font-family: var(--sans); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.38;
  margin-bottom: 10px;
}
.fs-bar-chart-inner {
  display: flex; gap: 5px; align-items: flex-end; height: 96px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.fs-bar-col {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
}
.fs-bar {
  width: 100%;
  border-radius: 3px 3px 0 0;
  background: rgba(255,255,255,0.22);
  transform: scaleY(0); transform-origin: bottom center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fs-bar--hi { background: rgba(255,255,255,0.65); }
.fs-bar-col:nth-child(2) .fs-bar { transition-delay: 0.1s; }
.fs-bar-col:nth-child(3) .fs-bar { transition-delay: 0.22s; }
.fs-bar-col:nth-child(4) .fs-bar { transition-delay: 0.36s; }
.fs-bar-label {
  font-size: 0.56rem; opacity: 0.38; margin-top: 5px; white-space: nowrap;
}
.flow-section.is-active .fs-bar { transform: scaleY(1); }

/* Flow art mobile */
@media(max-width: 860px) {
  .flow-section { position: relative; height: auto; min-height: 100svh; }
  .flow-inner { height: auto; min-height: 100svh; padding-bottom: 4rem; }
  .fs-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .fs-phases-grid { grid-template-columns: 1fr; gap: 1rem; }
  .fs-blueprint-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ob-panel { height: auto; }
  .ob-step { overflow: visible; }
}
@media(max-width: 560px) {
  .fs-headline { font-size: clamp(1.85rem, 10vw, 2.6rem); }
  .fs-section-icon { width: 32px; height: 32px; }
  .ob-row { grid-template-columns: 1fr; }
  .fs-cols { gap: 1.5rem; }
  .fs-bar-chart-inner { height: 70px; }
  .fs-litter-grid { grid-template-columns: 1fr; border-radius: 10px; }
  .ob-plan-grid { grid-template-columns: 1fr; }
}

/* ── "Before CREATIVECORE" block (Section 02) ───────────────── */
.fs-before-block {
  border-left: 2px solid var(--border);
  padding: 13px 16px;
  background: rgba(0,0,0,0.025);
  border-radius: 0 8px 8px 0;
}
.fs-before-label {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--type-3);
  margin-bottom: 8px;
}
.fs-before-text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--type-2);
  margin-bottom: 10px;
}
.fs-real-problem {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* ── Section eyebrow (above headline, inherits section color) ── */
.fs-eyebrow {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.38;
}

/* ── Bridge section layout (Section 04) ─────────────────────── */
.fs-bridge-wrap {
  max-width: 56ch;
}
.fs-bridge-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 2rem;
}
.fs-bridge-check {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.fs-bridge-check svg { flex-shrink: 0; opacity: 0.75; }

/* ── Results proof list (Section 08, blue bg) ───────────────── */
.fs-result-list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.fs-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.fs-result-row:last-child { border-bottom: none; }
.fs-result-label {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.fs-result-val {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  text-align: right;
}

/* ── "What This Means" litter timeline grid (Section 09) ───── */
.fs-litter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.fs-litter-col {
  background: var(--paper-2);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fs-litter-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--type-3);
}
.fs-litter-val {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--type-2);
}
.fs-litter-col--mid { background: var(--paper); }
.fs-litter-col--after { background: var(--ink); }
.fs-litter-col--after .fs-litter-label { color: rgba(255,255,255,0.35); }
.fs-litter-col--after .fs-litter-val   { color: rgba(255,255,255,0.88); }

/* ── Plan card microcopy ─────────────────────────────────────── */
.ob-plan-micro {
  font-size: 0.66rem;
  line-height: 1.5;
  color: var(--type-3);
  margin-top: 8px;
}
.ob-plan-card--full .ob-plan-micro { grid-column: 1 / -1; }
.ob-plan-card:has(input:checked) .ob-plan-micro { color: rgba(255,255,255,0.38); }

/* ── Pipeline flow visual (Section 01, dark bg) ─────────────── */
.fs-pipeline-flow {
  margin-top: 1.25rem;
  padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
}
.fs-pf-label {
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.32;
  margin-bottom: 10px;
}
.fs-pf-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.fs-pf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.fs-pf-step span {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  opacity: 0.8;
  white-space: nowrap;
  text-align: center;
}
.fs-pf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.fs-pf-conn {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin-top: 4px;
  min-width: 10px;
}
.fs-pf-conn--miss {
  background: none;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.15) 0, rgba(255,255,255,0.15) 3px, transparent 3px, transparent 7px);
}
.fs-pf-step--miss .fs-pf-dot {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  box-shadow: none;
}
.fs-pf-step--miss span { opacity: 0.18; }

/* ── Before / After visual (Section 02, light bg) ───────────── */
.fs-ba-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}
.fs-ba-col { display: flex; flex-direction: column; gap: 10px; }
.fs-ba-col--before { opacity: 0.75; }
.fs-ba-col--after { /* after state is visually distinct via content */ }
.fs-ba-label {
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--type-3);
}
.fs-ba-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.fs-ba-chip {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--type-3);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 9px;
}
.fs-ba-note {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-style: italic;
  color: var(--type-3);
}
.fs-ba-divider {
  color: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fs-ba-flow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fs-ba-fnode {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 11px;
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  white-space: nowrap;
}
.fs-ba-fline {
  width: 1.5px;
  height: 9px;
  background: var(--border);
  margin-left: 18px;
}
.fs-ba-fnode--end {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

/* ── System architecture flow (Section 03, dark bg) ─────────── */
.fs-sysflow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.fs-sf-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  text-align: center;
  min-width: 58px;
}
.fs-sf-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  flex-shrink: 0;
}
.fs-sf-node span {
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.4;
  line-height: 1.3;
}
.fs-sf-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-top: 4px;
  min-width: 16px;
}
.fs-sf-node--end .fs-sf-dot {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 10px rgba(255,255,255,0.35);
}
.fs-sf-node--end span { opacity: 0.7; }

/* ── Timeline visual (Section 04, light bg) ─────────────────── */
.fs-tl { display: flex; flex-direction: column; }
.fs-tl-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fs-tl-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 2px;
}
.fs-tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--ink);
  flex-shrink: 0;
}
.fs-tl-dot--launch {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 8px rgba(26,106,255,0.4);
}
.fs-tl-dot--end {
  background: var(--ink);
  border-color: var(--ink);
}
.fs-tl-line {
  width: 1px;
  min-height: 22px;
  background: var(--border);
  margin: 3px 0;
  flex: 1;
}
.fs-tl-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 18px;
}
.fs-tl-item--last .fs-tl-body { padding-bottom: 0; }
.fs-tl-when {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--type-3);
}
.fs-tl-what {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.fs-tl-item--launch .fs-tl-what {
  color: var(--blue);
  font-weight: 600;
}

/* ── Lead flow diagram (Section 05, blue bg) ────────────────── */
.fs-leadflow {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.fs-lf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  text-align: center;
  max-width: 70px;
}
.fs-lf-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fs-lf-icon--end {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 0 12px rgba(255,255,255,0.12);
}
.fs-lf-arr {
  flex-shrink: 0;
  padding: 0 5px;
  padding-top: 13px;
  font-size: 0.8rem;
  font-weight: 300;
  opacity: 0.28;
  color: #fff;
}
.fs-lf-label {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.fs-lf-sub {
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 500;
  opacity: 0.4;
  line-height: 1.3;
}

/* ── Nurture sequence timeline (Section 06, light bg) ───────── */
.fs-nurture-seq { display: flex; flex-direction: column; }
.fs-ns-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fs-ns-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 2px;
}
.fs-ns-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
}
.fs-ns-dot--end {
  background: var(--blue);
  box-shadow: 0 0 7px rgba(26,106,255,0.3);
}
.fs-ns-line {
  width: 1px;
  min-height: 20px;
  background: var(--border);
  margin: 3px 0;
  flex: 1;
}
.fs-ns-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 16px;
}
.fs-ns-item--last .fs-ns-body { padding-bottom: 0; }
.fs-ns-when {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--type-3);
}
.fs-ns-what {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

/* ── Trust ecosystem (Section 07, dark bg) ──────────────────── */
.fs-trust-eco {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.fs-te-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.fs-te-item {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
  white-space: nowrap;
}
.fs-te-arrow {
  opacity: 0.25;
  padding-left: 2px;
}
.fs-te-hub {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 10px 16px;
  width: 100%;
}
.fs-te-hub svg { flex-shrink: 0; opacity: 0.75; }

/* ── Large metrics grid (Section 08, blue bg) ───────────────── */
.fs-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1.5rem;
}
.fs-metric {
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fs-metric-num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.fs-metric-label {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 500;
  color: rgba(255,255,255,0.42);
  line-height: 1.4;
}

/* ── Litter pipeline dots (Section 09) ──────────────────────── */
.fs-litter-pipe {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}
.fs-lp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.fs-lp-dot--empty {
  background: var(--border);
}
.fs-lp-dot--fill {
  background: var(--ink);
}
.fs-lp-dot--white {
  background: rgba(255,255,255,0.65);
  box-shadow: 0 0 4px rgba(255,255,255,0.35);
}

/* ── Responsive overrides for new components ────────────────── */
@media(max-width: 860px) {
  .fs-ba-wrap { grid-template-columns: 1fr; }
  .fs-ba-divider { transform: rotate(90deg); }
  .fs-leadflow { flex-direction: column; align-items: flex-start; gap: 8px; }
  .fs-lf-step { flex-direction: row; max-width: none; text-align: left; }
  .fs-lf-arr { display: none; }
  .fs-metrics-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 560px) {
  .fs-pf-track { gap: 0; }
  .fs-sysflow { gap: 0; }
  .fs-metrics-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   NEW IA-DRIVEN COMPONENTS (inspo rewrite)
   ══════════════════════════════════════════════════════════════ */

/* ── Asymmetric 40/60 column split ──────────────────────────── */
.fs-two-col--vis { grid-template-columns: 2fr 3fr; }

/* ── Slide callout — muted one-liner beneath a headline ─────── */
.fs-slide-callout {
  font-family: var(--sans);
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  line-height: 1.65;
  opacity: 0.5;
  max-width: 38ch;
  margin-top: 1rem;
}

/* ── Client insight — promoted pull quote at headline scale ──── */
.fs-client-insight {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 2.1rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 28ch;
  margin-top: 1.25rem;
}

/* ── Phase fact chips ────────────────────────────────────────── */
.fs-phase-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1.5rem;
}
.fs-phase-chip {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid currentColor;
  background: transparent;
  width: fit-content;
  display: inline-block;
  opacity: 0.5;
  letter-spacing: 0.01em;
}

/* ── Footer caption — small note anchored to slide bottom ────── */
.fs-foot-caption {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.32;
}

/* ── System section header — headline + subcopy side by side ─── */
.fs-sys-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 3rem);
}
.fs-sys-sub {
  font-family: var(--sans);
  font-size: clamp(0.82rem, 1.3vw, 0.98rem);
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.38;
  max-width: 22ch;
  text-align: right;
  flex-shrink: 0;
  padding-bottom: 0.3rem;
}

/* ── Editorial layout — headline + framed callout (Section 09) ─ */
.fs-editorial-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.fs-editorial-callout {
  border-left: 2px solid var(--blue);
  padding-left: clamp(1rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fs-editorial-callout p {
  font-family: var(--sans);
  font-size: clamp(0.86rem, 1.35vw, 1.02rem);
  line-height: 1.75;
  color: var(--type-2);
  max-width: 44ch;
}

/* ── Responsive: new IA components ──────────────────────────── */
@media(max-width: 860px) {
  .fs-two-col--vis { grid-template-columns: 1fr; }
  .fs-editorial-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .fs-sys-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .fs-sys-sub { text-align: left; }
}
@media(max-width: 560px) {
  .fs-client-insight { font-size: clamp(1.1rem, 5vw, 1.5rem); }
  .fs-phase-chips { margin-top: 1rem; }
}

/* ══════════════════════════════════════════════════════════════
   CINEMATIC ARCHITECTURAL COMPONENTS
   ══════════════════════════════════════════════════════════════ */

/* ── Arch board — glass panel on dark backgrounds ────────────── */
.fs-arch-board {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  overflow: hidden;
}
.fs-arch-board::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(26,106,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Arch board — glass panel on light backgrounds ───────────── */
.fs-arch-board--light {
  position: relative;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 18px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  overflow: hidden;
}

/* ── Board typography ────────────────────────────────────────── */
.fs-arch-board-label {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  display: block;
}
.fs-arch-board-note {
  font-family: var(--sans);
  font-size: 0.68rem;
  line-height: 1.55;
  opacity: 0.4;
  margin-top: clamp(0.75rem, 1.5vw, 1.25rem);
}

/* ── Hero pipeline architecture (Section 01) ─────────────────── */
.fs-pipe-arch {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}
.fs-pa-station {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: clamp(10px, 1.5vw, 14px) clamp(8px, 1.25vw, 12px);
  border-radius: 10px;
  border: 1px solid;
  flex-shrink: 0;
  text-align: center;
  min-width: clamp(48px, 7vw, 72px);
}
.fs-pa-station--live {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
}
.fs-pa-station--dead {
  border-color: rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  opacity: 0.38;
}
.fs-pa-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
}
.fs-pa-station--dead .fs-pa-dot {
  background: rgba(255,255,255,0.2);
}
.fs-pa-label {
  font-family: var(--sans);
  font-size: clamp(0.58rem, 0.9vw, 0.7rem);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.fs-pa-station--dead .fs-pa-label {
  color: rgba(255,255,255,0.25);
}
.fs-pa-edge {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
  min-width: 12px;
  position: relative;
}
.fs-pa-edge--broken {
  background: transparent;
  border-top: 1px dashed rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 0 4px;
}
.fs-pa-break-badge {
  font-family: var(--sans);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,100,100,0.75);
  background: rgba(255,60,60,0.1);
  border: 1px solid rgba(255,60,60,0.2);
  border-radius: 4px;
  padding: 2px 5px;
  white-space: nowrap;
  position: relative;
  top: -1px;
  flex-shrink: 0;
}

/* ── OS architecture board (Section 03) ─────────────────────── */
.fs-os-board {
  width: 100%;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  position: relative;
  overflow: hidden;
}
.fs-os-board::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(26,106,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.fs-os-phases {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.fs-os-phase-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.fs-os-phase-block--end {
  border-color: rgba(26,106,255,0.3);
  background: rgba(26,106,255,0.06);
}
.fs-os-phase-num {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.07);
  line-height: 1;
}
.fs-os-phase-name {
  font-family: var(--display);
  font-size: clamp(0.88rem, 1.4vw, 1.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
}
.fs-os-phase-sub {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(26,106,255,0.85);
}
.fs-os-phase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
  padding-top: 0.75rem;
}
.fs-os-phase-tag {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  white-space: nowrap;
}
.fs-os-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(0.5rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ── Lead acquisition machine (Section 05, blue bg) ─────────── */
.fs-acq-machine {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  position: relative;
  overflow: hidden;
}
.fs-acq-machine::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 50% at 100% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.fs-acq-station {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: clamp(10px, 1.75vw, 14px) clamp(12px, 2vw, 16px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  position: relative;
  z-index: 1;
}
.fs-acq-station--end {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.1);
}
.fs-acq-icon-wrap {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  flex-shrink: 0;
}
.fs-acq-station--end .fs-acq-icon-wrap {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}
.fs-acq-info { min-width: 0; }
.fs-acq-name {
  font-family: var(--display);
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
}
.fs-acq-desc {
  font-family: var(--sans);
  font-size: clamp(0.6rem, 0.85vw, 0.68rem);
  color: rgba(255,255,255,0.45);
  line-height: 1.45;
  margin-top: 3px;
}
.fs-acq-badge {
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
  flex-shrink: 0;
}
.fs-acq-pipe-line {
  width: 1px;
  height: clamp(10px, 1.5vw, 14px);
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  margin-left: calc(40px / 2 + 12px - 0.5px);
  position: relative;
  z-index: 1;
}

/* ── CRM automation lifecycle (Section 06, light bg) ─────────── */
.fs-lc-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fs-lc-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fs-lc-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 14px;
}
.fs-lc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  flex-shrink: 0;
  margin-top: 3px;
}
.fs-lc-dot--entry {
  border-color: var(--blue);
  background: var(--blue);
}
.fs-lc-dot--loop {
  border-color: var(--ink);
  background: var(--ink);
}
.fs-lc-line {
  width: 1px;
  flex: 1;
  min-height: clamp(14px, 2vw, 20px);
  background: var(--border);
  margin: 4px 0;
}
.fs-lc-body {
  padding-bottom: clamp(12px, 2vw, 18px);
  flex: 1;
}
.fs-lc-step--loop .fs-lc-body { padding-bottom: 0; }
.fs-lc-when {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--type-3);
}
.fs-lc-what {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  margin-top: 3px;
}
.fs-lc-loop-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(26,106,255,0.08);
  border: 1px solid rgba(26,106,255,0.2);
  border-radius: 5px;
  padding: 3px 8px;
  margin-top: 6px;
}

/* ── Trust ecosystem map (Section 07, dark bg) ───────────────── */
.fs-eco-map {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fs-eco-ring {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.fs-eco-node {
  font-family: var(--sans);
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
  white-space: nowrap;
}
.fs-eco-node--span {
  flex: 1;
  text-align: center;
}
.fs-eco-sep {
  color: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  padding-left: 6px;
}
.fs-eco-hub {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: clamp(12px, 2vw, 16px) clamp(14px, 2.5vw, 20px);
}
.fs-eco-hub-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.fs-eco-hub-text {
  font-family: var(--display);
  font-size: clamp(0.82rem, 1.3vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}
.fs-eco-hub-sub {
  font-family: var(--sans);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.38);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── Responsive: cinematic components ───────────────────────── */
@media(max-width: 860px) {
  .fs-os-phases { grid-template-columns: 1fr; }
  .fs-os-connector { padding: 0.5rem 0; transform: rotate(90deg); }
  .fs-acq-station { grid-template-columns: 36px 1fr; }
  .fs-acq-badge { display: none; }
  .fs-pipe-arch { flex-wrap: wrap; gap: 6px; }
  .fs-pa-edge { display: none; }
}
@media(max-width: 560px) {
  .fs-arch-board { border-radius: 14px; }
  .fs-arch-board--light { border-radius: 14px; }
  .fs-os-board { border-radius: 14px; }
  .fs-eco-ring { gap: 5px; }
}

/* ════════════════════════════════════════════════════════════
   SCENE LAYOUT SYSTEM — v2
   ════════════════════════════════════════════════════════════ */

/* ── fs-arch-board--fill: board expands to fill its container ── */
.fs-arch-board--fill {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.fs-arch-board--fill .fs-arch-board-label,
.fs-arch-board--fill .fs-arch-board-note {
  flex-shrink: 0;
}

/* ── fs-scene-v: stacked layout (top strip + expanding visual) ── */
.fs-scene-v {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: 100%;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}
.fs-scene-v-top {
  flex-shrink: 0;
}
.fs-scene-v-top-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(0.75rem, 1.25vw, 1.25rem);
  flex-wrap: wrap;
}
.fs-scene-v-top-row .fs-slide-callout {
  flex: 1;
  min-width: 180px;
  margin-top: 0;
}
.fs-scene-v-top-row .fs-cols {
  flex-shrink: 0;
  min-width: 200px;
}
.fs-scene-v-visual {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

/* ── fs-scene-centered: full-height centered composition ──────── */
.fs-scene-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  justify-content: center;
}
.fs-scene-centered-header {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.fs-scene-eyebrow {
  font-family: var(--sans);
  font-size: clamp(0.58rem, 0.85vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--type-3);
}
.fs-scene-quote {
  font-family: var(--display);
  font-size: clamp(1.8rem, 5.5vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.93;
  font-style: italic;
  color: var(--ink);
  text-align: center;
  flex-shrink: 0;
}
.fs-scene-centered .fs-scene-v-visual {
  flex: 1;
  min-height: 0;
  width: 100%;
}

/* ── fs-scene-results-header: headline + metrics side by side ── */
.fs-scene-results-header {
  display: flex;
  align-items: flex-end;
  gap: clamp(2rem, 4vw, 5rem);
  flex-shrink: 0;
}
.fs-scene-results-header .fs-headline {
  flex-shrink: 0;
}
.fs-scene-results-header .fs-metrics-grid {
  flex: 1;
}

/* ── fs-phase-chips--h: horizontal chip row ──────────────────── */
.fs-phase-chips--h {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.fs-phase-chips--h .fs-phase-chip {
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════
   HORIZONTAL TIMELINE  (Section 04)
   ════════════════════════════════════════════════════════════ */

.fs-tl-h {
  display: flex;
  align-items: flex-start;
  flex: 1;
  min-height: 0;
  position: relative;
  padding-top: 4px;
}
/* connecting line through all dots */
.fs-tl-h::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
  pointer-events: none;
}
.fs-tl-h-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(4px, 0.75vw, 10px);
  position: relative;
  z-index: 1;
}
.fs-tl-h-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  flex-shrink: 0;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.fs-tl-h-dot--launch {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(26,106,255,0.12);
}
.fs-tl-h-dot--end {
  border-color: var(--ink);
  background: var(--ink);
}
.fs-tl-h-when {
  font-family: var(--sans);
  font-size: clamp(0.52rem, 0.75vw, 0.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--type-3);
  margin-bottom: 5px;
  white-space: nowrap;
}
.fs-tl-h-what {
  font-family: var(--sans);
  font-size: clamp(0.6rem, 0.9vw, 0.72rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════
   HORIZONTAL ACQUISITION MACHINE  (Section 05)
   ════════════════════════════════════════════════════════════ */

.fs-acq-machine-h {
  display: flex;
  flex-direction: column;
}
.fs-acq-h-rail {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-height: 0;
  gap: 4px;
}
.fs-acq-h-station {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: clamp(12px, 2vw, 20px) clamp(8px, 1.25vw, 14px);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  min-width: 0;
}
.fs-acq-h-station--end {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.28);
}
.fs-acq-h-pipe {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
  padding: 0 clamp(4px, 0.75vw, 10px);
}

/* ════════════════════════════════════════════════════════════
   HORIZONTAL AUTOMATION LIFECYCLE  (Section 06)
   ════════════════════════════════════════════════════════════ */

.fs-lc-h {
  display: flex;
  align-items: flex-start;
  flex: 1;
  min-height: 0;
  padding-top: 4px;
}
.fs-lc-h-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  padding: 0 clamp(4px, 0.75vw, 10px);
}
.fs-lc-h-step--loop .fs-lc-h-dot--loop {
  box-shadow: 0 0 0 4px rgba(13,13,13,0.08);
}
.fs-lc-h-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.fs-lc-h-dot--entry {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(26,106,255,0.1);
}
.fs-lc-h-dot--loop {
  border-color: var(--ink);
  background: var(--ink);
}
.fs-lc-h-pipe {
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 5px;
  width: clamp(12px, 1.5vw, 20px);
  height: 2px;
  background: var(--border);
}
.fs-lc-h-pipe--loop {
  background: repeating-linear-gradient(
    90deg,
    var(--border) 0,
    var(--border) 4px,
    transparent 4px,
    transparent 8px
  );
}
.fs-lc-h-when {
  font-family: var(--sans);
  font-size: clamp(0.52rem, 0.75vw, 0.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--type-3);
  margin-bottom: 5px;
  white-space: nowrap;
}
.fs-lc-h-what {
  font-family: var(--sans);
  font-size: clamp(0.58rem, 0.85vw, 0.7rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════
   TRUST ECOSYSTEM MAP  (Section 07)
   ════════════════════════════════════════════════════════════ */

.fs-eco-map-board {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 16px);
}
.fs-eco-ring-h {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.fs-eco-sep {
  gap: 8px;
}
.fs-eco-sep-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* ── Responsive: scene layout system ─────────────────────── */
@media(max-width: 860px) {
  /* Horizontal timeline → stacked vertical list */
  .fs-tl-h { flex-direction: column; gap: 20px; padding-top: 0; }
  .fs-tl-h::before { display: none; }
  .fs-tl-h-item { flex-direction: row; align-items: flex-start; text-align: left; gap: 12px; padding: 0; }
  .fs-tl-h-dot { margin-bottom: 0; margin-top: 2px; flex-shrink: 0; }
  .fs-tl-h-when, .fs-tl-h-what { display: inline; }

  /* Horizontal acquisition rail → vertical stack */
  .fs-acq-h-rail { flex-direction: column; align-items: stretch; gap: 6px; }
  .fs-acq-h-pipe { padding: 2px 0; transform: rotate(90deg); }
  .fs-acq-h-station { flex-direction: row; text-align: left; justify-content: flex-start; }

  /* Horizontal lifecycle → vertical stack */
  .fs-lc-h { flex-direction: column; gap: 0; padding-top: 0; }
  .fs-lc-h-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 12px; padding: 0 0 16px; }
  .fs-lc-h-pipe { width: 2px; height: 16px; align-self: auto; margin-top: 0; margin-left: 5px; }
  .fs-lc-h-pipe--loop {
    background: repeating-linear-gradient(
      180deg,
      var(--border) 0,
      var(--border) 4px,
      transparent 4px,
      transparent 8px
    );
  }
  .fs-lc-h-dot { margin-bottom: 0; margin-top: 2px; }

  /* Results header: stack vertically */
  .fs-scene-results-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

  /* Top row: stack */
  .fs-scene-v-top-row { flex-direction: column; }
}
@media(max-width: 560px) {
  .fs-scene-quote { font-size: clamp(1.8rem, 10vw, 3rem); }
  .fs-acq-h-station { border-radius: 10px; }
  .fs-eco-ring-h { gap: 5px; }
}

/* ── --fill board inner content: grow to fill available space ── */
.fs-arch-board--fill .fs-pipe-arch {
  flex: 1;
  min-height: 0;
  justify-content: center;
}
.fs-arch-board--fill .fs-os-phases {
  flex: 1;
  min-height: 0;
}
.fs-arch-board--fill .fs-bar-chart {
  flex: 1;
  min-height: 0;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}
.fs-arch-board--fill .fs-bar-chart-inner {
  flex: 1;
  height: auto;
  min-height: 80px;
}
/* ba-wrap (before/after) fills board height */
.fs-arch-board--fill .fs-ba-wrap {
  flex: 1;
  min-height: 0;
  align-items: stretch;
}
.fs-arch-board--fill .fs-ba-col {
  display: flex;
  flex-direction: column;
}
.fs-arch-board--fill .fs-ba-flow {
  flex: 1;
}

/* ── wb-card mini bento grid (used in flow sections) ─────────── */
.fs-wb-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1;
  min-height: 0;
}
.fs-wb-mini-grid .wb-card {
  grid-column: span 1;
  padding: clamp(16px, 2vw, 22px);
  border-radius: 16px;
}
.fs-wb-mini-grid .wb-stat {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

/* ── testi-card used standalone inside flow sections ─────────── */
.fs-testi-card-solo {
  max-width: 600px;
}
.fs-testi-monogram {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
@media(max-width: 860px) {
  .fs-wb-mini-grid { grid-template-columns: 1fr; }
}


/* ── Added: header phone, Team link, image logos ─────────────── */
.nav-phone {
  display: none; align-items: center; gap: 7px;
  font-family: var(--display); font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.9); margin-right: 18px;
  transition: color var(--trans);
}
@media(min-width: 1024px) { .nav-phone { display: inline-flex; } }
.nav-phone:hover { color: #fff; }
.nav.scrolled .nav-phone { color: var(--type); }
.nav.scrolled .nav-phone:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; }

.logo-img {
  height: 52px; width: 150px; object-fit: contain;
  opacity: 0.55; transition: opacity var(--trans);
}
.logo-item:hover .logo-img { opacity: 0.9; }
@media(max-width: 600px) { .logo-img { height: 42px; width: 120px; } }


/* ── NEWSLETTER (own section, before the footer) ─────────────── */
.nl {
  background: var(--paper-2);
  border-top: 1px solid var(--border);
  padding: 88px 0;
}
.nl-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.nl-eyebrow {
  font-family: var(--display); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.nl-h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 16px; max-width: 20ch;
}
.nl-sub {
  font-size: 0.92rem; line-height: 1.75; color: var(--type-2); max-width: 52ch;
}
.nl-form { max-width: 420px; }
.nl-label {
  display: block;
  font-family: var(--display); font-size: 0.59rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--type-3); margin-bottom: 8px;
}
.nl-row { display: flex; gap: 10px; align-items: stretch; }
.nl-input {
  flex: 1; min-width: 0;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 13px 16px;
  font-family: var(--sans); font-size: 0.9rem; color: var(--ink);
  outline: none; transition: border-color var(--trans), box-shadow var(--trans);
}
.nl-input::placeholder { color: var(--type-3); }
.nl-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,106,255,0.12);
}
.nl-btn {
  padding: 13px 22px;
  background: var(--blue); border: 1px solid var(--blue); border-radius: 8px;
  font-family: var(--display); font-size: 0.85rem; font-weight: 600;
  color: #fff; cursor: pointer; white-space: nowrap;
  transition: background var(--trans), border-color var(--trans);
}
.nl-btn:hover { background: #0F5CE8; border-color: #0F5CE8; }
.nl-note {
  margin-top: 12px; font-size: 0.76rem; color: var(--type-3);
}

/* Socials moved into the footer's bottom row */
.ft-bottom .ft-socials { margin-left: auto; }

@media(max-width: 900px) {
  .nl { padding: 64px 0; }
  .nl-inner { grid-template-columns: 1fr; gap: 32px; }
  .nl-form { max-width: 100%; }
}
@media(max-width: 520px) {
  .nl-row { flex-direction: column; }
  .nl-btn { width: 100%; }
}


/* The big footer wordmark sits flush on the bottom edge. */
.ft-logo-large-wrap { display: block; margin-bottom: 0; }


/* ── Header CTAs: ghost (Free Growth Audit) + solid (Partner With Us) ── */
.nav-cta--ghost { margin-right: 10px; }
.nav-cta--solid {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.nav-cta--solid:hover { background: #0F5CE8; border-color: #0F5CE8; color: #fff; }
.nav.scrolled .nav-cta--solid { background: var(--blue); border-color: var(--blue); color: #fff; }
.nav.scrolled .nav-cta--solid:hover { background: #0F5CE8; border-color: #0F5CE8; color: #fff; }
@media(max-width: 1023px) { .nav-cta--ghost { display: none; } }


/* ── Reviews grid (real Google reviews, three across) ────────── */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px; align-items: start;
}
.testi-grid .testi-card { display: flex; flex-direction: column; height: 100%; }
.testi-grid .testi-text { flex: 1; }
.testi-stars {
  display: flex; gap: 2px; margin-bottom: 14px;
  color: var(--blue); font-size: 0.9rem; line-height: 1;
}
@media(max-width: 900px) { .testi-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 40px; } }
