@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  /* OKLCH palette — brand blue committed, neutrals tinted toward the hue */
  --blue: #1678be;
  --blue-bright: #2fb8e6;
  --blue-dark: #0b3a78;
  --ink: #1d2b3a;
  --muted: oklch(0.52 0.024 248);
  --line: rgb(22 120 190 / 0.16);
  --paper: oklch(0.975 0.006 240);
  --paper-2: oklch(0.955 0.011 238);
  --white: oklch(0.995 0.003 240);
  --gold: #22bed0; /* brand teal accent */
  --charcoal: oklch(0.185 0.028 250);
  --charcoal-2: oklch(0.155 0.026 252);

  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 2px 10px rgb(11 58 120 / 0.08);
  --shadow-md: 0 16px 42px rgb(11 58 120 / 0.1);
  --shadow-lg: 0 26px 68px oklch(0.3 0.06 248 / 0.16);

  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    sans-serif;
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Android Chrome autosizes ("boosts") text on its own and also applies the
     OS font-size setting, so the same page renders wider there than on iOS
     Safari or desktop, which do neither. Pinning the adjustment to 100% keeps
     the three platforms on the same metrics. */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.intro,
.services,
.founder,
.consultation {
  scroll-margin-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* If a device does render text larger than expected, long tokens (the
     contact email, URLs) must wrap rather than push the page sideways —
     nothing here clips horizontal overflow, so it would become a side-scroll. */
  overflow-wrap: break-word;
}

body.is-locked {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
}

p {
  margin-top: 0;
}

.skip-link {
  position: absolute;
  top: 0;
  left: -999px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Topbar ---------- */
.topbar {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  color: var(--white);
  transition: color 400ms var(--ease), background 400ms var(--ease),
    box-shadow 400ms var(--ease), padding 400ms var(--ease);
}

.topbar::after {
  content: "";
  position: absolute;
  right: clamp(20px, 5vw, 56px);
  bottom: 0;
  left: clamp(20px, 5vw, 56px);
  height: 1px;
  background: currentColor;
  opacity: 0.12;
}

.is-scrolled .topbar {
  color: var(--ink);
  padding-top: 12px;
  padding-bottom: 12px;
  background: oklch(0.975 0.006 240 / 0.82);
  box-shadow: 0 14px 36px rgb(11 58 120 / 0.1);
  backdrop-filter: blur(16px) saturate(1.4);
}

.brand {
  display: flex;
  align-items: center;
  flex: none;
}

.brand-lockup {
  display: block;
  width: clamp(188px, 18vw, 232px);
  aspect-ratio: 2126 / 740;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2126 / 740;
  object-fit: contain;
}

.site-foot .brand {
  width: clamp(220px, 24vw, 300px);
}

.site-foot .brand-logo {
  aspect-ratio: 2126 / 740;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a:not(.nav-cta) {
  position: relative;
  opacity: 0.86;
  padding: 4px 0;
  transition: opacity 200ms var(--ease);
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease);
}

.nav a:not(.nav-cta):hover {
  opacity: 1;
}

.nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 8px;
  transition: background 250ms var(--ease), color 250ms var(--ease),
    border-color 250ms var(--ease);
}

.nav-cta:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.mobile-nav-toggle,
.mobile-panel {
  display: none;
}

/* ---------- Hero (pinned, scroll-driven camera) ---------- */
.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

/* ---------- Hero: The Four Rooms ----------
   A scroll-pinned sequence: four dark rooms light up one by one, then the
   camera pulls back to reveal them as one connected floor, and the headline
   resolves. JS drives the per-frame values; CSS holds the resting states. */
.hero-stage {
  position: relative;
  height: 460vh; /* scroll runway: entrance walk + four-room sequence */
  /* svh keeps the runway on the same viewport basis as the 100svh sticky
     hero below. Mixing them (vh = large viewport on Android) made the
     runway and the pinned pane disagree by the URL-bar height. */
  height: 460svh;
  /* Android: when the collapsing URL bar makes the viewport taller than the
     100svh sticky hero, the exposed band below it must match the scene. */
  background: var(--charcoal-2);
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh; /* mobile: ignore the collapsing URL-bar band */
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(
    130% 90% at 50% 6%,
    oklch(0.23 0.03 250),
    var(--charcoal) 58%,
    var(--charcoal-2)
  );
  isolation: isolate;
}

.hero-atmos {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    58% 50% at 50% 46%,
    rgb(22 120 190 / 0.22),
    transparent 70%
  );
  pointer-events: none;
}

/* --- Act 1: a figure walks a dark stage toward a glowing doorway --- */
.hero-entrance {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  background: radial-gradient(
    120% 100% at 50% 34%,
    oklch(0.2 0.03 250),
    var(--charcoal) 52%,
    var(--charcoal-2) 100%
  );
  will-change: opacity;
}

/* Polished floor catching the doorway light — grounds the figure. */
.stage-floor {
  position: absolute;
  inset: 58% 0 0 0;
  z-index: 0;
  background: linear-gradient(
      180deg,
      transparent,
      oklch(0.16 0.024 252) 62%
    ),
    radial-gradient(
      40% 120% at 50% 0%,
      oklch(0.8 0.09 78 / 0.22),
      transparent 70%
    );
}

/* The glowing doorway at the vanishing point — grows as we approach. */
.door {
  position: absolute;
  z-index: 1;
  top: 21%;
  left: 50%;
  width: clamp(120px, 15vw, 230px);
  height: clamp(240px, 46vh, 460px);
  transform: translateX(-50%) scale(1);
  transform-origin: 50% 62%;
  border-radius: 120px 120px 10px 10px;
  background: linear-gradient(
    180deg,
    oklch(0.96 0.04 84),
    oklch(0.86 0.08 78) 46%,
    oklch(0.7 0.09 68) 100%
  );
  box-shadow: 0 0 90px 24px oklch(0.82 0.09 74 / 0.55),
    0 0 220px 80px oklch(0.72 0.09 70 / 0.3);
  will-change: transform, box-shadow;
}

.door-core {
  position: absolute;
  inset: 14% 24%;
  border-radius: 90px 90px 6px 6px;
  background: radial-gradient(
    70% 60% at 50% 40%,
    oklch(0.99 0.02 92),
    oklch(0.9 0.06 82) 100%
  );
  filter: blur(2px);
}

/* The figure is an 8-frame sprite sheet (one full gait cycle, back view).
 * The scroll handler picks the frame from how far she has advanced toward
 * the door, so she strides while you scroll and freezes when you stop.
 * JS owns the wrapper transform and the frame; CSS owns the layout. */

/* Generated layered entrance: empty office photo + transparent figure. */
.hero-entrance {
  background: var(--charcoal);
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transform: scale(1.03);
  transform-origin: 52% 41%;
  will-change: transform;
}

.hero-figure-wrap {
  position: absolute;
  z-index: 2;
  left: 49.5%;
  bottom: -1.5vh;
  /* the 48.5vh term keeps her full height on short, wide viewports
   * (cell aspect is 916:1717, so height ≈ width × 1.874) */
  width: min(32vw, 360px, 48.5vh);
  transform: translateX(-50%) scale(1);
  transform-origin: 50% 92%;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-figure {
  display: block;
  width: 100%;
  aspect-ratio: 916 / 1717;
  background-image: url("./assets/figure-walk-sprite.webp");
  background-repeat: no-repeat;
  background-size: 800% 100%; /* 8 cells side by side */
  background-position: 0 0; /* JS advances this one cell per stride frame */
  filter: drop-shadow(0 18px 22px oklch(0.08 0.02 252 / 0.42));
}

/* Soft mirror of the sprite on the marble floor, sharing the figure's frame.
 * Her feet sit ~4.3% above the cell bottom, so the flipped copy starts at
 * 91.4% (95.7% − 4.3%) to make heel touch heel. The mask is authored
 * pre-flip: visible at the cell bottom, gone ~26% up, which after scaleY(-1)
 * reads as "strongest at her heels, dissolving down the floor". */
.hero-figure-reflection {
  position: absolute;
  left: 0;
  top: 91.4%;
  width: 100%;
  aspect-ratio: 916 / 1717;
  background-image: url("./assets/figure-walk-sprite.webp");
  background-repeat: no-repeat;
  background-size: 800% 100%;
  background-position: 0 0;
  transform: scaleY(-1);
  opacity: 0.16;
  filter: blur(3px) brightness(0.55) saturate(0.8);
  -webkit-mask-image: linear-gradient(to top, oklch(0 0 0 / 0.9) 4%, transparent 26%);
  mask-image: linear-gradient(to top, oklch(0 0 0 / 0.9) 4%, transparent 26%);
}

.hero-figure-shadow {
  position: absolute;
  left: 50%;
  bottom: 2%; /* her heels sit ~4% above the sprite cell's bottom edge */
  width: 48%;
  height: 4.5%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    oklch(0.05 0.02 252 / 0.6),
    transparent 72%
  );
}

.hero-glow,
.hero-vignette,
.hero-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* One quiet line above the doorway: brand + how to interact, visible from
 * the first frame. It lives in .hero-entrance, so it fades out with Act 1. */
.hero-intro {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: clamp(88px, 13vh, 148px);
  transform: translateX(-50%);
  margin: 0;
  padding: 10px 20px;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(10px, 2.4vw, 13px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: oklch(0.95 0.02 85 / 0.92);
  text-shadow: 0 1px 8px oklch(0.08 0.02 252 / 0.9);
  background: oklch(0.12 0.02 252 / 0.34);
  border: 1px solid oklch(1 0 0 / 0.14);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-glow {
  z-index: 3;
  background:
    radial-gradient(
      28% 32% at 51% 37%,
      oklch(0.94 0.06 82 / 0.56),
      oklch(0.82 0.09 76 / 0.2) 42%,
      transparent 72%
    ),
    radial-gradient(
      42% 34% at 51% 78%,
      oklch(0.86 0.08 80 / 0.2),
      transparent 72%
    );
  mix-blend-mode: screen;
  opacity: 0.32;
  will-change: opacity, transform;
  /* Breathe on filter only — JS owns opacity/transform for the scroll fade,
   * and a CSS animation on those properties would override the inline values. */
  animation: glow-breathe 5.5s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.24); }
}

.hero-vignette {
  z-index: 4;
  background:
    linear-gradient(180deg, oklch(0.06 0.02 252 / 0.22), transparent 32%),
    radial-gradient(
      110% 95% at 50% 48%,
      transparent 42%,
      oklch(0.06 0.02 252 / 0.58) 100%
    );
}

.hero-fade {
  z-index: 5;
  background: radial-gradient(
    circle at 51% 37%,
    oklch(0.98 0.026 88 / 0.82),
    oklch(0.14 0.03 250) 62%
  );
  opacity: 0;
  will-change: opacity;
}

/* The doorway light blooms forward at the hand-off to the rooms. */
.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: radial-gradient(
    circle at 50% 40%,
    oklch(0.96 0.04 84 / 0.95),
    oklch(0.85 0.07 74 / 0.5) 32%,
    oklch(0.14 0.03 250) 72%
  );
  opacity: 0;
  pointer-events: none;
}

/* --- Act 2: the rooms grid, emerging through the door --- */
.rooms-stage {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.rooms-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.4vw, 20px);
  aspect-ratio: 16 / 9;
}

.room-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid oklch(1 0 0 / 0.1);
  box-shadow: 0 22px 60px oklch(0.08 0.02 252 / 0.5);
}

.room-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.9); /* no-JS: rooms visible */
  will-change: filter, transform;
}

/* When JS is running, the rooms start dark and are lit by the scroll. */
.js .room-panel img {
  filter: brightness(0.24) saturate(0.55);
  transform: scale(1.04);
}

.room-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(0.1 0.02 252 / 0.14),
    oklch(0.1 0.02 252 / 0.72)
  );
}

.room-panel-glow {
  position: absolute;
  inset: -1px;
  z-index: 2;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgb(34 190 208 / 0.55),
    inset 0 0 42px rgb(34 190 208 / 0.22);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.room-panel-label {
  position: absolute;
  z-index: 3;
  right: clamp(12px, 1.6vw, 20px);
  bottom: clamp(11px, 1.5vw, 17px);
  left: clamp(12px, 1.6vw, 20px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.75vw, 24px);
  letter-spacing: -0.01em;
  color: var(--white);
  text-shadow: 0 2px 18px oklch(0.08 0.02 252 / 0.85);
  will-change: opacity, transform;
}

.js .room-panel-label {
  opacity: 0;
  transform: translateY(12px);
}

.room-panel-label i {
  flex: none;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold);
  padding: 4px 8px;
  border: 1px solid rgb(34 190 208 / 0.5);
  border-radius: 999px;
}

/* --- Connective network + core, revealed on the pull-back --- */
.rooms-net {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.rooms-net line {
  stroke: rgb(34 190 208 / 0.7);
  stroke-width: 1.4;
  stroke-dasharray: 4 5;
  vector-effect: non-scaling-stroke;
}

.rooms-core {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(58px, 7vw, 92px);
  height: clamp(58px, 7vw, 92px);
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.21 0.03 250), oklch(0.14 0.03 252));
  border: 1px solid rgb(34 190 208 / 0.6);
  box-shadow: 0 0 42px rgb(34 190 208 / 0.4),
    inset 0 0 20px rgb(34 190 208 / 0.25);
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.rooms-core span {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

.hero-scrim-dark {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: radial-gradient(
    72% 62% at 50% 52%,
    oklch(0.1 0.02 252 / 0.82),
    transparent 72%
  );
  opacity: 0;
  pointer-events: none;
}

/* --- The headline resolves --- */
.hero-reveal {
  position: absolute;
  z-index: 8;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(20px, 5vw, 40px);
  text-align: center;
  will-change: opacity, transform;
}

.js .hero-reveal {
  opacity: 0;
  pointer-events: none;
}

.hero-reveal .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.hero-reveal h1 {
  width: min(1120px, 100%);
  margin: 0 0 clamp(12px, 2.4vh, 22px);
  font-size: clamp(38px, min(7.6vw, 8.8vh), 102px);
  line-height: 0.9;
  text-wrap: balance;
}

.hero-line {
  display: block;
}

.hero-line.grad {
  margin-top: 0.08em;
  font-size: 0.78em;
  line-height: 1;
}

@media (min-width: 721px) {
  .hero-line {
    white-space: nowrap;
  }
}

.grad {
  background: linear-gradient(100deg, var(--blue-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-reveal-sub {
  max-width: 60ch;
  margin: 0 auto clamp(18px, 3.4vh, 32px);
  color: oklch(0.98 0.008 240 / 0.86);
  font-size: clamp(16px, min(1.6vw, 2.6vh), 21px);
}

.hero-reveal .hero-actions {
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  z-index: 9;
  right: 34px; /* off-center so it never overlaps the walking figure */
  bottom: 26px;
  width: 26px;
  height: 42px;
  border: 1.5px solid oklch(1 0 0 / 0.5);
  border-radius: 16px;
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: cue 1.9s var(--ease) infinite;
}

/* Arrival: content rises in staggered on load */
.is-ready .topbar {
  animation: rise-soft 900ms var(--ease) both;
}

.is-ready .hero-tagline {
  animation: rise-soft 1000ms var(--ease) 220ms both;
}

.is-ready .scroll-cue {
  animation: rise-soft 900ms var(--ease) 500ms both;
}

@keyframes rise-soft {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: currentColor;
}

.eyebrow-blue {
  color: var(--blue);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 300ms var(--ease), background 300ms var(--ease),
    border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 18px 42px rgb(22 120 190 / 0.38);
}

.btn-primary:hover {
  background: var(--blue-bright);
  box-shadow: 0 24px 54px rgb(22 120 190 / 0.48);
}

.btn-ghost,
.btn-outline {
  color: var(--white);
  border-color: oklch(1 0 0 / 0.5);
  background: oklch(1 0 0 / 0.08);
}

.btn-ghost:hover,
.btn-outline:hover {
  border-color: var(--white);
  background: oklch(1 0 0 / 0.14);
}

.btn-light {
  color: var(--blue-dark);
  background: var(--white);
}

.btn-light:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* ---------- Section shells ---------- */
.intro,
.outcomes,
.services,
.capabilities,
.consultation,
.site-foot {
  padding-right: clamp(20px, 5vw, 56px);
  padding-left: clamp(20px, 5vw, 56px);
}

.intro {
  padding-top: clamp(80px, 10vw, 128px);
  padding-bottom: clamp(48px, 7vw, 84px);
}

.section-head {
  width: min(64ch, 100%);
  margin: 0 auto clamp(38px, 5vw, 62px);
  text-align: center;
}

.section-head .eyebrow {
  margin-inline: auto;
}

.section-head h2,
.consultation-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(31px, 5vw, 62px);
  line-height: 1.02;
}

.section-head p,
.consultation-copy p {
  color: var(--muted);
  font-size: 18px;
}

/* ---------- Proof grid (editorial numerals) ---------- */
.proof-grid {
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-item {
  position: relative;
  min-height: 180px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}

.proof-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.proof-item span {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  color: rgb(22 120 190 / 0.45);
  font-variant-numeric: tabular-nums;
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 700;
}

.proof-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.room-body > span,
.contact-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.room-body > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.room-body > span i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgb(22 120 190 / 0.24);
  border-radius: 50%;
  color: var(--blue-dark);
  background: rgb(22 120 190 / 0.08);
  font-style: normal;
  letter-spacing: 0;
}

/* ---------- Outcome band ---------- */
.outcomes {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  padding-top: clamp(70px, 9vw, 112px);
  padding-bottom: clamp(70px, 9vw, 112px);
  background: var(--white);
}

.outcome-copy {
  max-width: 520px;
}

.outcome-copy h2 {
  margin-bottom: 0;
  color: var(--blue-dark);
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.04;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.outcome-grid article,
.sector-grid article {
  min-height: 188px;
  padding: 26px;
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.sector-grid article {
  min-height: 168px;
}

.sector-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgb(22 120 190 / 0.2);
  border-radius: 12px;
  color: var(--blue-dark);
  background: rgb(22 120 190 / 0.07);
}

.sector-icon svg {
  width: 23px;
  height: 23px;
}

.outcome-grid span {
  display: block;
  margin-bottom: 18px;
  color: rgb(22 120 190 / 0.45);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.outcome-grid strong,
.sector-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 18px;
}

.outcome-grid p,
.sector-grid p {
  margin: 0;
  color: var(--muted);
}

/* ---------- Services / rooms ---------- */
.services {
  position: relative;
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(80px, 10vw, 124px);
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 82%, transparent);
  opacity: 0.6;
}

.rooms {
  position: relative;
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
}

.room {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 450ms var(--ease), box-shadow 450ms var(--ease);
}

.room:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-media {
  position: relative;
  height: clamp(210px, 23vw, 300px);
  overflow: hidden;
  background: linear-gradient(135deg, #071421, #173553);
}

.room-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, oklch(0.14 0.03 250 / 0.28));
  pointer-events: none;
}

.room img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms var(--ease);
}

.room:hover img {
  transform: scale(1.05);
}

.room-body {
  display: grid;
  align-content: start;
  padding: 26px;
}

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.room-tags li {
  padding: 6px 12px;
  border: 1px solid rgb(22 120 190 / 0.18);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgb(22 120 190 / 0.06);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.room h3 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: clamp(23px, 3vw, 33px);
  line-height: 1.08;
}

.room p {
  margin-bottom: 0;
  color: var(--muted);
}

/* ---------- Capabilities / sectors ---------- */
.capabilities {
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  padding-top: clamp(80px, 10vw, 124px);
  padding-bottom: clamp(80px, 10vw, 124px);
}

.capability-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 3vw, 34px);
}

.capability-list span {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--blue-dark);
  background: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 320ms var(--ease), border-color 320ms var(--ease),
    box-shadow 320ms var(--ease);
}

.capability-list span::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.capability-list span:hover {
  transform: translateY(-3px);
  border-color: rgb(22 120 190 / 0.4);
  box-shadow: var(--shadow-md);
}

/* ---------- AI Studio ---------- */
.ai-studio {
  position: relative;
  display: block;
  overflow: hidden;
  padding: clamp(80px, 10vw, 130px) clamp(20px, 5vw, 56px);
  color: var(--white);
  background:
    radial-gradient(circle at 24% 40%, rgb(22 120 190 / 0.2), transparent 42%),
    linear-gradient(160deg, var(--charcoal), var(--charcoal-2));
  isolation: isolate;
}

.ai-studio::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(22 120 190 / 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgb(22 120 190 / 0.09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 28% 50%, #000 0%, transparent 62%);
}

/* Centered head above the hub */
.ai-head {
  max-width: 62ch;
  margin: 0 auto clamp(34px, 4.5vw, 60px);
  text-align: center;
}

.ai-head .eyebrow {
  margin-right: auto;
  margin-left: auto;
  color: var(--gold);
}

.ai-head h2 {
  margin: 0 0 14px;
  font-size: clamp(29px, 4vw, 48px);
  line-height: 1.04;
}

.ai-head p:last-child {
  margin: 0 auto;
  max-width: 54ch;
  color: oklch(0.98 0.008 240 / 0.8);
  font-size: 17px;
  line-height: 1.65;
}

/* The integrated panel: chart, live rows, and the four capabilities in one card */
.console.console-wide {
  width: min(960px, 100%);
  margin: 0 auto;
}

.console-wide .console-chart svg {
  height: clamp(150px, 22vw, 220px);
}

/* Live rows sit two-up inside the wide panel */
.console-wide .console-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(20px, 3.5vw, 44px);
  padding: 8px 22px 14px;
}

.console-wide .console-row + .console-row {
  border-top: 0;
}

/* The four capabilities, built into the panel */
.console-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgb(255 255 255 / 0.08);
  background: rgb(255 255 255 / 0.03);
}

.console-features > div {
  padding: clamp(16px, 2vw, 24px) clamp(14px, 1.8vw, 22px);
}

.console-features > div + div {
  border-left: 1px solid rgb(255 255 255 / 0.06);
}

.console-features strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.console-features strong::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin-bottom: 10px;
  background: var(--gold);
}

.console-features p {
  margin: 0;
  color: oklch(0.98 0.008 240 / 0.68);
  font-size: 13.5px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .console-features {
    grid-template-columns: 1fr 1fr;
  }

  .console-features > div:nth-child(odd) {
    border-left: 0;
  }

  .console-features > div:nth-child(n + 3) {
    border-top: 1px solid rgb(255 255 255 / 0.06);
  }
}

@media (max-width: 560px) {
  .console-features {
    grid-template-columns: 1fr;
  }

  .console-features > div + div {
    border-left: 0;
    border-top: 1px solid rgb(255 255 255 / 0.06);
  }

  .console-wide .console-rows {
    grid-template-columns: 1fr;
  }
}

.ai-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-list li {
  border: 1px solid rgb(22 120 190 / 0.3);
  border-radius: 12px;
  padding: 16px 18px;
  color: oklch(0.98 0.008 240 / 0.76);
  background: rgb(22 120 190 / 0.08);
  line-height: 1.55;
  transition: border-color 300ms var(--ease), background 300ms var(--ease),
    transform 300ms var(--ease);
}

.ai-list li:hover {
  border-color: rgb(34 190 208 / 0.55);
  background: rgb(22 120 190 / 0.14);
  transform: translateX(6px);
}

.ai-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-weight: 700;
}

/* The console: a quiet growth-intelligence panel */
.ai-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
}

.console {
  width: min(400px, 100%);
  overflow: hidden;
  border: 1px solid rgb(22 120 190 / 0.35);
  border-radius: 18px;
  background: linear-gradient(170deg, oklch(0.24 0.035 249 / 0.92), oklch(0.165 0.028 251 / 0.96));
  box-shadow:
    0 30px 80px oklch(0.1 0.02 250 / 0.5),
    inset 0 1px 0 oklch(1 0 0 / 0.08);
  backdrop-filter: blur(12px);
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}

.console-title {
  color: oklch(0.98 0.008 240 / 0.85);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.console-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.console-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgb(34 190 208 / 0.8);
  animation: status-pulse 2.8s ease-in-out infinite;
}

/* The signal horizon: live inputs converge into a pattern, then become a
 * specific forward move. It describes anticipation instead of a circular loop. */
.signal-horizon {
  position: relative;
  min-height: 430px;
  padding: 24px clamp(18px, 3vw, 34px) 30px;
  overflow: hidden;
  background:
    linear-gradient(rgb(47 184 230 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(47 184 230 / 0.045) 1px, transparent 1px),
    radial-gradient(circle at 58% 48%, rgb(34 190 208 / 0.1), transparent 34%);
  background-size: 46px 46px, 46px 46px, auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease) 160ms, transform 900ms var(--ease) 160ms;
}

.ai-visual.is-visible .signal-horizon {
  opacity: 1;
  transform: none;
}

.horizon-labels {
  display: grid;
  grid-template-columns: 1fr 0.82fr 1.35fr;
  gap: clamp(18px, 3vw, 42px);
  padding-bottom: 22px;
  color: rgb(255 255 255 / 0.38);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.horizon-labels span:nth-child(2) { text-align: center; }
.horizon-labels span:last-child { color: rgb(216 179 94 / 0.85); }

.horizon-field {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.82fr 1.35fr;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 330px;
}

.horizon-path {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.path-line {
  position: absolute;
  left: 20%;
  width: 36%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(47 184 230 / 0.25) 35%, rgb(47 184 230 / 0.6));
  transform-origin: left center;
}

.line-one { top: 18%; transform: rotate(17deg); }
.line-two { top: 39%; transform: rotate(6deg); }
.line-three { top: 61%; transform: rotate(-7deg); }
.line-four { top: 82%; transform: rotate(-18deg); }

.line-forward {
  top: 50%;
  left: 54%;
  width: 31%;
  height: 2px;
  background: linear-gradient(90deg, rgb(47 184 230 / 0.55), #d8b35e 72%, transparent);
  box-shadow: 0 0 12px rgb(34 190 208 / 0.22);
  transform: none;
}

.path-pulse {
  position: absolute;
  z-index: 1;
  top: calc(50% - 3px);
  left: 18%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 15px 3px rgb(47 184 230 / 0.58);
  opacity: 0;
  animation: signal-forward 5.4s var(--ease) infinite paused;
}

.pulse-two { animation-delay: 1.8s; }
.pulse-three { animation-delay: 3.6s; }
.ai-visual.is-visible .path-pulse { animation-play-state: running; }

@keyframes signal-forward {
  0% { left: 18%; opacity: 0; transform: scale(0.6); }
  12% { opacity: 1; }
  52% { left: 50%; opacity: 1; transform: scale(1); }
  75% { left: 73%; opacity: 1; background: #d8b35e; }
  86%, 100% { left: 85%; opacity: 0; transform: scale(0.7); }
}

.intel-streams {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
}

.intel-chip {
  position: relative;
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 8px;
  background: rgb(8 27 42 / 0.86);
  box-shadow: 0 9px 22px rgb(0 0 0 / 0.14);
  animation: intel-read 5.4s ease-in-out var(--delay) infinite paused;
}

.ai-visual.is-visible .intel-chip { animation-play-state: running; }

.intel-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 10px rgb(47 184 230 / 0.5);
}

.intel-chip span {
  color: rgb(255 255 255 / 0.56);
  font-size: 10px;
  font-weight: 650;
}

.intel-chip strong {
  color: rgb(255 255 255 / 0.88);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

@keyframes intel-read {
  0%, 12% { border-color: rgb(47 184 230 / 0.38); background: rgb(15 49 68 / 0.94); transform: translateX(4px); }
  22%, 100% { border-color: rgb(255 255 255 / 0.08); background: rgb(8 27 42 / 0.86); transform: none; }
}

.pattern-reader {
  position: relative;
  z-index: 3;
  display: grid;
  place-content: center;
  min-height: 218px;
  padding: 22px 18px;
  overflow: hidden;
  border: 1px solid rgb(34 190 208 / 0.42);
  border-radius: 14px;
  text-align: center;
  background:
    linear-gradient(135deg, rgb(47 184 230 / 0.09), transparent 42%),
    rgb(8 30 47 / 0.96);
  box-shadow: 0 20px 48px rgb(0 0 0 / 0.24), inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.pattern-reader::before,
.pattern-reader::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #d8b35e;
  opacity: 0.55;
}

.pattern-reader::before {
  top: 8px;
  left: 8px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.pattern-reader::after {
  right: 8px;
  bottom: 8px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.reader-scan {
  position: absolute;
  z-index: 0;
  top: -25%;
  right: 0;
  left: 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgb(34 190 208 / 0.13), rgb(47 184 230 / 0.42));
  border-bottom: 1px solid rgb(47 184 230 / 0.75);
  filter: blur(0.2px);
  animation: reader-sweep 4.8s ease-in-out infinite paused;
}

.ai-visual.is-visible .reader-scan { animation-play-state: running; }

@keyframes reader-sweep {
  0%, 12% { top: -28%; opacity: 0; }
  25% { opacity: 1; }
  68% { top: 102%; opacity: 0.65; }
  69%, 100% { top: 102%; opacity: 0; }
}

.reader-kicker,
.move-kicker {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pattern-reader > strong {
  position: relative;
  z-index: 1;
  margin: 10px 0 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(23px, 2.6vw, 31px);
  font-weight: 500;
  line-height: 0.92;
}

.reader-confidence {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.09);
}

.reader-confidence i {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1300ms var(--ease) 550ms;
}

.ai-visual.is-visible .reader-confidence i { transform: scaleX(1); }

.pattern-reader small {
  position: relative;
  z-index: 1;
  margin-top: 7px;
  color: rgb(255 255 255 / 0.43);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.next-move {
  position: relative;
  z-index: 2;
  min-height: 262px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgb(216 179 94 / 0.3);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 15%, rgb(216 179 94 / 0.13), transparent 34%),
    linear-gradient(145deg, rgb(17 49 67 / 0.96), rgb(8 25 39 / 0.98));
  box-shadow: 0 22px 54px rgb(0 0 0 / 0.28), inset 0 1px 0 rgb(255 255 255 / 0.08);
  animation: move-glow 5.4s ease-in-out infinite paused;
}

.ai-visual.is-visible .next-move { animation-play-state: running; }

@keyframes move-glow {
  0%, 58%, 100% { border-color: rgb(216 179 94 / 0.25); box-shadow: 0 22px 54px rgb(0 0 0 / 0.28), inset 0 1px 0 rgb(255 255 255 / 0.08); }
  72% { border-color: rgb(216 179 94 / 0.58); box-shadow: 0 22px 54px rgb(0 0 0 / 0.3), 0 0 28px rgb(216 179 94 / 0.08), inset 0 1px 0 rgb(255 255 255 / 0.1); }
}

.next-move > strong {
  display: block;
  margin: 10px 0 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.3vw, 40px);
  font-weight: 500;
  line-height: 0.95;
}

.next-move > p {
  max-width: 38ch;
  margin: 0 0 22px;
  color: rgb(255 255 255 / 0.58);
  font-size: 11px;
  line-height: 1.55;
}

.move-window {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  color: rgb(255 255 255 / 0.42);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.move-window b {
  position: relative;
  display: block;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgb(47 184 230 / 0.18), rgb(216 179 94 / 0.5));
}

.move-window b i {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8b35e;
  box-shadow: 0 0 12px rgb(216 179 94 / 0.65);
  transform: translate(-50%, -50%);
  animation: window-lead 5.4s var(--ease) infinite paused;
}

.ai-visual.is-visible .move-window b i { animation-play-state: running; }

@keyframes window-lead {
  0%, 48% { left: 15%; }
  72%, 100% { left: 76%; }
}

.move-window em {
  color: #d8b35e;
  font-style: normal;
}

@media (max-width: 820px) {
  .horizon-labels,
  .horizon-field {
    grid-template-columns: 0.9fr 0.72fr 1.2fr;
    gap: 14px;
  }

  .signal-horizon { padding-right: 18px; padding-left: 18px; }
  .intel-chip { grid-template-columns: 7px 1fr; }
  .intel-chip strong { grid-column: 2; }
  .pattern-reader { padding-right: 12px; padding-left: 12px; }
  .next-move { padding: 24px 20px; }
}

@media (max-width: 650px) {
  .signal-horizon {
    padding: 24px 16px;
  }

  .horizon-labels {
    display: none;
  }

  .horizon-field {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .horizon-path::before {
    content: "";
    position: absolute;
    top: 18%;
    bottom: 15%;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgb(47 184 230 / 0.42), #d8b35e, transparent);
  }

  .path-line,
  .path-pulse {
    display: none;
  }

  .intel-streams {
    grid-template-columns: 1fr 1fr;
  }

  .pattern-reader {
    width: min(230px, 78%);
    min-height: 190px;
    margin: 0 auto;
  }

  .next-move {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .intel-streams { grid-template-columns: 1fr; }
  .next-move > strong { font-size: 31px; }
  .move-window { grid-template-columns: 1fr auto; }
  .move-window b { grid-column: 1 / -1; grid-row: 2; }
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.console-chart {
  padding: 20px 22px 4px;
}

.console-chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.chart-grid line {
  stroke: oklch(1 0 0 / 0.07);
  stroke-width: 1;
}

.chart-area {
  fill: url(#sskChartFill);
  opacity: 0;
  transition: opacity 900ms var(--ease) 900ms;
}

.chart-line {
  fill: none;
  stroke: var(--blue-bright);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1500ms var(--ease) 250ms;
}

.chart-dot {
  fill: var(--gold);
  opacity: 0;
  transition: opacity 500ms var(--ease) 1500ms;
}

.ai-visual.is-visible .chart-line { stroke-dashoffset: 0; }
.ai-visual.is-visible .chart-area,
.ai-visual.is-visible .chart-dot { opacity: 1; }

.console-rows {
  padding: 6px 22px;
}

.console-row {
  display: grid;
  grid-template-columns: 98px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.console-row + .console-row {
  border-top: 1px solid oklch(1 0 0 / 0.06);
}

.console-row > span:first-child {
  color: oklch(0.98 0.008 240 / 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-row .track {
  height: 4px;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.1);
  overflow: hidden;
}

.console-row .track i {
  display: block;
  width: calc(var(--w) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease);
}

.ai-visual.is-visible .console-row .track i { transform: scaleX(1); }
.ai-visual.is-visible .console-row:nth-child(2) .track i { transition-delay: 140ms; }
.ai-visual.is-visible .console-row:nth-child(3) .track i { transition-delay: 280ms; }
.ai-visual.is-visible .console-row:nth-child(4) .track i { transition-delay: 420ms; }

.console-row em {
  color: rgb(34 190 208 / 0.9);
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid oklch(1 0 0 / 0.08);
  background: oklch(1 0 0 / 0.03);
}

.console-foot div {
  padding: 16px 10px 14px;
  text-align: center;
}

.console-foot div + div {
  border-left: 1px solid oklch(1 0 0 / 0.06);
}

.console-foot strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
}

.console-foot small {
  color: oklch(0.98 0.008 240 / 0.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Founder timeline ---------- */
.founder {
  padding: clamp(80px, 10vw, 124px) clamp(20px, 5vw, 56px);
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
}

.founder-hero {
  display: grid;
  grid-template-columns: clamp(220px, 26vw, 300px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  width: min(var(--maxw), 100%);
  margin: 0 auto clamp(42px, 6vw, 76px);
}

.founder-portrait {
  margin: 0;
  position: relative;
}

.founder-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  z-index: -1;
  border-radius: 10px;
  background: linear-gradient(135deg, rgb(22 120 190 / 0.14), rgb(34 190 208 / 0.2));
}

.founder-portrait figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-bio h3 {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.founder-bio p {
  color: var(--muted);
  line-height: 1.75;
}

.founder-bio blockquote {
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 24px);
  font-style: italic;
  line-height: 1.4;
}

.clients .client-logos {
  width: min(var(--maxw), 100%);
  margin: clamp(18px, 3vw, 34px) auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.client-logos li {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 320ms var(--ease), border-color 320ms var(--ease),
    box-shadow 320ms var(--ease);
}

.client-logos img {
  max-width: min(100%, 158px);
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 320ms var(--ease), opacity 320ms var(--ease);
}

/* Square / stacked marks need more height to read at the same optical size
   as the wide wordmarks they sit beside. */
.client-logos img.logo-square {
  max-width: min(100%, 96px);
  max-height: 78px;
}

.client-logos img.logo-light {
  filter: grayscale(1) brightness(0.62);
}

/* Marks that ship as white-on-dark artwork: keep the dark plate, just soften it */
.client-logos img.logo-dark {
  border-radius: 6px;
  opacity: 0.66;
  filter: grayscale(1) contrast(0.92);
}

.client-logos li:hover {
  transform: translateY(-3px);
  border-color: rgb(22 120 190 / 0.4);
  box-shadow: var(--shadow-md);
}

.client-logos li:hover img {
  filter: none;
  opacity: 1;
}

/* Fallback tile for clients whose logo file is pending */
.client-logos li.logo-text {
  color: rgb(28 41 61 / 0.62);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  transition: color 320ms var(--ease), transform 320ms var(--ease),
    border-color 320ms var(--ease), box-shadow 320ms var(--ease);
}

.client-logos li.logo-text:hover {
  color: var(--blue-dark);
}

/* ---------- In the media ---------- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--maxw), 100%);
  margin: clamp(18px, 3vw, 34px) auto 0;
}

.media-grid a {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 320ms var(--ease), border-color 320ms var(--ease),
    box-shadow 320ms var(--ease);
}

.media-grid a:hover {
  transform: translateY(-3px);
  border-color: rgb(22 120 190 / 0.4);
  box-shadow: var(--shadow-md);
}

.media-grid span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-grid strong {
  color: var(--blue-dark);
  font-weight: 600;
  line-height: 1.45;
}

.media-grid strong::after {
  content: " \2197";
  color: var(--gold);
}

@media (max-width: 900px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .founder-hero {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .founder-portrait {
    width: min(280px, 70vw);
  }

  .founder-portrait::after {
    inset: 12px -10px -10px 12px;
  }
}

.founder-profile {
  width: min(var(--maxw), 100%);
  margin: 0 auto clamp(42px, 6vw, 76px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.founder-profile div {
  padding: 26px;
  background: oklch(0.995 0.003 240 / 0.92);
}

.founder-profile span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-profile strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.05;
}

.founder-profile p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 2vw, 26px);
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1400ms var(--ease) 200ms;
}

.timeline.is-visible::before {
  transform: scaleX(1);
}

.timeline li {
  position: relative;
  padding-top: 34px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.timeline.is-visible li {
  opacity: 1;
  transform: none;
}

.timeline.is-visible li:nth-child(2) { transition-delay: 200ms; }
.timeline.is-visible li:nth-child(3) { transition-delay: 400ms; }
.timeline.is-visible li:nth-child(4) { transition-delay: 600ms; }
.timeline.is-visible li:nth-child(5) { transition-delay: 800ms; }
.timeline.is-visible li:nth-child(6) { transition-delay: 1000ms; }

.timeline li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgb(34 190 208 / 0.18);
}

.timeline span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  color: var(--blue-dark);
  font-variant-numeric: tabular-nums;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Consultation ---------- */
.consultation {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 56px);
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
  text-align: left;
}

.consultation-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.consultation-bg {
  position: relative;
  min-height: 100%;
}

.consultation-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.consultation-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 72%, oklch(0.99 0.005 85 / 0.4));
}

.consultation-inner {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  width: auto;
  margin: 0;
  padding: clamp(32px, 4vw, 60px);
  color: var(--ink);
  text-align: left;
}

.consultation-inner .eyebrow {
  margin: 0 0 2px;
  color: oklch(0.55 0.105 77);
}

.consultation-inner h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(31px, 3.6vw, 52px);
  line-height: 1;
  text-shadow: none;
  text-wrap: balance;
}

.consultation-sub {
  max-width: 46ch;
  margin: 2px 0 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  text-shadow: none;
}

/* Host + facts + CTA, stacked inside the card */
.invite-card {
  display: grid;
  gap: 18px;
  width: 100%;
  margin-top: 6px;
  padding: 20px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: left;
}

.invite-who {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.invite-who img {
  flex: none;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  border: 1px solid oklch(0.72 0.06 78 / 0.6);
  object-fit: cover;
  object-position: top;
}

.invite-who strong {
  display: block;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
}

.invite-who span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.invite-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.invite-facts li {
  display: grid;
  gap: 5px;
  padding: 0 16px;
  border-left: 1px solid var(--line);
  white-space: normal;
}

.invite-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.invite-facts li::before {
  content: attr(data-label);
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: oklch(0.55 0.105 77);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.invite-facts li strong {
  color: var(--blue-dark);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
}

.invite-facts li span {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 500;
}

.btn-gold {
  justify-self: start;
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: 0 16px 36px oklch(0.27 0.06 245 / 0.2);
}

.btn-gold:hover {
  color: var(--charcoal);
  background: var(--gold);
  box-shadow: 0 20px 44px oklch(0.64 0.1 80 / 0.28);
}

.btn-gold svg {
  width: 17px;
  height: 17px;
}

.consultation-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 22px;
  width: 100%;
  margin-top: 2px;
}

.consultation-meta a,
.consultation-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  overflow-wrap: anywhere;
  transition: color 250ms var(--ease);
}

.consultation-meta a:hover {
  color: var(--blue);
}

.consultation-meta svg {
  flex: none;
  width: 15px;
  height: 15px;
  color: oklch(0.55 0.105 77);
}

/* Touch devices: contact and social links are primary conversion actions,
   so give them a full-size (44px) touch target without changing the
   desktop layout. Negative inline margin keeps the text optically aligned
   with the rest of the column. */
@media (max-width: 860px), (hover: none) and (pointer: coarse) {
  .consultation-meta {
    gap: 2px 22px;
  }

  .consultation-meta a,
  .consultation-meta span {
    min-height: 44px;
    margin-inline: -8px;
    padding-block: 4px;
    padding-inline: 8px;
    border-radius: 8px;
  }

  .consultation-inner .socials a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

.consultation-inner .socials {
  justify-content: flex-start;
  gap: 8px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--blue-dark);
}

.consultation-inner .socials a {
  border-color: var(--line);
  background: transparent;
}

.consultation-inner .socials a:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: oklch(0.96 0.02 245);
}

@media (max-width: 860px) {
  .consultation-card {
    grid-template-columns: 1fr;
  }

  .consultation-bg {
    min-height: clamp(260px, 48vw, 400px);
  }

  .invite-facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .invite-facts li,
  .invite-facts li:first-child {
    padding: 0;
    border-left: 0;
  }

  .consultation-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .consultation-inner h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .consultation-inner .socials a {
    padding: 7px 11px;
    font-size: 10px;
  }
}

.meeting-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 8px;
}

.meeting-facts > div {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 136px;
  padding: 17px 16px;
  border: 1px solid oklch(1 0 0 / 0.14);
  border-radius: 12px;
  background: oklch(1 0 0 / 0.055);
}

.meeting-facts span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.meeting-facts strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.25;
}

.meeting-facts small {
  color: oklch(1 0 0 / 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.contact-lines {
  display: grid;
  gap: 0;
  margin: 14px 0 22px;
  overflow: hidden;
  border: 1px solid oklch(1 0 0 / 0.12);
  border-radius: 12px;
  background: oklch(0.08 0.018 250 / 0.28);
}

.contact-lines > div {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 13px 16px;
  transition: background 250ms var(--ease);
}

.contact-lines > div:hover {
  background: oklch(1 0 0 / 0.05);
}

.contact-lines > div + div {
  border-top: 1px solid oklch(1 0 0 / 0.08);
}

.cl-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(34 190 208 / 0.4);
  border-radius: 50%;
  color: var(--gold);
  background: rgb(34 190 208 / 0.1);
}

.cl-icon svg {
  width: 18px;
  height: 18px;
}

.cl-body {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.cl-label {
  color: oklch(1 0 0 / 0.5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-lines p {
  margin: 0;
  min-width: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-lines i {
  margin: 0 5px;
  color: oklch(1 0 0 / 0.4);
  font-style: normal;
}

.contact-lines a {
  color: var(--white);
  transition: color 250ms var(--ease);
}

.contact-lines a:hover,
.socials a:hover {
  color: var(--gold);
}

.cta-actions .btn svg {
  flex: none;
  width: 17px;
  height: 17px;
  margin-right: 9px;
}

/* ---------- Booking panel (full-width scheduler) ---------- */
.booking-panel {
  grid-column: 1 / -1;
  margin: clamp(6px, 1.5vw, 16px) 0 clamp(48px, 6vw, 84px);
  padding: clamp(22px, 3.2vw, 40px);
  border: 1px solid oklch(1 0 0 / 0.14);
  border-radius: 18px;
  background: oklch(0.08 0.018 250 / 0.4);
  box-shadow: 0 24px 60px oklch(0 0 0 / 0.3);
  scroll-margin-top: 96px;
  animation: booking-in 420ms var(--ease);
}

.booking-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(20px, 2.6vw, 30px);
  padding-bottom: clamp(16px, 2vw, 22px);
  border-bottom: 1px solid oklch(1 0 0 / 0.12);
}

.booking-head .eyebrow {
  margin-bottom: 6px;
  color: var(--gold);
}

.booking-head h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.1;
}

.booking-close {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid oklch(1 0 0 / 0.22);
  border-radius: 50%;
  color: var(--white);
  background: oklch(1 0 0 / 0.07);
  cursor: pointer;
  transition: border-color 220ms var(--ease), background 220ms var(--ease),
    color 220ms var(--ease);
}

.booking-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: oklch(1 0 0 / 0.12);
}

.booking-close svg {
  width: 16px;
  height: 16px;
}

.booking-info {
  display: grid;
  align-content: start;
  gap: 6px;
  padding-right: clamp(18px, 2.5vw, 32px);
  border-right: 1px solid oklch(1 0 0 / 0.1);
}

.booking-info img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
  border-radius: 50%;
  border: 2px solid rgb(34 190 208 / 0.55);
  object-fit: cover;
  object-position: top;
}

.booking-info strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.15;
}

.booking-info > span {
  color: oklch(1 0 0 / 0.6);
  font-size: 13px;
}

.booking-info ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid oklch(1 0 0 / 0.1);
  list-style: none;
}

.booking-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: oklch(1 0 0 / 0.72);
  font-size: 13.5px;
}

.booking-info li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-step i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgb(34 190 208 / 0.5);
  border-radius: 50%;
  background: rgb(34 190 208 / 0.12);
  font-size: 12px;
  font-style: normal;
}

@keyframes booking-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.contact-form {
  display: grid;
  gap: 14px;
}

.booking-panel .contact-form {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

/* ---------- Meeting booking ---------- */
.booking {
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 1.3fr) minmax(180px, 230px);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.cal-head strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}

.cal-nav {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid oklch(1 0 0 / 0.22);
  border-radius: 10px;
  color: var(--white);
  background: oklch(1 0 0 / 0.08);
  cursor: pointer;
  transition: border-color 220ms var(--ease), background 220ms var(--ease);
}

.cal-nav svg {
  width: 16px;
  height: 16px;
}

.cal-nav:hover:not(:disabled) {
  border-color: var(--gold);
  background: oklch(1 0 0 / 0.14);
}

.cal-nav:disabled {
  opacity: 0.3;
  cursor: default;
}

.cal-week,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.cal-week {
  margin-bottom: 8px;
  color: oklch(1 0 0 / 0.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.cal-day {
  aspect-ratio: 1;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid oklch(1 0 0 / 0.14);
  border-radius: 10px;
  color: var(--white);
  background: oklch(1 0 0 / 0.06);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 200ms var(--ease), background 200ms var(--ease),
    color 200ms var(--ease), transform 200ms var(--ease);
}

.cal-day:hover:not(:disabled) {
  transform: translateY(-1px);
}

.cal-day:hover:not(:disabled) {
  border-color: var(--gold);
  background: oklch(1 0 0 / 0.14);
}

.cal-day:disabled {
  border-color: oklch(1 0 0 / 0.05);
  color: oklch(1 0 0 / 0.22);
  background: transparent;
  cursor: default;
}

.cal-day.is-today {
  border-color: rgb(34 190 208 / 0.55);
}

.cal-day[aria-pressed="true"] {
  border-color: var(--gold);
  color: var(--charcoal);
  background: var(--gold);
}

.times-hint {
  margin: 0 0 12px;
  color: oklch(1 0 0 / 0.55);
  font-size: 13px;
}

.times-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-height: 330px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: oklch(1 0 0 / 0.25) transparent;
}

.times-grid:empty {
  max-height: none;
}

.times-grid:empty::before {
  content: "Pick a date to see available times.";
  grid-column: 1 / -1;
  padding: 22px 14px;
  border: 1px dashed oklch(1 0 0 / 0.2);
  border-radius: 10px;
  color: oklch(1 0 0 / 0.45);
  font-size: 13px;
  text-align: center;
}

.time-slot {
  padding: 12px 10px;
  border: 1px solid oklch(1 0 0 / 0.18);
  border-radius: 10px;
  color: var(--white);
  background: oklch(1 0 0 / 0.07);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: border-color 200ms var(--ease), background 200ms var(--ease),
    color 200ms var(--ease);
}

.time-slot:hover:not(:disabled) {
  border-color: var(--gold);
  background: oklch(1 0 0 / 0.14);
}

.time-slot:disabled {
  border-color: oklch(1 0 0 / 0.06);
  color: oklch(1 0 0 / 0.25);
  background: transparent;
  cursor: default;
  text-decoration: line-through;
}

.time-slot[aria-pressed="true"] {
  border-color: var(--gold);
  color: var(--charcoal);
  background: var(--gold);
}

.booking-details {
  display: grid;
  gap: 16px;
  margin-top: clamp(20px, 2.6vw, 28px);
  padding-top: clamp(18px, 2.2vw, 24px);
  border-top: 1px solid oklch(1 0 0 / 0.12);
}

.booking-summary {
  justify-self: start;
  margin: 0;
  padding: 9px 16px;
  border: 1px solid rgb(34 190 208 / 0.45);
  border-radius: 999px;
  color: var(--gold);
  background: rgb(34 190 208 / 0.1);
  font-size: 14px;
  font-weight: 600;
}

.booking-summary:empty {
  display: none;
}

.form-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

@media (max-width: 980px) {
  .booking {
    grid-template-columns: 1fr;
  }

  .booking-info {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid oklch(1 0 0 / 0.1);
  }

  .booking-cal {
    max-width: 460px;
  }

  .times-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
  }

  .form-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .times-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid-3 {
    grid-template-columns: 1fr;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: oklch(1 0 0 / 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form label span em {
  color: oklch(1 0 0 / 0.38);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
}

/* ---------- Booking modal (light wizard) ---------- */
.booking-modal {
  width: min(520px, calc(100vw - 32px));
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 18px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 40px 100px oklch(0 0 0 / 0.45);
}

.booking-modal[open] {
  animation: bm-in 360ms var(--ease);
}

@keyframes bm-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.booking-modal::backdrop {
  background: oklch(0.12 0.02 250 / 0.66);
  backdrop-filter: blur(3px);
}

.bm-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.bm-head img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgb(34 190 208 / 0.6);
  object-fit: cover;
  object-position: top;
}

.bm-head-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.bm-head-copy strong {
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
}

.bm-head-copy span {
  color: var(--muted);
  font-size: 12.5px;
}

.bm-close {
  flex: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: var(--white);
  cursor: pointer;
  transition: color 220ms var(--ease), border-color 220ms var(--ease);
}

.bm-close:hover {
  color: var(--blue-dark);
  border-color: rgb(22 120 190 / 0.45);
}

.bm-close svg {
  width: 15px;
  height: 15px;
}

.bm-progress {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 16px 20px 0;
  list-style: none;
}

.bm-progress li {
  flex: 1;
  padding-top: 8px;
  border-top: 3px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transition: color 300ms var(--ease), border-color 300ms var(--ease);
}

.bm-progress li.is-active {
  border-top-color: var(--gold);
  color: var(--blue-dark);
}

.bm-form,
.bm-success {
  padding: 18px 20px 22px;
}

.bm-step {
  display: grid;
  gap: 12px;
}

.bm-hint {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  text-align: center;
}

/* Light overrides for the calendar inside the modal */
.booking-modal .cal-head {
  margin-bottom: 0;
}

.booking-modal .cal-head strong {
  color: var(--blue-dark);
}

.booking-modal .cal-nav {
  border-color: var(--line);
  color: var(--blue-dark);
  background: var(--white);
}

.booking-modal .cal-nav:hover:not(:disabled) {
  border-color: var(--gold);
  background: var(--white);
}

.booking-modal .cal-week {
  color: var(--muted);
}

.booking-modal .cal-day {
  min-height: 44px;
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.booking-modal .cal-day:hover:not(:disabled) {
  border-color: var(--gold);
  background: rgb(34 190 208 / 0.1);
}

.booking-modal .cal-day:disabled {
  border-color: transparent;
  color: oklch(0.52 0.024 248 / 0.35);
  background: transparent;
}

.booking-modal .cal-day.is-today {
  border-color: rgb(34 190 208 / 0.75);
}

.booking-modal .cal-day[aria-pressed="true"] {
  border-color: var(--blue);
  color: var(--white);
  background: var(--charcoal-2);
}

.bm-chosen {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.booking-modal .times-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.booking-modal .time-slot {
  padding: 13px 10px;
  border-color: var(--line);
  color: var(--blue-dark);
  background: var(--white);
}

.booking-modal .time-slot:hover:not(:disabled) {
  border-color: var(--gold);
  background: rgb(34 190 208 / 0.1);
}

.booking-modal .time-slot:disabled {
  border-color: transparent;
  color: oklch(0.52 0.024 248 / 0.35);
  background: transparent;
}

.booking-modal .time-slot[aria-pressed="true"] {
  border-color: var(--blue);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), #082f63);
}

.booking-modal .booking-summary {
  justify-self: center;
  margin: 0;
  padding: 8px 16px;
  border: 1px solid rgb(34 190 208 / 0.5);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgb(34 190 208 / 0.12);
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
}

.bm-fields {
  display: grid;
  gap: 12px;
}

.bm-fields label {
  display: grid;
  gap: 6px;
}

.bm-fields label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bm-fields label span em {
  color: oklch(0.52 0.024 248 / 0.6);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.bm-fields input,
.bm-fields textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  resize: vertical;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.bm-fields input:focus,
.bm-fields textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgb(22 120 190 / 0.16);
  outline: none;
}

.bm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
}

.bm-nav:only-child,
.bm-nav:first-child {
  justify-content: flex-start;
}

.bm-back {
  padding: 8px 0;
  border: 0;
  color: var(--blue);
  background: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 220ms var(--ease);
}

.bm-back:hover {
  color: var(--blue-dark);
}

.bm-submit {
  min-height: 48px;
}

.bm-form.is-sending .bm-submit {
  opacity: 0.72;
  pointer-events: none;
}

.bm-form .form-status {
  min-height: 0;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  text-align: center;
}

.bm-form .form-status:empty {
  margin: 0;
}

.bm-form .form-status.is-error {
  color: oklch(0.55 0.19 29);
}

.bm-success {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-top: 34px;
  padding-bottom: 34px;
  text-align: center;
}

.bm-check {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 4px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), rgb(47 184 230));
  box-shadow: 0 14px 34px rgb(22 120 190 / 0.35);
}

.bm-check svg {
  width: 28px;
  height: 28px;
}

.bm-success strong {
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
}

.bm-success p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

#bm-success-slot {
  color: var(--blue-dark);
  font-weight: 700;
}

@media (max-width: 460px) {
  .booking-modal .times-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bm-head-copy strong {
    font-size: 18px;
  }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid oklch(1 0 0 / 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: oklch(1 0 0 / 0.08);
  font: inherit;
  resize: vertical;
  transition: border-color 220ms var(--ease), background 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: oklch(1 0 0 / 0.12);
  box-shadow: 0 0 0 3px rgb(34 190 208 / 0.18);
  outline: none;
}

.contact-form button {
  justify-self: start;
  cursor: pointer;
}

.contact-form.is-sending button {
  opacity: 0.72;
  pointer-events: none;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: oklch(1 0 0 / 0.74);
  font-size: 14px;
}

.form-status.is-success {
  color: oklch(0.86 0.12 145);
}

.form-status.is-error {
  color: oklch(0.78 0.16 35);
}

.hp-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid oklch(1 0 0 / 0.18);
  color: oklch(1 0 0 / 0.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.socials a {
  padding: 8px 14px;
  border: 1px solid oklch(1 0 0 / 0.18);
  border-radius: 999px;
  background: oklch(1 0 0 / 0.05);
  transition: color 250ms var(--ease), border-color 250ms var(--ease),
    background 250ms var(--ease);
}

.socials a:hover {
  border-color: rgb(34 190 208 / 0.6);
  background: oklch(1 0 0 / 0.1);
}

/* ---------- Footer ---------- */
.site-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 36px;
  padding-bottom: 36px;
  color: oklch(1 0 0 / 0.7);
  background: #071f3d;
}

.site-foot p {
  max-width: 64ch;
  margin-bottom: 0;
  font-size: 14px;
  text-align: right;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Staggered children inside revealed grids */
.proof-grid .proof-item,
.capability-list span,
.client-logos li {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease),
    border-color 320ms var(--ease), box-shadow 320ms var(--ease);
}

.proof-grid.is-visible .proof-item,
.capability-list.is-visible span,
.client-logos.is-visible li {
  opacity: 1;
  transform: none;
}

.proof-grid.is-visible .proof-item:nth-child(2) { transition-delay: 130ms, 130ms, 0ms, 0ms; }
.proof-grid.is-visible .proof-item:nth-child(3) { transition-delay: 260ms, 260ms, 0ms, 0ms; }

.capability-list.is-visible span:nth-child(2) { transition-delay: 60ms, 60ms, 0ms, 0ms; }
.capability-list.is-visible span:nth-child(3) { transition-delay: 120ms, 120ms, 0ms, 0ms; }
.capability-list.is-visible span:nth-child(4) { transition-delay: 180ms, 180ms, 0ms, 0ms; }
.capability-list.is-visible span:nth-child(5) { transition-delay: 240ms, 240ms, 0ms, 0ms; }
.capability-list.is-visible span:nth-child(6) { transition-delay: 300ms, 300ms, 0ms, 0ms; }
.capability-list.is-visible span:nth-child(7) { transition-delay: 360ms, 360ms, 0ms, 0ms; }
.capability-list.is-visible span:nth-child(8) { transition-delay: 420ms, 420ms, 0ms, 0ms; }
.capability-list.is-visible span:nth-child(9) { transition-delay: 480ms, 480ms, 0ms, 0ms; }

.client-logos.is-visible li:nth-child(2) { transition-delay: 60ms, 60ms, 0ms, 0ms; }
.client-logos.is-visible li:nth-child(3) { transition-delay: 120ms, 120ms, 0ms, 0ms; }
.client-logos.is-visible li:nth-child(4) { transition-delay: 180ms, 180ms, 0ms, 0ms; }
.client-logos.is-visible li:nth-child(5) { transition-delay: 240ms, 240ms, 0ms, 0ms; }
.client-logos.is-visible li:nth-child(6) { transition-delay: 300ms, 300ms, 0ms, 0ms; }
.client-logos.is-visible li:nth-child(7) { transition-delay: 360ms, 360ms, 0ms, 0ms; }
.client-logos.is-visible li:nth-child(8) { transition-delay: 420ms, 420ms, 0ms, 0ms; }
.client-logos.is-visible li:nth-child(9) { transition-delay: 480ms, 480ms, 0ms, 0ms; }
.client-logos.is-visible li:nth-child(10) { transition-delay: 540ms, 540ms, 0ms, 0ms; }
.client-logos.is-visible li:nth-child(11) { transition-delay: 600ms, 600ms, 0ms, 0ms; }
.client-logos.is-visible li:nth-child(12) { transition-delay: 660ms, 660ms, 0ms, 0ms; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .proof-grid,
  .rooms,
  .outcomes,
  .consultation {
    grid-template-columns: 1fr;
  }

  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clients .client-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .outcome-copy {
    max-width: 680px;
  }

  .founder-profile {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 8px;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 7px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--gold), var(--blue));
    transform: scaleY(0);
    transform-origin: top;
  }

  .timeline.is-visible::before {
    transform: scaleY(1);
  }

  .timeline li {
    padding-top: 0;
    padding-left: 34px;
  }

  .rooms {
    max-width: 680px;
  }

  .room-media {
    height: clamp(190px, 52vw, 320px);
  }

  /* Narrow phones (~320px): the intro line is set in one unbreakable run,
     so let it wrap rather than clip at both edges. */
  .hero-intro {
    white-space: normal;
    width: max-content;
    max-width: calc(100vw - 32px);
    text-align: center;
    line-height: 1.5;
  }

  .consultation-media {
    min-height: clamp(420px, 72vw, 620px);
    margin-right: calc(clamp(20px, 5vw, 56px) * -1);
    border-right: 0;
    border-bottom: 1px solid oklch(1 0 0 / 0.12);
  }

  .consultation-media::after {
    background: linear-gradient(180deg, transparent 55%, oklch(0.185 0.028 250 / 0.92));
  }

  .consultation-copy {
    padding-left: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .meeting-facts {
    grid-template-columns: 1fr;
  }

  .meeting-facts > div {
    min-height: 0;
  }

  .nav {
    display: none;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 45;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 8px;
    padding: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }

  .mobile-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    grid-area: 1 / 1;
    border-radius: 999px;
    background: currentColor;
    transition: transform 260ms var(--ease);
  }

  .mobile-nav-toggle span:first-child {
    transform: translateY(-4px);
  }

  .mobile-nav-toggle span:last-child {
    transform: translateY(4px);
  }

  .nav-open .mobile-nav-toggle span:first-child {
    transform: rotate(45deg);
  }

  .nav-open .mobile-nav-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-panel {
    position: fixed;
    z-index: 42;
    top: 72px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 2px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    color: var(--ink);
    background: oklch(0.995 0.003 240 / 0.96);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 240ms var(--ease), transform 240ms var(--ease);
    backdrop-filter: blur(18px) saturate(1.2);
  }

  .mobile-panel[hidden] {
    display: none;
  }

  .nav-open .mobile-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-panel a {
    border-radius: 6px;
    padding: 15px 14px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-panel a:hover {
    background: var(--paper-2);
  }

  .mobile-panel .mobile-call {
    color: var(--white);
    background: var(--blue);
  }

  .topbar {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand-lockup {
    width: min(190px, 56vw);
  }

  .hero-reveal h1 {
    font-size: clamp(34px, min(14vw, 8.5vh), 64px);
    line-height: 0.94;
  }

  .hero-line.grad {
    width: min(12.5ch, 100%);
    margin-right: auto;
    margin-left: auto;
    font-size: 0.82em;
    line-height: 0.94;
  }

  .rooms-grid {
    aspect-ratio: 5 / 6;
    gap: 8px;
  }

  .room-panel-label {
    font-size: clamp(13px, 3.6vw, 17px);
  }

  .room-panel-label i {
    padding: 3px 6px;
    font-size: 10px;
  }

  .hero-tagline {
    font-size: clamp(20px, 6vw, 30px);
  }

  .hero-img {
    object-position: 52% center;
  }

  .hero-figure-wrap {
    left: 51%;
    bottom: 0;
    width: min(54vw, 240px, 43.5vh);
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .clients .client-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logos li {
    min-height: 88px;
    padding: 14px 16px;
  }

  .client-logos img {
    max-height: 44px;
  }

  .outcome-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    height: 400vh;
    height: 400svh; /* same viewport basis as the 100svh sticky hero */
  }

  .site-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-foot p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
  .reveal,
  .proof-grid .proof-item,
  .capability-list span,
  .client-logos li,
  .timeline li {
    opacity: 1;
    transform: none;
  }
  .timeline::before {
    transform: none;
  }
  /* Static hero: rooms lit, headline resolved, stacked in flow. */
  .hero-stage {
    height: auto;
  }
  .hero {
    position: relative;
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    padding: 118px 20px;
    gap: 44px;
  }
  .js .room-panel img,
  .room-panel img {
    filter: brightness(0.62) saturate(0.92);
    transform: none;
  }
  .room-panel::after {
    background: linear-gradient(
      180deg,
      transparent 38%,
      oklch(0.1 0.02 252 / 0.68)
    );
  }
  .js .room-panel-label,
  .room-panel-label {
    opacity: 1;
    transform: none;
  }
  .hero-entrance,
  .hero-tagline,
  .scroll-cue {
    display: none;
  }
  .rooms-net,
  .rooms-core,
  .hero-scrim-dark {
    opacity: 0 !important;
  }
  .js .hero-reveal,
  .hero-reveal {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
  }
  .consultation-media img {
    transform: none;
  }
  .signal-horizon {
    opacity: 1;
    transform: none;
  }
  .reader-confidence i { transform: scaleX(1); }
  .reader-scan,
  .path-pulse { display: none; }
}

/* ---------- FAQ ---------- */
.faq {
  scroll-margin-top: 100px;
}

.faq-list {
  width: min(820px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 400ms var(--ease);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--blue);
  transition: transform 300ms var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--blue-dark);
}

.faq-item > p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 16px;
}

/* ---------- Insights: listing and article pages ---------- */
/* Inner pages have no dark hero, so the topbar is pinned in its "scrolled"
   state (body.is-scrolled) and main clears its height. */
.page-article main {
  padding-top: 96px;
}

.page-article .site-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  justify-content: space-between;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.foot-links a:hover,
.text-link:hover {
  color: var(--blue-bright);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
}

.article {
  width: min(72ch, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 5vw, 56px) clamp(64px, 8vw, 110px);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.crumbs a:hover {
  color: var(--blue);
}

.article-head h1 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
  color: var(--blue-dark);
}

.article-lede {
  margin-bottom: 18px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--ink);
}

.article-meta {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.article-meta a {
  color: var(--blue);
  font-weight: 700;
}

.article-figure {
  margin: clamp(28px, 4vw, 44px) 0;
}

.article-figure img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.article-body {
  margin-top: clamp(24px, 3vw, 36px);
  font-size: 17px;
  line-height: 1.72;
}

.article-body h2 {
  margin: clamp(34px, 4vw, 48px) 0 12px;
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.15;
  color: var(--blue-dark);
}

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

.article-body ul,
.article-body ol {
  margin: 0 0 20px;
  padding-left: 22px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body sub {
  font-size: 0.75em;
}

.article-takeaways {
  margin: clamp(30px, 4vw, 44px) 0;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.article-takeaways .eyebrow {
  margin-bottom: 12px;
}

.article-takeaways ul {
  margin-bottom: 0;
}

.article-refs {
  margin-top: clamp(30px, 4vw, 44px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}

.article-refs h2 {
  margin-top: 0;
  font-size: 21px;
}

.article-foot {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  gap: 24px;
}

.author-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.author-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
}

.author-card .eyebrow {
  margin-bottom: 8px;
}

.author-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  color: var(--blue-dark);
}

.author-card p:last-child {
  margin-bottom: 0;
  font-size: 15px;
}

.author-card a {
  color: var(--blue);
  font-weight: 700;
}

.article-cta {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.article-cta h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.12;
}

.article-cta p {
  margin: 0;
  opacity: 0.9;
}

.article-cta .btn {
  margin-top: 6px;
}

.article-cta .text-link {
  color: var(--white);
}

.insights-list .section-head h1 {
  margin-bottom: 16px;
  font-size: clamp(31px, 5vw, 58px);
  line-height: 1.02;
  color: var(--blue-dark);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  width: min(var(--maxw), 100%);
  margin: 0 auto;
}

.insight-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.insight-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 10px;
}

.insight-kicker,
.insight-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-card strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--blue-dark);
}

.insight-card p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}

.insights-cta {
  width: min(var(--maxw), 100%);
  margin: clamp(40px, 5vw, 64px) auto 0;
}

@media (max-width: 560px) {
  .author-card {
    grid-template-columns: 1fr;
  }

  .author-card img {
    width: 72px;
    height: 72px;
  }

  .page-article .site-foot {
    justify-content: center;
    text-align: center;
  }

  .page-article .site-foot p {
    text-align: center;
  }
}
