/* ============================================================
   PRETENCIFY — visual system (purple + cream)
   Brand fonts: ABC Camera Bold (display) + Roboto (body).
   ============================================================ */

@font-face {
  font-family: 'ABC Camera';
  src: url('fonts/ABCCamera-Bold.woff2') format('woff2'),
       url('fonts/ABCCamera-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('fonts/SourceSerif4-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('fonts/SourceSerif4-VariableFont.ttf') format('truetype-variations'),
       url('fonts/SourceSerif4-VariableFont.ttf') format('truetype');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('fonts/SourceSerif4-Italic-VariableFont.ttf') format('truetype-variations'),
       url('fonts/SourceSerif4-Italic-VariableFont.ttf') format('truetype');
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand palette */
  --cream:        #F4EEE0;   /* warm off-white, primary bg */
  --cream-soft:   #FBF7EE;   /* lighter cream surface */
  --surface:      #FFFFFF;
  --ink:          #1F0A4C;   /* deep eggplant (brand dark) */
  --ink-2:        #2D0A5C;   /* slightly lifted ink */
  --ink-soft:     rgba(31,10,76,0.65);
  --ink-faint:    rgba(31,10,76,0.15);
  --bright:       #B026F0;   /* vivid action purple */
  --bright-2:     #C150F5;
  --lavender:     #E8D2F4;
  --lavender-soft:#F2E2F8;
  --line:         rgba(31,10,76,0.12);
}

* { -webkit-font-smoothing: antialiased; box-sizing: border-box; }

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Geist', 'Roboto', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01", "cv11";
}

::selection { background: var(--ink); color: var(--cream); }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ----------
   ABC Camera (geometric/display) is RESERVED for the hero h1 only —
   it's our signature 'voice', not a body font. Everywhere else uses
   Source Serif 4 Black (editorial confidence) paired with Geist (B2B body).
   Instrument Serif Italic gives marketing-flair accents inside headlines.
*/
.font-display {
  /* Section H2s, statement, framework, contact, footer headline */
  font-family: 'Source Serif 4', 'Times New Roman', Georgia, serif;
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 1.02;
}
.font-hero {
  /* The one big title only — ABC Camera */
  font-family: 'ABC Camera', 'Geist', sans-serif;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1;
}
.font-serif {
  font-family: 'Source Serif 4', 'Times New Roman', Georgia, serif;
  font-weight: 900;
  letter-spacing: -0.018em;
  line-height: 1.05;
}
.font-display-it {
  font-family: 'Instrument Serif', 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--bright);
}
.tracking-eyebrow { letter-spacing: 0.18em; }
.tabular { font-variant-numeric: tabular-nums; }

/* ---------- Container & rhythm ---------- */
.container-px {
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .container-px { padding-left: 20px; padding-right: 20px; }
}
section { padding-top: 140px; padding-bottom: 140px; }
@media (max-width: 768px) { section { padding-top: 88px; padding-bottom: 88px; } }
section.flush { padding: 0; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ---------- Nav (transparent → hide on scroll-down → reveal w/ bg on scroll-up) ---------- */
.nav-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: 180px;
  transition: transform .5s cubic-bezier(.22,1,.36,1), background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav-bar.solid {
  background: rgba(244,238,224,0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-bar.hide { transform: translateY(-100%); }
.nav-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  opacity: .78;
  transition: opacity .2s ease, color .2s ease;
}
.nav-link:hover { opacity: 1; color: var(--bright); }

/* ---------- Buttons (pill, with dot-arrow icon) ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .25s cubic-bezier(.22,1,.36,1), background .25s ease, color .25s ease, border-color .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.pill-solid {
  background: var(--ink);
  color: var(--cream);
}
.pill-solid:hover { background: var(--ink-2); transform: translateY(-1px); }
.pill-bright {
  background: var(--bright);
  color: #FFFFFF;
}
.pill-bright:hover { background: var(--bright-2); transform: translateY(-1px); }
.pill-soft {
  background: var(--lavender);
  color: var(--ink);
}
.pill-soft:hover { background: var(--lavender-soft); transform: translateY(-1px); }
.pill-ghost {
  background: transparent;
  border-color: var(--ink-faint);
  color: var(--ink);
}
.pill-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.pill-lg { padding: 16px 28px; font-size: 15px; }
.pill-sm { padding: 10px 16px; font-size: 13px; gap: 8px; }

/* Inline dot/atom icon next to button label */
.dot-icon {
  display: inline-grid;
  grid-template-columns: repeat(3, 4px);
  grid-template-rows: repeat(3, 4px);
  gap: 2px;
  width: 16px; height: 16px;
}
.dot-icon i {
  background: currentColor;
  border-radius: 1px;
  opacity: 0.95;
}
.dot-icon i:nth-child(1),
.dot-icon i:nth-child(3),
.dot-icon i:nth-child(5),
.dot-icon i:nth-child(7),
.dot-icon i:nth-child(9) { opacity: 1; }
.dot-icon i:nth-child(2),
.dot-icon i:nth-child(4),
.dot-icon i:nth-child(6),
.dot-icon i:nth-child(8) { opacity: 0; }

/* Arrow chevron sliders */
.arrow-btn {
  width: 52px; height: 52px;
  display: inline-grid; place-items: center;
  background: var(--bright);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.arrow-btn-square { border-radius: 6px; }
.arrow-btn-round  { border-radius: 999px; }
.arrow-btn:hover { background: var(--bright-2); transform: translateY(-1px); }
.arrow-btn[disabled] { background: var(--lavender); color: var(--ink-soft); cursor: default; transform: none; }

/* ---------- Reveal animation (transform-only — content stays visible) ---------- */
[data-reveal] {
  opacity: 1;
  transform: translateY(18px);
  transition: transform .9s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform;
}
[data-reveal].in { transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transform: none; transition: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-top: 232px;   /* below fixed nav */
  padding-bottom: 80px;
  background: var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero-media {
  position: relative;
}
.hero-video-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #15053A;
  box-shadow: 0 30px 70px -28px rgba(0,0,0,0.6);
}
.hero-feature-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero h1 {
  /* The ONLY place ABC Camera is used — keep it iconic. */
  font-family: 'ABC Camera', 'Geist', sans-serif;
  font-size: clamp(56px, 9vw, 124px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-wrap: balance;
}
.hero h1 em {
  display: inline-block;
  font-family: 'Instrument Serif', 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.94em;
  letter-spacing: -0.012em;
  line-height: 1.15;
  color: var(--bright);
}

.hero-media {
  position: relative;
  aspect-ratio: 5 / 4;
  max-height: 620px;
  width: 100%;
  margin: 0 auto;
  border-radius: 28px;
  overflow: visible;
  background: transparent;
  border: none;
}
@media (min-width: 981px) {
  .hero-media { aspect-ratio: 4 / 5; max-height: none; }
}
.hero-media .placeholder { position: absolute; inset: 0; }

/* Phone mockup (CSS-only, sits inside .hero-media) */
.phone-mock {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  perspective: 1400px;
}
.phone-frame {
  position: relative;
  width: min(68%, 340px);
  aspect-ratio: 9 / 18;
  background: linear-gradient(168deg, #1F0A4C 0%, #110632 100%);
  border-radius: 32px;
  padding: 8px;
  box-shadow:
    0 60px 100px -50px rgba(31,10,76,0.55),
    0 26px 50px -20px rgba(176,38,240,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}
.phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 16px;
  background: #0a0220;
  border-radius: 0 0 12px 12px;
  z-index: 4;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(170deg, #2D0A5C 0%, #1F0A4C 60%, #15053A 100%);
  border-radius: 24px;
  overflow: hidden;
  padding: 28px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--cream);
}

/* Demo iframe sitting inside the phone-screen */
.phone-screen.demo-screen {
  padding: 0;
  background: #1A3256;
  pointer-events: auto;
}
.demo-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #1A3256;
  border-radius: 24px;
}
.demo-shine {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 18%, rgba(0,0,0,0) 82%, rgba(0,0,0,0.22) 100%),
    linear-gradient(120deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 35%);
  mix-blend-mode: overlay;
  z-index: 2;
}

/* Chapter header */
.story-chapter { display: flex; flex-direction: column; gap: 4px; padding: 0 4px; }
.ch-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bright-2);
  font-weight: 500;
}
.ch-title {
  font-family: 'Source Serif 4', serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.012em;
  line-height: 1.05;
  color: var(--cream);
}

/* Scene visual */
.story-scene {
  position: relative;
  flex: 1;
  border-radius: 16px;
  background:
    radial-gradient(60% 60% at 30% 80%, rgba(176,38,240,0.45) 0%, rgba(176,38,240,0) 60%),
    radial-gradient(60% 80% at 80% 20%, rgba(255, 244, 224, 0.18) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(170deg, #4a187a 0%, #2a0a5e 60%, #170535 100%);
  overflow: hidden;
}
.scene-bloom {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,0.16), rgba(255,255,255,0) 60%);
  border-radius: 50%;
}
.scene-figure {
  position: absolute;
  left: 18%; right: 18%; bottom: 0;
  height: 78%;
  background:
    radial-gradient(50% 12% at 50% 99%, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 70%), /* shadow */
    linear-gradient(180deg, transparent 0%, transparent 16%, #0a0220 16%, #0a0220 100%);
  border-radius: 50% 50% 12% 12% / 70% 70% 12% 12%;
  /* Subtle character silhouette using gradient mask */
  -webkit-mask-image: radial-gradient(45% 24% at 50% 18%, #000 0%, #000 70%, transparent 100%),
                       linear-gradient(180deg, #000 0%, #000 100%);
  -webkit-mask-composite: source-over;
}

/* Dialogue card */
.story-dialogue {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dlg-name {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,238,224,0.6);
  font-weight: 500;
}
.dlg-text {
  font-family: 'Source Serif 4', serif;
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--cream);
  text-wrap: balance;
}
.story-choices {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.story-choices .choice {
  appearance: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--cream);
  border-radius: 999px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  text-align: left;
  cursor: default;
  transition: background .2s ease, border-color .2s ease;
}
.story-choices .choice.primary {
  background: var(--bright);
  border-color: var(--bright);
  color: #fff;
}

/* Progress indicator */
.story-progress {
  display: flex;
  gap: 4px;
  margin-top: auto;
  padding: 6px 4px 0;
}
.story-progress span {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}
.story-progress .done   { background: rgba(255,255,255,0.55); }
.story-progress .active {
  background: linear-gradient(to right, var(--bright) 0%, var(--bright) 60%, rgba(255,255,255,0.12) 60%, rgba(255,255,255,0.12) 100%);
}

/* Floating tags / chat bubbles on the hero media */
.float-tag {
  position: absolute;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 18px 40px -22px rgba(31,10,76,0.35), 0 6px 12px -6px rgba(31,10,76,0.18);
  font-size: 12px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-tag .dot { width: 8px; height: 8px; background: var(--bright); border-radius: 999px; flex: none; }
.float-tag.tl { top: 24px; left: 24px; }
.float-tag.tr { top: 50px; right: 22px; }
.float-tag.bl { bottom: 90px; left: -10px; background: var(--bright); color: #FFFFFF; padding: 12px 18px; border-radius: 999px; }
.float-tag.br { bottom: 24px; right: 18px; background: var(--lavender); }

/* ---------- BRIDGE ---------- */
.bridge {
  padding-top: 80px;
  padding-bottom: 160px;
  background: var(--cream);
}
.bridge .statement {
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: balance;
  max-width: 1080px;
}
.bridge .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.bridge .word.in { opacity: 1; transform: none; }
.bridge .accent-word {
  font-family: 'Instrument Serif', 'Source Serif 4', Georgia, serif;
  color: var(--bright);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ---------- Capability grid (4 quadrants — Story / Reflection / Activation / Reward) ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
.cap-cell {
  position: relative;
  padding: 56px 36px 44px;
  min-height: 360px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cap-cell:last-child { border-right: none; }
@media (max-width: 900px) {
  .cap-cell:nth-child(2n) { border-right: none; }
  .cap-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.cap-cell.bright { background: var(--bright); color: #FFFFFF; }
.cap-cell.bright .step { color: rgba(255,255,255,0.7); }
.cap-cell.lavender { background: var(--lavender); }
.cap-cell .step { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }
.cap-cell .pattern {
  width: 64px; height: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 3px;
}
.cap-cell .pattern i {
  background: currentColor;
  border-radius: 1px;
  opacity: 0.18;
}
/* Form a small atom-like cluster */
.cap-cell .pattern i:nth-child(1),
.cap-cell .pattern i:nth-child(5),
.cap-cell .pattern i:nth-child(11),
.cap-cell .pattern i:nth-child(13),
.cap-cell .pattern i:nth-child(15),
.cap-cell .pattern i:nth-child(21),
.cap-cell .pattern i:nth-child(25) { opacity: 0.85; }
.cap-cell .pattern i:nth-child(7),
.cap-cell .pattern i:nth-child(9),
.cap-cell .pattern i:nth-child(17),
.cap-cell .pattern i:nth-child(19) { opacity: 0.55; }
.cap-cell h3 {
  font-family: 'Source Serif 4', serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.012em;
  margin: 16px 0 8px;
  line-height: 1.05;
}
.cap-cell p {
  font-size: 14px;
  line-height: 1.5;
  opacity: .85;
  max-width: 240px;
}

/* ---------- Pipeline diagram (story → content → 3 verticals) ---------- */
.pipeline {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: center;
  gap: 0;
  padding: 32px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
}
@media (max-width: 900px) {
  .pipeline { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .pipeline .pipe-arrow { transform: rotate(90deg); justify-self: center; height: 24px; width: 80px; }
}
.pipeline .pipe-in,
.pipeline .pipe-mid,
.pipeline .pipe-out {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pipeline .pipe-mid { padding: 18px 22px; background: var(--ink); color: var(--cream); border-radius: 14px; }
.pipeline .pipe-mid .eyebrow { color: rgba(244,238,224,0.65); }
.pipeline .pipe-label {
  font-family: 'Source Serif 4', serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.008em;
  line-height: 1.15;
}
.pipeline .pipe-arrow {
  color: var(--ink-faint);
  width: 100%;
  height: 24px;
}
.pipeline .pipe-arrow svg { width: 100%; height: 100%; }

/* ---------- Verticals row (3 side-by-side, clickable to subpages) ---------- */
.verticals-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) {
  .verticals-row { grid-template-columns: 1fr; gap: 16px; }
}
.vertical-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(155deg, #2a1252 0%, #15053A 100%);
  border: none;
  border-radius: 52px;
  padding: 16px;
  overflow: visible;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
  cursor: pointer;
  color: var(--ink);
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.12),
    inset 0 0 0 6px rgba(0,0,0,0.32),
    0 34px 64px -30px rgba(21,5,58,0.6);
}
.vertical-card::before {
  content: none;
}
.vertical-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.16),
    inset 0 0 0 6px rgba(0,0,0,0.32),
    0 46px 86px -32px rgba(176,38,240,0.42);
}
.vc-screen {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  background: var(--cream-soft);
  border-radius: 38px;
  overflow: hidden;
}
.vc-cases li::before { background: var(--bright); }

.vc-thumb {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.vc-thumb .placeholder { position: absolute; inset: 0; }
.vc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0a0220;
}
.brabo-sample-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0a0220;
  border-radius: inherit;
}
.vertical-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.vertical-col .vertical-card { flex: 1 1 auto; }
.vc-tag {
  display: inline-block;
  align-self: center;
  margin: 0 auto 18px;
  background: var(--bright);
  color: #FFFFFF;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 8px 26px rgba(21,5,58,0.22);
}
.vc-arrow {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--bright);
  color: #FFFFFF;
  display: grid; place-items: center;
  transition: transform .3s ease;
}
.vertical-card:hover .vc-arrow { transform: translate(4px, -2px); }

/* Play-with-sound button on card videos */
.vc-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(21,5,58,0.32);
  transition: transform .25s ease, background .25s ease;
}
.vc-play svg { margin-left: 3px; }
.vc-play:hover {
  background: #FFFFFF;
  transform: translate(-50%, -50%) scale(1.08);
}

.vc-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.vc-body h3, .vc-body h3.font-display {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 900;
  text-wrap: balance;
}
.vc-body p { font-size: 14px; line-height: 1.6; color: rgba(31,10,76,0.82); }
.vc-cases {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}
.vc-cases li { position: relative; padding-left: 14px; }
.vc-cases li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 999px; background: var(--bright);
}
.vc-cta { margin-top: auto; padding-top: 8px; }

/* ---------- Stepped slider (three verticals) ---------- */
.step-slider .header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.step-track {
  display: grid;
  grid-template-columns: repeat(var(--n, 3), 1fr);
  border-top: 1px solid var(--line);
  gap: 0;
  margin-bottom: 56px;
}
.step-item {
  padding: 22px 8px 22px 0;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  user-select: none;
}
.step-item .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--lavender);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  flex: none;
  transition: background .3s ease, color .3s ease;
}
.step-item.active .step-num { background: var(--bright); color: #FFFFFF; }
.step-item.done .step-num { background: var(--ink); color: var(--cream); }
.step-item .step-row { display: flex; align-items: center; gap: 12px; }
.step-item .step-title {
  font-family: 'Source Serif 4', serif;
  font-size: 22px;
  letter-spacing: -0.008em;
  font-weight: 900;
  color: var(--ink-soft);
  transition: color .3s ease;
}
.step-item.active .step-title,
.step-item.done .step-title { color: var(--ink); }
.step-item .progress {
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.step-item .progress .fill {
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--bright);
  transition: right linear;
}
.step-item.done .progress .fill { right: 0; background: var(--ink); transition: right .35s ease; }

.step-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .step-body { grid-template-columns: 1fr; } }
.case-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
  cursor: pointer;
}
.case-card:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -20px rgba(31,10,76,0.25); }
.case-card .thumb { position: absolute; inset: 0; }
.case-card .grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,10,76,0.75) 0%, rgba(31,10,76,0) 55%);
  pointer-events: none;
}
.case-card .meta {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  color: #FFFFFF;
}
.case-card .meta .name { font-family: 'Source Serif 4', serif; font-size: 22px; letter-spacing: -0.008em; font-weight: 900; line-height: 1.1; }
.case-card .meta .kind { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 6px; opacity: .8; }
.case-card .play-pill {
  position: absolute;
  right: 12px;
  top: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s ease, transform .3s ease;
}
.case-card:hover .play-pill { opacity: 1; transform: none; }

.slider-controls { display: flex; gap: 12px; }

/* ---------- Dark purple framework section ---------- */
.framework {
  background: var(--ink);
  color: var(--cream);
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
  overflow: hidden;
}
.framework .eyebrow { color: rgba(244,238,224,0.6); }
.framework .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 980px) { .framework .grid { grid-template-columns: 1fr; gap: 48px; } }
.framework h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.022em;
  font-weight: 900;
  text-wrap: balance;
}
.framework h2 em {
  font-family: 'Instrument Serif', 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--bright-2);
}

.fw-list { margin-top: 56px; }
.fw-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(244,238,224,0.16);
  transition: padding .3s ease;
}
.fw-item:first-child { border-top: 1px solid rgba(244,238,224,0.16); }
.fw-item .label {
  font-family: 'Source Serif 4', serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.01em;
  flex: 1;
  line-height: 1.15;
  transition: color .3s ease;
  color: var(--bright-2);
}
.fw-item.active .label { color: #FFFFFF; }
.fw-item .label small { display: block; font-family: 'Geist', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(244,238,224,0.5); font-weight: 500; margin-bottom: 8px; }
.fw-item .desc {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(244,238,224,0.7);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, margin-top .4s ease, opacity .35s ease;
  opacity: 0;
  width: 100%;
}
.fw-item.active .desc { max-height: 200px; margin-top: 10px; opacity: 1; }
.fw-item .arrow {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(244,238,224,0.08);
  display: grid; place-items: center;
  flex: none;
  transition: background .3s ease, transform .3s ease;
}
.fw-item.active .arrow { background: var(--bright); }
.fw-item .arrow svg { transition: transform .3s ease; }
.fw-item.active .arrow svg { transform: rotate(45deg); }
.fw-item .label-wrap { display: flex; flex-direction: column; flex: 1; }

/* Framework visual */
.fw-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(244,238,224,0.16);
}
.fw-visual .placeholder { position: absolute; inset: 0; background:
  repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, rgba(255,255,255,0.09) 14px 28px),
  linear-gradient(135deg, #2d0a6b 0%, #1c084a 100%); color: rgba(244,238,224,0.4);
}
.fw-badge {
  position: absolute;
  background: var(--cream-soft);
  width: 72px; height: 72px;
  border-radius: 999px;
  display: grid; place-items: center;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.4);
}
.fw-badge.tr { top: 36px; right: 24px; }
.fw-badge.ml { top: 50%; left: -28px; transform: translateY(-50%); background: var(--bright); color: #FFFFFF; }
.fw-badge img, .fw-badge svg { width: 36px; height: 36px; }
.fw-pill {
  position: absolute;
  background: var(--bright);
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.fw-pill.right { top: 55%; right: -16px; }
.fw-pill.bl { bottom: 24px; left: -8px; background: var(--lavender); color: var(--ink); }

/* ---------- Brabo / hero case (dark with image bg) ---------- */
.brabo {
  position: relative;
  min-height: 96vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #15053A;
}
.brabo-bg { position: absolute; inset: 0; z-index: 0; }
.brabo-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(21,5,58,0) 0%, rgba(21,5,58,0.85) 85%);
  z-index: 1;
  pointer-events: none;
}
.brabo-beats { position: relative; text-align: center; z-index: 2; color: var(--cream); }
.brabo .eyebrow { color: rgba(244,238,224,0.7); }
.brabo-beat {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 1;
  letter-spacing: -0.022em;
  font-weight: 900;
  display: block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.2s cubic-bezier(.22,1,.36,1), transform 1.2s cubic-bezier(.22,1,.36,1);
  text-wrap: balance;
}
.brabo-beat.in { opacity: 1; transform: none; }
.brabo-beat + .brabo-beat { margin-top: 6px; }
.brabo-beat .em {
  font-family: 'Instrument Serif', 'Source Serif 4', Georgia, serif;
  color: var(--bright-2);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.012em;
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 92px; height: 92px;
  border-radius: 999px;
  border: none;
  background: var(--bright);
  color: #FFFFFF;
  display: grid; place-items: center;
  z-index: 3;
  opacity: 0;
  transition: opacity .6s ease 2.4s, transform .3s ease, background .25s ease;
  cursor: pointer;
}
.play-btn.in { opacity: 1; }
.play-btn:hover { background: var(--bright-2); }

/* ---------- Trust strip (logos in muted purple) ---------- */
.logo-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .logo-row { grid-template-columns: repeat(4, 1fr); }
  .logo-row > div:nth-child(n+5) { border-top: 1px solid var(--line); }
}
.logo-cell {
  height: 96px;
  display: grid; place-items: center;
  border-right: 1px solid var(--line);
  opacity: .65;
  transition: opacity .35s ease;
  color: var(--ink);
}
.logo-cell:last-child { border-right: none; }
.logo-cell:hover { opacity: 1; }

/* ---------- Projects (highlighted) ---------- */
.proj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) { .proj-grid { grid-template-columns: 1fr; } }
.proj-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .35s ease;
}
.proj-card:hover { transform: translateY(-2px); }
.proj-card .thumb { position: absolute; inset: 0; }
.proj-card .tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--bright);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.proj-card .label {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  color: #FFFFFF;
  font-family: 'Source Serif 4', serif;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.012em;
}
.proj-card .grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,10,76,0.7), rgba(31,10,76,0) 55%);
  pointer-events: none;
}

/* ---------- About / team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.team-card .thumb { position: absolute; inset: 0; }
.team-card .meta-pill {
  position: absolute;
  left: 16px; bottom: 16px;
  background: var(--bright);
  color: #FFFFFF;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  transition: background .25s ease;
}
.team-card .meta-pill .role { font-size: 10px; opacity: .85; }
.team-card:hover .meta-pill { background: var(--ink); }
.team-card .meta-pill .arrow {
  width: 20px; height: 20px; border-radius: 999px; background: #FFFFFF; color: var(--bright);
  display: grid; place-items: center;
}

/* ---------- News (light lavender bg) ---------- */
.news {
  background: var(--lavender-soft);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(31,10,76,0.06);
}
.news-card .tag { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bright); font-weight: 500; }
.news-card h4 { font-family: 'Source Serif 4', serif; font-size: 24px; font-weight: 900; line-height: 1.15; letter-spacing: -0.012em; }
.news-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Contact form ---------- */
.contact {
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.022em;
  font-weight: 900;
  color: var(--ink);
}
.contact .meta-list { margin-top: 32px; font-size: 16px; color: var(--ink-soft); }
.contact .meta-list a { color: var(--ink); }
.contact .meta-list div + div { margin-top: 12px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.field input, .field textarea, .field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 8px 0 12px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color .25s ease;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(31,10,76,0.35); }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--bright); }

/* ---------- Footer (deep purple) ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: 96px;
  padding-bottom: 48px;
}
.site-footer .top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .site-footer .top { grid-template-columns: 1fr 1fr; } }
.site-footer .eyebrow { color: rgba(244,238,224,0.55); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { font-size: 14px; opacity: .8; transition: opacity .2s ease, color .2s ease; }
.site-footer ul a:hover { opacity: 1; color: var(--bright-2); }
.site-footer .small {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(244,238,224,0.16);
  font-size: 11px;
  color: rgba(244,238,224,0.6);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(21,5,58,0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
}
.lightbox.in { display: flex; }
.lightbox .frame {
  width: min(1100px, 100%);
  aspect-ratio: 16/9;
  background: var(--ink-2);
  border: 1px solid rgba(244,238,224,0.16);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: grid; place-items: center;
  color: rgba(244,238,224,0.55);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.lightbox .close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 14px;
  color: var(--cream);
  background: none; border: none; cursor: pointer;
  z-index: 2;
}
.lightbox .lb-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: block;
}

/* ---------- Placeholder (refined art-blocks with brand mark) ---------- */
.placeholder {
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 70% at 20% 0%, rgba(176,38,240,0.18) 0%, rgba(176,38,240,0) 60%),
    radial-gradient(80% 60% at 100% 100%, rgba(31,10,76,0.22) 0%, rgba(31,10,76,0) 60%),
    linear-gradient(140deg, var(--lavender-soft) 0%, var(--lavender) 100%);
  color: var(--ink-soft);
  font-family: 'Geist', ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
.placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  background-image:
    radial-gradient(circle, rgba(31,10,76,0.22) 1.4px, transparent 1.6px);
  background-size: 22px 22px;
  background-position: 0 0;
  opacity: 0.55;
  pointer-events: none;
  mask-image: radial-gradient(70% 60% at 30% 40%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(70% 60% at 30% 40%, #000 0%, transparent 70%);
}
.placeholder.dark {
  background:
    radial-gradient(110% 70% at 100% 0%, rgba(176,38,240,0.35) 0%, rgba(176,38,240,0) 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(140deg, #2d0a6b 0%, #15053A 100%);
  color: rgba(244,238,224,0.55);
}
.placeholder.dark::before {
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.25) 1.4px, transparent 1.6px);
  opacity: 0.4;
}
.placeholder span {
  position: relative;
  z-index: 1;
  max-width: 280px;
  line-height: 1.6;
  font-weight: 500;
  font-size: 10px;
}

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--line); width: 100%; }
.linkish {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  transition: color .2s ease;
}
.linkish:hover { color: var(--bright); }
.linkish .arrow {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--bright);
  color: #FFFFFF;
  transition: transform .25s ease;
}
.linkish:hover .arrow { transform: translateX(3px); }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(140%);
  transition: transform .5s cubic-bezier(.22,1,.36,1), opacity .4s ease;
  opacity: 0;
}
.sticky-cta.in { transform: translateX(-50%); opacity: 1; }
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* Logo image */
.logo-img { height: 72px; width: auto; display: block; }
.logo-img.invert { filter: brightness(0) invert(1) sepia(0.04) saturate(0.5); opacity: 0.95; }
/* Footer wordmark with tagline — give it a touch more room so 'Connecting the dot's' is legible */
footer .logo-img,
.site-footer .logo-img { height: 80px; }
@media (max-width: 720px) {
  .nav-bar { height: 132px; }
  .logo-img { height: 56px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .bridge .word { opacity: 1; transform: none; transition: none; }
  .brabo-beat { opacity: 1; transform: none; transition: none; }
  .play-btn { opacity: 1; transition: none; }
  html, body { scroll-behavior: auto; }
}

/* ============================================================
   TWEAKABLE LAYER — density / motion / accent / section toggles
   ============================================================ */

/* Density scales section padding via custom property */
body { --section-py: 140px; --section-py-sm: 88px; }
section { padding-top: var(--section-py); padding-bottom: var(--section-py); }
@media (max-width: 768px) { section { padding-top: var(--section-py-sm); padding-bottom: var(--section-py-sm); } }

body[data-density="compact"]   { --section-py: 96px;  --section-py-sm: 64px;  }
body[data-density="spacious"]  { --section-py: 180px; --section-py-sm: 112px; }
body[data-density="cinematic"] { --section-py: 240px; --section-py-sm: 140px; }

/* Section toggle helpers — toggle via [data-show-pipeline="false"] etc. on body */
body[data-show-pipeline="false"] .pipeline { display: none; }
body[data-show-capabilities="false"] .cap-grid,
body[data-show-capabilities="false"] .cap-grid + section + section .container-px .mb-16 { /* noop, scoped only to cap-grid */ }
body[data-show-capabilities="false"] .cap-section { display: none; }
body[data-show-projects="false"] .proj-section { display: none; }
body[data-show-news="false"] .news { display: none; }
body[data-show-bridge="false"] .bridge { display: none; }

/* Accent palette — re-bind brand colors */
body[data-accent="amber"]      { --bright: #FFB547; --bright-2: #FFD08A; --lavender: #F7E7C6; --lavender-soft: #FCF3DE; }
body[data-accent="coral"]      { --bright: #FF5B2E; --bright-2: #FF8260; --lavender: #FBD9CC; --lavender-soft: #FDE9DF; }
body[data-accent="emerald"]    { --bright: #1F8A5B; --bright-2: #58B98A; --lavender: #D4ECDE; --lavender-soft: #E7F4ED; }
body[data-accent="ink-mono"]   { --bright: #1F0A4C; --bright-2: #5A3E94; --lavender: #DBD3E8; --lavender-soft: #ECE7F2; }

/* Motion intensity — controls hero parallax / glow */
body[data-motion="calm"] .hero-glow { display: none; }
body[data-motion="calm"] .hero-media { transform: none !important; }

/* Hero mouse-follow soft glow */
.hero-glow {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 35%),
              rgba(176,38,240,0.16) 0%, rgba(176,38,240,0.06) 35%, rgba(176,38,240,0) 65%);
  opacity: 0;
  transition: opacity .8s ease;
  z-index: 0;
}
.hero.glow-in .hero-glow { opacity: 1; }
.hero > .container-px,
.hero > .scroll-cue { position: relative; z-index: 1; }
body[data-motion="cinematic"] .hero-glow {
  background: radial-gradient(460px circle at var(--mx, 50%) var(--my, 35%),
              rgba(176,38,240,0.22) 0%, rgba(176,38,240,0.08) 40%, rgba(176,38,240,0) 70%);
}

/* Hero media: parallax tilt */
.hero-media {
  transition: transform .5s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
body[data-motion="cinematic"] .hero-media {
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}

/* Floating tag idle float — staggered */
@keyframes floatA { 0%,100% { transform: translateY(0) rotate(-0.3deg); } 50% { transform: translateY(-6px) rotate(0.4deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(0.4deg); } 50% { transform: translateY(-8px) rotate(-0.3deg); } }
@keyframes floatC { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
body[data-motion="dynamic"]   .float-tag.tl,
body[data-motion="cinematic"] .float-tag.tl { animation: floatA 6.5s ease-in-out infinite; }
body[data-motion="dynamic"]   .float-tag.tr,
body[data-motion="cinematic"] .float-tag.tr { animation: floatB 7.2s ease-in-out infinite -1.5s; }
body[data-motion="dynamic"]   .float-tag.bl,
body[data-motion="cinematic"] .float-tag.bl { animation: floatC 5.8s ease-in-out infinite -2.8s; }
body[data-motion="dynamic"]   .float-tag.br,
body[data-motion="cinematic"] .float-tag.br { animation: floatA 8s ease-in-out infinite -3.6s; }

/* Magnetic CTA — js sets --mx-cta/--my-cta on hover */
body[data-motion="cinematic"] .pill,
body[data-motion="dynamic"] .pill {
  transform: translate(var(--mx-cta, 0px), var(--my-cta, 0px));
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .25s ease, color .25s ease, border-color .25s ease;
}

/* Logo marquee mode */
.logo-marquee {
  display: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.logo-marquee .track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.logo-marquee .logo-cell { width: 200px; flex: none; border-right: 1px solid var(--line); }
body[data-logos="marquee"] .logo-row { display: none; }
body[data-logos="marquee"] .logo-marquee { display: block; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Counter number snap (used by animated stat) */
.stat-num[data-counting="1"] { font-variant-numeric: tabular-nums; }

/* Animated brabo number */
@keyframes brightPulse {
  0% { opacity: 0; transform: translateY(20px) scale(.96); filter: blur(8px); }
  60% { filter: blur(0); }
  100% { opacity: 1; transform: none; filter: blur(0); }
}
body[data-motion="cinematic"] .brabo-beat.in { animation: brightPulse 1.4s cubic-bezier(.22,1,.36,1) both; }

/* Soft scroll cue (already exists in original — add if missing) */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: .7;
  transition: opacity .5s ease;
}
.scroll-cue .line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }
body.scrolled .scroll-cue { opacity: 0; pointer-events: none; }

/* ---------- Hero proof-strip: B2B numbers, no fluff ---------- */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  max-width: 560px;
}
.proof-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 36px;
  border-right: 1px solid var(--line);
  padding-left: 0;
}
.proof-cell + .proof-cell { padding-left: 24px; }
.proof-cell:last-child { border-right: none; padding-right: 0; }
.proof-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.proof-num .proof-unit {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 0.45em;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin-left: 4px;
  text-transform: lowercase;
}
.proof-lbl {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
@media (max-width: 640px) {
  .proof-strip { max-width: none; }
  .proof-cell { padding-right: 18px; }
  .proof-cell + .proof-cell { padding-left: 14px; }
}

/* Trust strip eyebrow gets a tiny marketing-flair italic accent */
section .container-px > .eyebrow.text-center em,
.eyebrow em {
  font-family: 'Instrument Serif', 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--ink);
}

/* ============================================================
   PROOF FORMULA — single-line marketing tagline (replaces 3-stat)
   ============================================================ */
.proof-strip {
  /* Stretch to fit the formula */
  display: block;
  max-width: none;
  border: none;
  border-top: 1px solid var(--line);
  padding: 22px 0 0;
}
.proof-formula {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 14px;
  text-wrap: balance;
}
.proof-formula .pf-word { display: inline-block; }
.proof-formula .pf-sep {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 0.7em;
  color: var(--bright);
  opacity: 0.9;
  transform: translateY(-2px);
}
.proof-formula .pf-accent {
  font-family: 'Instrument Serif', 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  color: var(--bright);
  font-size: 1.05em;
}

/* ============================================================
   VIDEO TRAILER MOCKUP (replaces story-dialogue in phone)
   ============================================================ */
.phone-screen.video-screen {
  padding: 8px;
  background: #050111;
  display: block;
  position: relative;
}
.trailer-stage {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0220;
}
.trailer-poster {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
    radial-gradient(60% 50% at 30% 30%, rgba(176,38,240,0.45) 0%, rgba(176,38,240,0) 60%),
    radial-gradient(80% 80% at 80% 90%, rgba(255,180,80,0.18) 0%, rgba(255,180,80,0) 55%),
    linear-gradient(170deg, #3a1370 0%, #1a064a 60%, #0a0220 100%);
  font-size: 9px !important;
  color: rgba(244,238,224,0.4);
}
.trailer-poster::before {
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.2) 1.2px, transparent 1.4px) !important;
  mask-image: radial-gradient(70% 90% at 50% 80%, #000 0%, transparent 80%) !important;
  -webkit-mask-image: radial-gradient(70% 90% at 50% 80%, #000 0%, transparent 80%) !important;
}
.trailer-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.trailer-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  border: none;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.6);
  z-index: 2;
}
.trailer-play svg { transform: translateX(1px); width: 18px; height: 18px; }
.trailer-meta {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  color: var(--cream);
}
.trailer-tag {
  align-self: flex-start;
  font-family: 'Geist', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 4px 9px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.trailer-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.012em;
  line-height: 1.15;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.trailer-controls {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trailer-progress {
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  overflow: hidden;
}
.trailer-progress-fill {
  width: 32%;
  height: 100%;
  background: var(--bright);
  border-radius: 999px;
}
.trailer-times {
  display: flex;
  justify-content: space-between;
  font-family: 'Geist', sans-serif;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: rgba(244,238,224,0.7);
}

/* ============================================================
   BRABO TITLE — uses ABC Camera (Robota) per Joris
   ============================================================ */
.brabo-title {
  font-family: 'ABC Camera', 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.8vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--cream);
  text-wrap: balance;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.brabo-title span,
.brabo-title em { display: inline; }
.brabo-title-em {
  font-family: 'Instrument Serif', 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--bright-2);
  letter-spacing: -0.012em;
  font-size: 1.02em;
  padding: 0 0.08em;
}

/* ============================================================
   TRUST BLOCK — brand-aligned cream + lavender block (Joris)
   ============================================================ */
.trust-section { background: transparent; }
.trust-block {
  background: transparent;
  border-radius: 0;
  padding: 0;
  position: relative;
  color: var(--ink);
  border: 0;
}
.trust-block::before {
  content: none;
}
.trust-block-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.trust-eyebrow { color: var(--ink-soft); }
.trust-headline {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 800px;
  text-wrap: balance;
}
.trust-logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(31,10,76,0.14);
}
.trust-logo-cell {
  background: #FFFFFF;
  border-radius: 14px;
  height: 104px;
  display: grid;
  place-items: center;
  padding: 0 22px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 1px 0 rgba(31,10,76,0.06), 0 12px 24px -16px rgba(31,10,76,0.18);
  overflow: hidden;
}
.trust-logo-cell:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(31,10,76,0.06), 0 18px 32px -18px rgba(31,10,76,0.32); }
.trust-logo-cell img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
/* Optical sizing: each logo tuned so visual weight feels equal across the row */
.trust-logo-cell:nth-child(1) img { height: 30px; }   /* ExxonMobil — very wide */
.trust-logo-cell:nth-child(2) img { height: 60px; }   /* VRT — square */
.trust-logo-cell:nth-child(3) img { height: 30px; }   /* Copus — wide */
.trust-logo-cell:nth-child(4) img { height: 44px; }   /* SCK CEN — w/ tagline */
.trust-logo-cell:nth-child(5) img { height: 64px; }   /* Middelkerke — tall */
.trust-logo-cell:nth-child(6) img { height: 64px; }   /* LikeMe — square */
@media (max-width: 1100px) {
  .trust-logo-row { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 760px) {
  .trust-block { padding: 40px 28px; }
  .trust-logo-row { grid-template-columns: repeat(2, 1fr); gap: 10px; padding-top: 24px; }
  .trust-logo-cell { height: 88px; }
  .trust-logo-cell:nth-child(1) img,
  .trust-logo-cell:nth-child(3) img { height: 24px; }
  .trust-logo-cell:nth-child(2) img,
  .trust-logo-cell:nth-child(5) img,
  .trust-logo-cell:nth-child(6) img { height: 52px; }
  .trust-logo-cell:nth-child(4) img { height: 40px; }
}
.brabo {
  min-height: auto;
  padding-top: 120px;
  padding-bottom: 120px;
}
.brabo-beats { max-width: 1080px; margin: 0 auto; }
.brabo-beats .play-btn { position: relative; top: auto; left: auto; transform: none; margin: 56px auto 0; opacity: 1; transition: background .25s ease, transform .25s ease; display: none; /* hidden — replaced by sample card */ }

.brabo-sample {
  position: relative;
  margin: 80px auto 0;
  max-width: 920px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 1;
  transform: translateY(18px);
  transition: transform .9s cubic-bezier(.22,1,.36,1);
}
[data-reveal].brabo-sample.in,
.brabo-sample[data-reveal].in { transform: none; }

.brabo-sample-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 60px 120px -40px rgba(0,0,0,0.7),
    0 0 0 1px rgba(244,238,224,0.08);
  background: #0a0220;
}
.brabo-sample-poster {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 20% 30%, rgba(176,38,240,0.4) 0%, rgba(176,38,240,0) 55%),
    radial-gradient(60% 60% at 80% 80%, rgba(255,200,120,0.18) 0%, rgba(255,200,120,0) 55%),
    linear-gradient(140deg, #3a1380 0%, #1a064a 60%, #0a0220 100%);
}
.brabo-sample-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,2,32,0) 40%, rgba(10,2,32,0.85) 100%);
  pointer-events: none;
}
.brabo-sample-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 1;
  z-index: 2;
  backdrop-filter: blur(10px);
  transition: background .25s ease, transform .25s ease;
}
.brabo-sample-play:hover { background: var(--bright); transform: translate(-50%, -50%) scale(1.04); border-color: var(--bright); }
.brabo-sample-meta {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 32px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}
.brabo-sample-tag {
  align-self: flex-start;
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.brabo-sample-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.014em;
  text-wrap: balance;
  text-shadow: 0 4px 18px rgba(0,0,0,0.5);
  max-width: 620px;
}
.brabo-sample-credits {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,238,224,0.7);
}
.brabo-sample-strip {
  display: flex;
  gap: 6px;
  padding: 0 4px;
  opacity: 0.6;
}
.brabo-sample-strip i {
  flex: 1;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(244,238,224,0.45) 0%, rgba(244,238,224,0.2) 100%);
}
@media (max-width: 640px) {
  .brabo-sample-meta { left: 20px; right: 20px; bottom: 20px; }
  .brabo-sample-play { width: 64px; height: 64px; }
}

/* ============================================================
   VERTICALS — larger, more centered (Joris)
   ============================================================ */
#cases {
  padding-top: 80px !important;
  padding-bottom: 140px;
}
#cases > .flex.items-end {
  flex-direction: column;
  align-items: center !important;
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  gap: 24px;
}
#cases > .flex.items-end > div:first-child { max-width: none; }
#cases > .flex.items-end h2 {
  font-size: clamp(48px, 7vw, 104px) !important;
  letter-spacing: -0.024em !important;
  line-height: 0.98 !important;
}
#cases > .flex.items-end > p { text-align: center; margin-left: auto; margin-right: auto; }

.vc-body h3,
.vc-body h3.font-display {
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.05;
}
.vertical-card { border-radius: 52px; }
.vc-body { padding: 32px 32px 36px; gap: 18px; }
.vc-thumb { aspect-ratio: 4 / 3.4; }

/* ============================================================
   HERO ONLY — deep-purple B2B block (everything else stays cream)
   ============================================================ */
.hero {
  background: #1F0A4C;
  color: #F4EEE0;
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(31,10,76,0.82) 0%, rgba(31,10,76,0.55) 48%, rgba(31,10,76,0.18) 100%),
    linear-gradient(180deg, rgba(31,10,76,0.30) 0%, rgba(31,10,76,0.12) 55%, rgba(31,10,76,0.65) 100%);
}
.hero > .container-px { position: relative; z-index: 1; }
/* Disable mouse-follow glow per Joris feedback */
.hero-glow { display: none !important; }
.hero .eyebrow { color: rgba(244,238,224,0.6); }
.hero h1 { color: #F4EEE0; }
.hero h1 em { color: #D880FB; }
.hero p { color: rgba(244,238,224,0.75); }
.hero .pill-bright { background: #C150F5; color: #FFFFFF; }
.hero .pill-bright:hover { background: #D880FB; }
.hero .pill-ghost {
  border-color: rgba(244,238,224,0.28);
  color: #F4EEE0;
}
.hero .pill-ghost:hover { border-color: #F4EEE0; }

/* Proof formula on dark hero */
.hero .proof-strip {
  border-top-color: rgba(244,238,224,0.16);
}
.hero .proof-formula { color: #F4EEE0; }
.hero .proof-formula .pf-sep,
.hero .proof-formula .pf-accent { color: #D880FB; }

/* Hero glow re-tune */
.hero .hero-glow {
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 35%),
              rgba(193,80,245,0.28) 0%, rgba(193,80,245,0.08) 40%, rgba(193,80,245,0) 70%);
}

/* Hero scroll cue */
.hero .scroll-cue { color: rgba(244,238,224,0.5); }
.hero .scroll-cue .line { background: linear-gradient(to bottom, rgba(244,238,224,0.5), transparent); }

/* Floating tags on dark — bump shadow for depth */
.hero .float-tag { box-shadow: 0 18px 40px -16px rgba(0,0,0,0.5), 0 6px 12px -6px rgba(0,0,0,0.3); }

/* Nav: when over hero (top of page, .nav-bar NOT .solid) text reads on dark */
.nav-bar:not(.solid) .nav-link { color: #F4EEE0; opacity: 0.85; }
.nav-bar:not(.solid) .nav-link:hover { opacity: 1; color: #D880FB; }
.nav-bar:not(.solid) [data-lang-btn] { color: #F4EEE0; }
.nav-bar:not(.solid) .pill-solid {
  background: #F4EEE0;
  color: #1F0A4C;
}
.nav-bar:not(.solid) .pill-solid:hover { background: #FFFFFF; }
.nav-bar:not(.solid) .logo-dark { display: none; }
.nav-bar:not(.solid) .logo-light { display: block !important; }
.nav-bar.solid .logo-light { display: none !important; }
.nav-bar.solid .logo-dark { display: block; }

@media (prefers-reduced-motion: reduce) {
  .float-tag { animation: none !important; }
  .hero-glow { display: none; }
  .logo-marquee .track { animation: none; }
  body .pill { transform: none !important; }
}

/* ============================================================
   TEAM (TSA-style) — dark navy section with photo-cards
   ============================================================ */
.team-tsa {
  background: #0E0926;
  color: #F4EEE0;
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}
.team-tsa::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(176,38,240,0.10) 0%, rgba(176,38,240,0) 60%);
  pointer-events: none;
}
.team-tsa .container-px { position: relative; z-index: 1; }
.team-tsa-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 48px;
  margin-bottom: 64px;
}
.team-tsa-eyebrow {
  color: var(--bright-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.team-tsa-eyebrow-icon {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: var(--bright-2);
}
.team-tsa-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: #F4EEE0;
  margin-top: 18px;
  text-wrap: balance;
  max-width: 900px;
}
.team-tsa-sub {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(244,238,224,0.7);
  max-width: 540px;
}
.team-tsa-badge {
  background: var(--bright);
  border-radius: 18px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 24px 48px -24px rgba(176,38,240,0.6);
  align-self: start;
  min-height: 96px;
}
.team-tsa-badge-logo {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
}
.team-tsa-badge-dot {
  width: 14px; height: 14px; border-radius: 999px;
  background: #fff;
  margin-bottom: 6px;
}
.team-tsa-badge-name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.005em;
}
.team-tsa-badge-tag {
  font-family: 'Geist', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}
.team-tsa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.team-tsa-card {
  background: #170E3D;
  border: 1px solid rgba(244,238,224,0.06);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .3s cubic-bezier(.22,1,.36,1), border-color .3s ease;
}
.team-tsa-card:hover {
  transform: translateY(-3px);
  border-color: rgba(193,80,245,0.4);
}
.team-tsa-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #3A1F8C;
}
.team-tsa-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-tsa-photo-ph {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 35%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(160deg, #4A2AA8 0%, #3A1F8C 60%, #2C1268 100%);
  color: rgba(244,238,224,0.55);
  font-size: 10px;
}
.team-tsa-photo-ph::before {
  background-image: radial-gradient(circle, rgba(255,255,255,0.22) 1.2px, transparent 1.4px) !important;
  opacity: 0.35;
}
.team-tsa-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-tsa-name {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.012em;
  color: #F4EEE0;
}
.team-tsa-role {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(244,238,224,0.65);
  text-wrap: balance;
  min-height: 38px;
}
.team-tsa-linkedin {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(244,238,224,0.85);
  padding-top: 12px;
  border-top: 1px solid rgba(244,238,224,0.08);
  transition: color .2s ease;
}
.team-tsa-linkedin:hover { color: var(--bright-2); }
@media (max-width: 1024px) { .team-tsa-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .team-tsa-header { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 560px)  { .team-tsa-grid { grid-template-columns: 1fr; } }


/* ====================== Cookie banner ====================== */
.cookie-banner {
  position: fixed;
  z-index: 80;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  animation: cookie-rise .5s cubic-bezier(.22,1,.36,1);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  pointer-events: auto;
  width: 100%;
  max-width: 920px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 18px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  box-shadow: 0 24px 60px -20px rgba(31,10,76,0.55), 0 8px 24px -10px rgba(31,10,76,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}
.cookie-banner .eyebrow { color: var(--bright-2); margin-bottom: 6px; }
.cookie-banner-text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244,238,224,0.85);
  max-width: 56ch;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner-actions .pill-ghost {
  color: var(--cream);
  border-color: rgba(244,238,224,0.25);
}
.cookie-banner-actions .pill-ghost:hover { border-color: var(--cream); }
@keyframes cookie-rise {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@media (max-width: 720px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  .cookie-banner-actions { justify-content: flex-start; }
}

/* ====================== Legal (terms) modal ====================== */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: legal-fade .25s ease;
}
.legal-modal[hidden] { display: none; }
.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31,10,76,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.legal-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(86vh, 820px);
  background: var(--cream-soft);
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 32px 80px -24px rgba(31,10,76,0.45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: legal-rise .35s cubic-bezier(.22,1,.36,1);
}
.legal-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 0;
}
.legal-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--ink-faint);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, border-color .2s ease;
}
.legal-modal-close:hover { background: var(--lavender-soft); border-color: var(--ink); }
.legal-modal-title {
  padding: 8px 28px 4px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.legal-modal-sub {
  padding: 0 28px 18px;
  font-size: 13px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--ink-faint);
}
.legal-modal-body {
  padding: 22px 28px 28px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink);
  flex: 1 1 auto;
}
.legal-modal-body h3 {
  font-family: 'Geist', 'Roboto', ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bright);
  margin: 22px 0 8px;
}
.legal-modal-body h3:first-child { margin-top: 0; }
.legal-modal-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 62ch;
}
.legal-modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 28px;
  border-top: 1px solid var(--ink-faint);
  background: var(--cream);
}
.legal-modal-version {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
@keyframes legal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes legal-rise {
  from { transform: translateY(16px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
@media (max-width: 560px) {
  .legal-modal { padding: 12px; }
  .legal-modal-head { padding: 16px 18px 0; }
  .legal-modal-title { padding: 6px 18px 4px; }
  .legal-modal-sub { padding: 0 18px 14px; }
  .legal-modal-body { padding: 18px; }
  .legal-modal-foot { padding: 14px 18px; }
}


/* ====================== Eén pedagogisch model · drie activaties ====================== */
.activaties {
  padding-top: 120px;
  padding-bottom: 120px;
}
.activaties-head {
  max-width: 880px;
  margin-bottom: 64px;
}
.activaties-title {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.activaties-title em {
  color: var(--bright);
  font-style: italic;
}
.activaties-lead {
  margin-top: 24px;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 64ch;
}
.activaties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .activaties-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .activaties { padding-top: 80px; padding-bottom: 80px; }
  .activaties-grid { grid-template-columns: 1fr; gap: 20px; }
  .activaties-head { margin-bottom: 40px; }
}
.activatie-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-soft);
  border: 1px solid var(--ink-faint);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
}
.activatie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(31,10,76,0.22);
  border-color: var(--ink);
}
.activatie-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0a0220;
  overflow: hidden;
}
.activatie-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.activatie-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: 'Geist', 'Roboto', ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.activatie-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.activatie-name {
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.activatie-sub {
  font-family: 'Geist', 'Roboto', ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bright);
  margin-bottom: 6px;
}
.activatie-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}


/* ====================== Vertical Employer Branding · proj-card video ====================== */
.proj-card { cursor: pointer; }
.proj-card .thumb { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; }
.proj-card .proj-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0a0220;
  pointer-events: none;
}

/* ====================== Employer Branding · case phone mockups ====================== */
.case-phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  justify-items: center;
  align-items: start;
}
@media (max-width: 860px) {
  .case-phones { grid-template-columns: 1fr; gap: 56px; }
}
.case-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  max-width: 300px;
}
.cp-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 720 / 1558;
  background: #15053A;
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 34px 64px -26px rgba(21,5,58,0.55), inset 0 0 0 1.5px rgba(255,255,255,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.case-phone:hover .cp-frame {
  transform: translateY(-6px);
  box-shadow: 0 44px 84px -28px rgba(21,5,58,0.6), inset 0 0 0 1.5px rgba(255,255,255,0.12);
}
.cp-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  display: block;
  background: #000;
}
.cp-notch {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 36%; height: 22px;
  background: #15053A;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.cp-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  z-index: 4;
  box-shadow: 0 10px 30px rgba(21,5,58,0.32);
  transition: transform .25s ease, background .25s ease;
}
.cp-play svg { margin-left: 3px; }
.case-phone:hover .cp-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #FFFFFF;
}
.cp-meta { margin-top: 24px; text-align: center; }
.cp-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bright);
}
.cp-title {
  margin-top: 8px;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}


/* ====================== Flagship live demos ====================== */
.flagship-demos {
  padding-top: 96px;
  padding-bottom: 120px;
}
.flagship-head {
  max-width: 880px;
  margin-bottom: 60px;
}
.flagship-title {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.flagship-title em {
  color: var(--bright);
  font-style: italic;
}
.flagship-lead {
  margin-top: 32px;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
}
.flagship-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 1024px) {
  .flagship-grid { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 720px) {
  .flagship-demos { padding-top: 64px; padding-bottom: 80px; }
  .flagship-head { margin-bottom: 36px; }
}

.flagship-card {
  display: grid;
  grid-template-rows: auto auto;
  gap: 32px;
  text-decoration: none;
  color: inherit;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.flagship-card:hover { transform: translateY(-4px); }
.flagship-card:hover .flagship-cta { background: var(--bright); color: #fff; border-color: var(--bright); }
.flagship-card:hover .flagship-frame { box-shadow: 0 40px 80px -30px rgba(31,10,76,0.45); }

.flagship-frame {
  position: relative;
  border-radius: 28px;
  transition: box-shadow .4s ease, transform .4s ease;
}

/* Phone frame */
.flagship-frame--phone {
  display: flex;
  justify-content: center;
}
.flagship-frame--phone .phone-shell {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 9 / 19;
  background: #15053A;
  border-radius: 38px;
  padding: 12px;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.06),
    0 28px 60px -24px rgba(31,10,76,0.4);
  overflow: hidden;
}
.phone-notch-mini {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 22px;
  background: #050015;
  border-radius: 14px;
  z-index: 3;
}
.flagship-iframe--phone {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 0;
  border-radius: 28px;
  display: block;
  background: #1A3256;
}

/* Browser frame */
.flagship-frame--browser .browser-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  background: var(--cream-soft);
  border-radius: 18px;
  border: 1px solid var(--ink-faint);
  overflow: hidden;
  box-shadow: 0 28px 60px -24px rgba(31,10,76,0.3);
  display: flex;
  flex-direction: column;
}
.browser-chrome {
  height: 38px;
  background: linear-gradient(180deg, #F0EAD8 0%, #E6DEC4 100%);
  border-bottom: 1px solid var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  flex-shrink: 0;
}
.browser-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.browser-dot.dot-r { background: #FF5F57; }
.browser-dot.dot-y { background: #FEBC2E; }
.browser-dot.dot-g { background: #28C840; }
.browser-url {
  margin-left: 14px;
  font-family: 'Geist', 'Roboto', ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.6);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31,10,76,0.06);
}
.browser-body {
  position: relative;
  flex: 1;
  background: var(--cream);
  overflow: hidden;
}
.flagship-iframe--browser {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: var(--cream);
}

/* Floating "live" tag overlay */
.flagship-floating-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #15053A;
  color: var(--cream);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: 'Geist', 'Roboto', ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px -8px rgba(31,10,76,0.45);
}
.flagship-floating-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.18);
  animation: flagship-pulse 1.8s ease-in-out infinite;
}
.flagship-floating-tag--browser {
  top: 56px;
  right: 18px;
}
@keyframes flagship-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

/* Meta block */
.flagship-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
.flagship-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.flagship-tag {
  font-family: 'Geist', 'Roboto', ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bright);
  background: rgba(176,38,240,0.08);
  padding: 5px 10px;
  border-radius: 999px;
}
.flagship-client {
  font-family: 'Geist', 'Roboto', ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.flagship-name {
  font-family: 'ABC Camera', 'Geist', sans-serif;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-top: 4px;
}
.flagship-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
}
.flagship-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 18px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-family: 'Geist', 'Roboto', ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  width: fit-content;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.flagship-cta svg {
  transition: transform .3s ease;
}
.flagship-card:hover .flagship-cta svg {
  transform: translate(2px, -2px);
}


/* ====================== Vertical Learning · hero demo embed ====================== */
.hero-media--demo {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.hero-media--demo:hover { transform: translateY(-3px); }
.hero-browser-shell {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 70px -28px rgba(31,10,76,0.4);
}
.hero-demo-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: var(--cream);
  pointer-events: none;
}
.flagship-floating-tag--hero {
  top: 56px;
  right: 18px;
  z-index: 6;
}


/* ====================== Back pill button (vertical pages) ====================== */
.back-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--ink-faint);
  border-radius: 999px;
  background: var(--cream-soft);
  font-family: 'Geist', 'Roboto', ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease, color .25s ease;
}
.back-pill:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.back-pill:hover .back-pill-arrow {
  transform: translateX(-2px);
}
.back-pill-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bright);
  color: #FFFFFF;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.back-pill:hover .back-pill-arrow {
  background: var(--cream);
  color: var(--ink);
}
