:root {
  --bg: #efefec;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --muted: #5a5a5a;
  --accent: #7b5bff;
  --accent-ink: #ffffff;
  --highlight: #e7ff5e;
  --concrete: #2b2b27;
  --concrete-2: #1a1a17;
  --cream: #f4efe6;
  --hairline: #0a0a0a1a;
  --gutter: clamp(16px, 3vw, 32px);
  --pad: clamp(40px, 6vw, 96px);
  --display: "Anton", Impact, "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  --text: ui-sans-serif, system-ui, -apple-system, "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  border-radius: 999px;
  padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }

.display {
  font-family: var(--display);
  font-stretch: condensed;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: uppercase;
  font-weight: 900;
}

.site-header {
  position: fixed;
  inset: 24px 0 auto;
  z-index: 12;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav-pill {
  pointer-events: auto;
  width: min(880px, calc(100vw - 32px));
  min-height: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 18px 54px #0a0a0a14;
}
.nav-pill > * { min-width: 0; }

.wordmark, .nav-links, .reach-link, .section-kicker, .eyebrow, .legal-row {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 13px;
}
.brand-dot {
  width: 26px;
  height: 16px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-dot svg { width: 100%; height: 100%; display: block; }
.footer-pill .brand-dot { color: var(--ink); }
.poster-monogram svg { width: 30px; height: 18px; display: block; }
.poster-monogram { padding: 5px 8px; }

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.6vw, 28px);
  color: var(--ink);
  font-size: 13px;
}
.nav-links a + a::before {
  content: "·";
  margin-right: clamp(12px, 2.6vw, 28px);
  color: var(--muted);
}

.call-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  height: 36px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.call-button:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-1px);
}
.call-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
/* footer-pill is white BG — keep call-button visible: violet outline + ink (matches nav) */

main { padding-top: 12px; }
.section-card {
  position: relative;
  overflow: hidden;
  width: calc(100% - (var(--gutter) * 2));
  margin: 12px var(--gutter);
  border-radius: 24px;
  background: var(--surface);
  padding: var(--pad);
}

/* ─── Hero ─── */
.hero-card {
  min-height: calc(100svh - 24px);
  padding-top: clamp(112px, 13vw, 150px);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.05fr);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
}
.eyebrow {
  position: static;
  grid-column: 1 / -1;
  align-self: start;
  max-width: 36ch;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
}
/* Reclaim the decorative top-left placement once the nav-pill no longer
   covers it (nav max-width is 880px centered, so it clears around 1500px). */
@media (min-width: 1500px) {
  .eyebrow {
    position: absolute;
    top: clamp(32px, 5vw, 58px);
    left: var(--pad);
    margin: 0;
  }
}

/* Editorial hero poster */
.poster {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: min(60vw, 640px);
  border-radius: 20px;
  background:
    linear-gradient(180deg, #353532 0%, #232320 70%, #1c1c19 100%);
  overflow: hidden;
  isolation: isolate;
  color: #f4efe6;
  box-shadow: 0 24px 60px -20px #0a0a0a55;
}
.poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 110%, #00000088 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 0%, #ffffff10 0%, transparent 70%);
  z-index: 1;
}
.poster-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
  mix-blend-mode: overlay;
  z-index: 6;
  pointer-events: none;
}
.poster-marks {
  position: absolute;
  inset: 18px 18px auto 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 4;
  font-family: var(--mono);
  font-size: 10px;
  color: #f4efe6cc;
}
.poster-barcode {
  display: inline-flex;
  gap: 2px;
  padding: 6px 8px;
  background: #f4efe6;
  border-radius: 3px;
}
.poster-barcode i {
  display: inline-block;
  width: 2px;
  height: 18px;
  background: #0a0a0a;
}
.poster-barcode i:nth-child(2n) { height: 14px; width: 1px; }
.poster-barcode i:nth-child(3n) { width: 3px; }
.poster-monogram {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
  padding: 6px 10px;
  background: #f4efe6;
  color: #0a0a0a;
  border-radius: 3px;
}
.poster-stack {
  position: absolute;
  inset: 22% 8% auto 8%;
  z-index: 2;
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.84;
  letter-spacing: -0.03em;
  color: #f4efe6;
}
.poster-line { margin: 0; }
.poster-line-1, .poster-line-2 {
  font-size: clamp(54px, 8.4vw, 120px);
  color: #f4efe6;
}
.poster-sub {
  margin: clamp(16px, 2.2vw, 28px) 0 0;
  font-family: var(--mono);
  font-size: clamp(11px, 0.9vw, 13px);
  line-height: 1.45;
  letter-spacing: 0.14em;
  color: #f4efe6cc;
  text-transform: uppercase;
}
.poster-tag {
  position: absolute;
  bottom: 16%;
  left: 8%;
  transform: rotate(-3deg);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--highlight);
  color: #0a0a0a;
  font-family: var(--display);
  font-size: clamp(15px, 1.5vw, 20px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 10px 26px #00000055;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.poster-tag:hover,
.poster-tag:focus-visible {
  transform: rotate(-3deg) translateY(-2px);
  box-shadow: 0 14px 36px #e7ff5e88, 0 10px 26px #00000055;
  outline: none;
}
.poster-tag-arrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.1em;
  line-height: 1;
}
.poster-anno {
  position: absolute;
  margin: 0;
  z-index: 5;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  color: #f4efe6cc;
  text-transform: uppercase;
}
.poster-anno-tl {
  top: 10%;
  right: 12%;
  max-width: 14ch;
  text-align: right;
}
.poster-anno-br {
  bottom: 14%;
  right: 8%;
  max-width: 16ch;
  text-align: right;
}
.poster-credit {
  position: absolute;
  bottom: 18px;
  left: 22px;
  margin: 0;
  z-index: 5;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #f4efe699;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: end;
  gap: clamp(18px, 3vw, 34px);
}
.hero-metrics {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 3.2vw, 42px);
  width: 100%;
}
.metric { text-align: right; }
.metric strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 68px);
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
}
.metric > span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.plus, .suffix { color: var(--accent); }
.reach-link { color: var(--ink); font-size: 14px; }
.reach-link span, .primary-cta span { color: var(--accent); }
.hero-title {
  margin: 0;
  text-align: right;
  font-size: clamp(56px, 9.5vw, 168px);
}
.hero-caption {
  grid-column: 2;
  margin: 18px 0 0;
  max-width: 38ch;
  color: var(--muted);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
  justify-self: end;
  text-align: right;
}

/* ─── Services ─── */
.services-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
}
.services-intro {
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 20px;
}

.orb {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.orb svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 30px 50px #7b5bff33);
}
.orb-label {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}
.orb-label-tl { top: 4%; left: 4%; }
.orb-label-br { bottom: 4%; right: 4%; }

.section-kicker {
  margin: 0;
  font-size: clamp(28px, 4vw, 64px);
  line-height: 0.98;
}
.service-list { display: grid; gap: 14px; }
.service-row, .approach-item {
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background: var(--surface);
}
.service-row {
  min-height: 178px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: clamp(24px, 3vw, 38px);
}
.service-row p, .approach-item p, .cta-copy p, .dark-topline p {
  margin: 0;
  color: var(--muted);
}
.mini-display {
  margin: 0 0 16px;
  font-size: clamp(30px, 4.2vw, 58px);
}
.service-row--accent, .approach-item--accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: transparent;
}
.service-row--accent p, .approach-item--accent p { color: var(--accent-ink); font-weight: 500; }
.circle-link {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--accent);
  font-size: 24px;
}
.service-row--accent .circle-link { color: var(--accent-ink); }

/* ─── Dark project band ─── */
.dark-card {
  background: var(--ink);
  color: white;
}
.dark-topline {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(260px, 40ch);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.section-title {
  margin: 0;
  font-size: clamp(40px, 6vw, 96px);
}
.dark-topline p {
  color: #f4f4f0;
  font-weight: 500;
}
/* ─── Cinematic reel (replaces former .video-still) ─── */
.reel {
  margin-top: clamp(36px, 5vw, 72px);
  display: grid;
  gap: 18px;
}
.reel-frame {
  position: relative;
  aspect-ratio: 21 / 9;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(110% 80% at 22% 18%, #7b5bff55 0%, transparent 55%),
    radial-gradient(70% 60% at 80% 78%, #ff7a3c33 0%, transparent 60%),
    radial-gradient(120% 100% at 50% 50%, #1a1a18 0%, #050505 75%);
  border: 1px solid #ffffff18;
  color: #f4efe6;
  font-family: var(--mono);
}
.reel-flare {
  position: absolute;
  inset: -30% -10% auto auto;
  width: 70%;
  height: 140%;
  background: conic-gradient(from 200deg at 70% 30%,
    #ff7a3c00 0deg,
    #ff7a3c44 30deg,
    #ffd28a55 60deg,
    #7b5bff44 110deg,
    #ff7a3c00 180deg);
  filter: blur(40px);
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
  animation: reel-drift 14s ease-in-out infinite alternate;
}
@keyframes reel-drift {
  0%   { transform: translate(0,0) scale(1); opacity: 0.6; }
  50%  { transform: translate(-3%, 2%) scale(1.08); opacity: 0.9; }
  100% { transform: translate(2%, -1%) scale(1.03); opacity: 0.7; }
}
.reel-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 100% at 50% 50%, transparent 45%, #000000aa 100%),
    linear-gradient(180deg, transparent 70%, #000000cc 100%);
  z-index: 1;
}
.reel-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    #ffffff05 3px,
    #ffffff05 4px
  );
  mix-blend-mode: overlay;
}
.reel-scanline::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 22%;
  background: linear-gradient(to bottom, transparent, #ffffff14 50%, transparent);
  animation: reel-sweep 6.5s linear infinite;
}
@keyframes reel-sweep {
  0%   { top: -25%; }
  100% { top: 110%; }
}
.reel-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* corner brackets */
.reel-bracket {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: #f4efe6;
  border-style: solid;
  border-width: 0;
  z-index: 3;
}
.reel-bracket--tl { top: 18px; left: 22px; border-top-width: 2px; border-left-width: 2px; }
.reel-bracket--tr { top: 18px; right: 22px; border-top-width: 2px; border-right-width: 2px; }
.reel-bracket--bl { bottom: 86px; left: 22px; border-bottom-width: 2px; border-left-width: 2px; }
.reel-bracket--br { bottom: 86px; right: 22px; border-bottom-width: 2px; border-right-width: 2px; }

/* HUD labels */
.reel-hud {
  position: absolute;
  z-index: 4;
  font-family: var(--mono);
  font-size: clamp(10px, 0.85vw, 12px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f4efe6cc;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.reel-hud--tl { top: 26px; left: 56px; }
.reel-hud--tr { top: 26px; right: 56px; }
.reel-hud--bl { bottom: 94px; left: 56px; }
.reel-hud--br { bottom: 94px; right: 56px; }
.reel-rec {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 12px #ff3b30aa;
  animation: reel-pulse 1.3s ease-in-out infinite;
}
@keyframes reel-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.85); }
}
.reel-tc::before { content: "TC "; opacity: 0.55; }

/* center serif statement */
.reel-center {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 0 6%;
  pointer-events: none;
}
.reel-overline {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: clamp(10px, 0.85vw, 12px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f4efe699;
}
.reel-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #f4efe6;
  text-shadow: 0 12px 60px #0008;
  background: linear-gradient(180deg, #ffffff 0%, #d8d4c8 60%, #8a8678 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reel-sub {
  margin: 16px 0 0;
  font-family: var(--mono);
  font-size: clamp(10px, 0.85vw, 12px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f4efe6aa;
}

/* play button */
.play-button {
  position: absolute;
  inset: auto auto 110px 50%;
  transform: translateX(-50%);
  width: clamp(68px, 6.4vw, 96px);
  height: clamp(68px, 6.4vw, 96px);
  border: 1px solid #ffffff55;
  border-radius: 50%;
  background: #ffffff10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 18px 50px #0009, inset 0 0 0 1px #ffffff10;
  transition: transform 0.3s ease, background 0.3s ease;
}
.play-button::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid #ffffff22;
  animation: reel-ring 2.6s ease-out infinite;
}
@keyframes reel-ring {
  0%   { transform: scale(1);   opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}
.play-button:hover {
  transform: translateX(-50%) scale(1.06);
  background: #ffffff20;
}
.play-button span {
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  margin-left: 42%;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #f4efe6;
}
/* paused-state shows pause glyph (two vertical bars) */
.play-button.is-playing span {
  width: 6px;
  height: 24px;
  margin: 0 auto;
  background: #f4efe6;
  box-shadow: 12px 0 0 #f4efe6;
  border: 0;
  transform: translateX(-6px);
}

/* waveform */
.reel-wave {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 56px;
  z-index: 4;
  display: flex;
  gap: 4px;
  height: 22px;
  align-items: center;
  opacity: 0.7;
}
.reel-wave span {
  flex: 1;
  background: #f4efe6;
  border-radius: 2px;
  animation: reel-bar 1.4s ease-in-out infinite;
}
.reel-wave span:nth-child(1)  { animation-delay: 0s;    height: 30%; }
.reel-wave span:nth-child(2)  { animation-delay: 0.05s; height: 55%; }
.reel-wave span:nth-child(3)  { animation-delay: 0.1s;  height: 40%; }
.reel-wave span:nth-child(4)  { animation-delay: 0.15s; height: 70%; }
.reel-wave span:nth-child(5)  { animation-delay: 0.2s;  height: 25%; }
.reel-wave span:nth-child(6)  { animation-delay: 0.25s; height: 60%; }
.reel-wave span:nth-child(7)  { animation-delay: 0.3s;  height: 80%; }
.reel-wave span:nth-child(8)  { animation-delay: 0.35s; height: 45%; }
.reel-wave span:nth-child(9)  { animation-delay: 0.4s;  height: 35%; }
.reel-wave span:nth-child(10) { animation-delay: 0.45s; height: 65%; }
.reel-wave span:nth-child(11) { animation-delay: 0.5s;  height: 90%; }
.reel-wave span:nth-child(12) { animation-delay: 0.55s; height: 50%; }
.reel-wave span:nth-child(13) { animation-delay: 0.6s;  height: 30%; }
.reel-wave span:nth-child(14) { animation-delay: 0.65s; height: 75%; }
.reel-wave span:nth-child(15) { animation-delay: 0.7s;  height: 40%; }
.reel-wave span:nth-child(16) { animation-delay: 0.75s; height: 55%; }
.reel-wave span:nth-child(17) { animation-delay: 0.8s;  height: 65%; }
.reel-wave span:nth-child(18) { animation-delay: 0.85s; height: 25%; }
.reel-wave span:nth-child(19) { animation-delay: 0.9s;  height: 45%; }
.reel-wave span:nth-child(20) { animation-delay: 0.95s; height: 85%; }
.reel-wave span:nth-child(21) { animation-delay: 1.0s;  height: 30%; }
.reel-wave span:nth-child(22) { animation-delay: 1.05s; height: 60%; }
.reel-wave span:nth-child(23) { animation-delay: 1.1s;  height: 70%; }
.reel-wave span:nth-child(24) { animation-delay: 1.15s; height: 40%; }
.reel-wave span:nth-child(25) { animation-delay: 1.2s;  height: 55%; }
.reel-wave span:nth-child(26) { animation-delay: 1.25s; height: 25%; }
.reel-wave span:nth-child(27) { animation-delay: 1.3s;  height: 80%; }
.reel-wave span:nth-child(28) { animation-delay: 1.35s; height: 35%; }
.reel-wave span:nth-child(29) { animation-delay: 1.4s;  height: 65%; }
.reel-wave span:nth-child(30) { animation-delay: 1.45s; height: 45%; }
.reel-wave span:nth-child(31) { animation-delay: 1.5s;  height: 30%; }
.reel-wave span:nth-child(32) { animation-delay: 1.55s; height: 70%; }
.reel-wave span:nth-child(33) { animation-delay: 1.6s;  height: 55%; }
.reel-wave span:nth-child(34) { animation-delay: 1.65s; height: 90%; }
.reel-wave span:nth-child(35) { animation-delay: 1.7s;  height: 40%; }
.reel-wave span:nth-child(36) { animation-delay: 1.75s; height: 60%; }
.reel-wave span:nth-child(37) { animation-delay: 1.8s;  height: 25%; }
.reel-wave span:nth-child(38) { animation-delay: 1.85s; height: 50%; }
.reel-wave span:nth-child(39) { animation-delay: 1.9s;  height: 35%; }
.reel-wave span:nth-child(40) { animation-delay: 1.95s; height: 65%; }
@keyframes reel-bar {
  0%, 100% { transform: scaleY(0.55); opacity: 0.7; }
  50%      { transform: scaleY(1.1);  opacity: 1; }
}

/* scrub bar */
.reel-scrub {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 28px;
  height: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
}
.reel-scrub-track {
  position: absolute;
  left: 44px;
  right: 44px;
  height: 2px;
  background: #f4efe620;
}
.reel-scrub {
  cursor: pointer;
}
.reel-scrub-fill {
  position: absolute;
  left: 44px;
  height: 2px;
  background: var(--accent);
  width: 0;
  transition: width 0.12s linear;
  pointer-events: none;
}
.reel-scrub-head {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px #7b5bff33, 0 0 18px #7b5bff;
  top: 50%;
  left: 44px;
  transform: translate(-50%, -50%);
  transition: left 0.12s linear;
  pointer-events: none;
}
.reel-scrub-time {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #f4efe699;
}
.reel-scrub-time--start { left: 0; }
.reel-scrub-time--end   { right: 0; }

/* filmstrip */
.reel-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 12px;
  background: #0a0a0a;
  border: 1px solid #ffffff14;
  border-radius: 14px;
}
.reel-cell {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #161614;
  aspect-ratio: 3 / 2;
  cursor: pointer;
  transition: transform 0.3s ease, outline-color 0.3s ease;
  outline: 1px solid #ffffff10;
  outline-offset: -1px;
}
.reel-cell:hover {
  transform: translateY(-2px);
  outline-color: var(--accent);
}
.reel-cell svg {
  width: 100%;
  height: 70%;
  display: block;
}
.reel-cell-num {
  position: absolute;
  top: 6px;
  left: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #f4efe6cc;
  background: #00000088;
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 2;
}
.reel-cell-label {
  margin: 0;
  padding: 6px 10px 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f4efe6cc;
  background: #0a0a0a;
}
/* paused state — freeze ambient motion (scrub is JS-driven, untouched) */
.reel-frame[data-state="paused"] .reel-wave span,
.reel-frame[data-state="paused"] .reel-flare,
.reel-frame[data-state="paused"] .reel-scanline::after,
.reel-frame[data-state="paused"] .reel-rec,
.reel-frame[data-state="paused"] .play-button::before {
  animation-play-state: paused;
}

/* chapter list */
.reel-chapters {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4efe6aa;
}
.reel-chapters li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #ffffff14;
}
.reel-chapters span { color: var(--accent); font-weight: 500; }
.reel-chapters b   { font-weight: 400; color: #f4efe6; font-style: normal; letter-spacing: 0.06em; text-transform: none; }
.reel-chapters i   { font-style: normal; color: #f4efe666; }

@media (max-width: 820px) {
  .reel-frame { aspect-ratio: 4 / 3; }
  .reel-bracket--bl, .reel-bracket--br,
  .reel-hud--bl, .reel-hud--br { display: none; }
  .reel-wave  { left: 24px; right: 24px; bottom: 50px; }
  .reel-scrub { left: 24px; right: 24px; bottom: 18px; }
  .play-button { bottom: 80px; }
  .reel-strip    { grid-template-columns: repeat(3, 1fr); }
  .reel-chapters { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reel-flare, .reel-scanline::after, .reel-rec,
  .reel-wave span, .reel-scrub-fill, .reel-scrub-head,
  .play-button::before { animation: none !important; }
  .reel-scrub-fill { width: 35%; }
  .reel-scrub-head { left: calc(35% + 44px); }
}

/* ─── Approach ─── */
.section-heading-right {
  max-width: 820px;
  margin-left: auto;
  text-align: right;
}
.section-heading-right .eyebrow {
  position: static;
  max-width: none;
  margin: 0 0 16px;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(36px, 5vw, 72px);
}
.approach-item {
  min-height: 460px;
  padding: clamp(24px, 3vw, 38px);
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
}
.approach-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 240px;
  margin-bottom: 24px;
}
.approach-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}
.approach-num {
  position: absolute;
  top: -4px;
  right: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 84px);
  line-height: 1;
  color: #0a0a0a0d;
  letter-spacing: -0.02em;
}
.approach-item--accent .approach-num { color: #ffffff33; }
.approach-item--accent .approach-visual svg path[stroke="#0a0a0a"],
.approach-item--accent .approach-visual svg circle[stroke="#0a0a0a"],
.approach-item--accent .approach-visual svg line[stroke="#0a0a0a"],
.approach-item--accent .approach-visual svg rect[stroke="#0a0a0a"] {
  stroke: #ffffff;
}

/* ─── CTA ─── */
.cta-card {
  min-height: 720px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.cta-halo {
  position: absolute;
  inset: -8% 18% auto;
  height: min(56vw, 520px);
  z-index: 0;
  pointer-events: none;
}
.cta-halo svg { width: 100%; height: 100%; display: block; }
.cta-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 42ch);
  align-items: end;
  gap: clamp(28px, 6vw, 90px);
  margin-top: clamp(220px, 26vw, 320px);
}
.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  margin-top: 28px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px #7b5bff55;
}
.primary-cta span { color: white; }

/* ─── Footer ─── */
.footer-card {
  background: var(--ink);
  color: white;
  padding: clamp(30px, 5vw, 56px);
}
.footer-pill {
  width: 100%;
  background: white;
  color: var(--ink);
  box-shadow: none;
}
.legal-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  color: #ffffffb8;
  font-size: 12px;
}
.legal-row p { margin: 0; }
.legal-row div { display: flex; gap: 18px; }
.legal-row a { color: inherit; text-decoration: none; }
.legal-row a:hover { color: var(--highlight); }

/* ─── Legal pages (privacy / terms / cookies) ─── */
.legal-card {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(96px, 12vw, 160px) clamp(24px, 6vw, 96px) clamp(56px, 8vw, 120px);
  border-radius: 28px;
  margin: clamp(12px, 2vw, 24px);
  position: relative;
  overflow: hidden;
}
.legal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% -10%, #e7ff5e22, transparent 55%),
              radial-gradient(circle at -10% 110%, #7b5bff14, transparent 60%);
  pointer-events: none;
}
.legal-card > * { position: relative; z-index: 1; }
.legal-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  border-bottom: 1px solid #0a0a0a18;
  padding-bottom: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(32px, 5vw, 64px);
}
.legal-head .eyebrow { color: #0a0a0a99; }
.legal-head h1 {
  font-family: var(--display);
  font-size: clamp(48px, 10vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
  text-transform: uppercase;
}
.legal-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a99;
  text-align: right;
  line-height: 1.6;
}
.legal-body {
  display: grid;
  grid-template-columns: minmax(0, 22ch) minmax(0, 70ch);
  gap: clamp(28px, 5vw, 80px);
  font-size: 15px;
  line-height: 1.7;
}
.legal-body section { margin-bottom: clamp(28px, 4vw, 48px); }
.legal-body h2 {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.legal-body h3 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0a99;
  margin: 20px 0 6px;
}
.legal-body p { margin: 0 0 12px; }
.legal-body ul { padding-left: 18px; margin: 0 0 12px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 16px;
  font-size: 13px;
  font-family: var(--mono);
  border: 1px solid #0a0a0a22;
}
.legal-table th, .legal-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #0a0a0a14;
  vertical-align: top;
}
.legal-table th {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #0a0a0a08;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table code { font-size: 12px; background: #0a0a0a0d; padding: 2px 6px; border-radius: 4px; }
@media (max-width: 600px) {
  .legal-table { font-size: 12px; }
  .legal-table th, .legal-table td { padding: 8px 8px; }
  .legal-table thead { display: none; }
  .legal-table tr { display: block; border-bottom: 1px solid #0a0a0a22; padding: 8px 0; }
  .legal-table td { display: block; border: none; padding: 4px 8px; }
  .legal-table td::before { content: attr(data-label); font-weight: bold; }
}
.legal-toc {
  position: sticky;
  top: 120px;
  align-self: start;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 2;
}
.legal-toc a { color: #0a0a0a; text-decoration: none; display: block; opacity: 0.7; }
.legal-toc a:hover { opacity: 1; color: var(--accent); }
.legal-toc strong {
  display: block;
  color: #0a0a0a99;
  margin-bottom: 12px;
  font-weight: 500;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  margin-top: clamp(40px, 6vw, 72px);
  padding: 12px 18px;
  border: 1px solid #0a0a0a;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}
.legal-back:hover { background: var(--ink); color: var(--cream); }
@media (max-width: 900px) {
  .legal-card {
    padding: clamp(120px, 22vw, 160px) clamp(20px, 6vw, 96px) clamp(48px, 8vw, 120px);
    margin: 8px;
  }
  .legal-body { grid-template-columns: 1fr; gap: 24px; font-size: 14.5px; }
  .legal-toc { position: relative; top: 0; line-height: 1.8; }
  .legal-head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .legal-head h1 { font-size: clamp(44px, 13vw, 96px); line-height: 0.92; }
  .legal-body h2 { font-size: clamp(20px, 5vw, 26px); }
  .legal-meta { text-align: left; }
}
@media (max-width: 480px) {
  .legal-card { padding-top: 132px; border-radius: 22px; }
  .legal-head { padding-bottom: 24px; margin-bottom: 28px; }
  .legal-head h1 { font-size: clamp(40px, 14vw, 72px); }
  .legal-back { width: 100%; justify-content: center; box-sizing: border-box; }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .nav-pill {
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    width: min(720px, calc(100vw - 24px));
  }
  .nav-links { display: none; }
  .hero-card {
    min-height: auto;
    padding-top: clamp(96px, 22vw, 140px);
    padding-bottom: clamp(40px, 8vw, 80px);
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vw, 64px);
    align-items: start;
  }
  .services-card, .dark-topline, .cta-copy { grid-template-columns: 1fr; }
  .hero-content { justify-items: start; }
  .hero-title, .metric, .section-heading-right { text-align: left; }
  .hero-metrics { justify-content: flex-start; flex-wrap: wrap; }
  .hero-caption { position: static; grid-column: 1; text-align: left; justify-self: start; }
  .services-intro { min-height: auto; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-item { min-height: auto; padding: clamp(28px, 6vw, 48px); }
  .approach-visual { max-height: 220px; }
  .cta-card { min-height: auto; padding-top: clamp(160px, 28vw, 280px); }
  .cta-halo { position: relative; inset: auto; height: clamp(220px, 50vw, 360px); margin: 0 auto clamp(24px, 4vw, 48px); width: 100%; }
  .poster { aspect-ratio: 4 / 5; min-height: auto; }
  .footer-pill { width: 100%; }
  .footer-card { padding: clamp(20px, 5vw, 40px); }
}

.call-button { flex: 0 0 auto; justify-self: end; }
.nav-pill .call-button,
.footer-pill .call-button { margin-left: auto; }

@media (max-width: 480px) {
  body { font-size: 16px; }
  :root { --gutter: 10px; --pad: 22px; }
  .section-card { border-radius: 18px; margin-block: 10px; padding: clamp(22px, 7vw, 36px); }
  .hero-card { padding-top: 96px; padding-bottom: 48px; gap: 40px; }
  .eyebrow { position: static; max-width: none; margin-bottom: 24px; }
  .poster { aspect-ratio: 4 / 5.5; }
  .poster-stack { inset: 18% 7% auto 7%; }
  .poster-line-1, .poster-line-2 { font-size: clamp(56px, 17vw, 96px); }
  .poster-sub { font-size: 11px; margin-top: 14px; }
  .poster-tag { font-size: 12px; padding: 7px 14px; bottom: 18%; left: 7%; }
  .poster-anno { font-size: 9px; }
  .poster-anno-tl { top: 16%; right: 8%; max-width: 11ch; }
  .poster-anno-br { bottom: 8%; right: 7%; max-width: 12ch; }
  .poster-credit { font-size: 8px; bottom: 14px; left: 16px; }
  .poster-marks { inset: 14px 14px auto 14px; }
  .poster-monogram { font-size: 18px; padding: 4px 8px; }
  .hero-title { font-size: clamp(56px, 17vw, 96px); text-align: left; }
  .hero-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
  .metric { text-align: left; }
  .metric strong { font-size: clamp(32px, 11vw, 52px); }
  .service-row { grid-template-columns: 1fr; gap: 20px; padding: clamp(22px, 6vw, 32px); }
  .circle-link { justify-self: start; }
  .section-title { font-size: clamp(40px, 12vw, 72px); }
  .section-heading-right { text-align: left; max-width: none; }
  .orb { max-width: 280px; margin: 0 auto 28px; }
  .orb-label-tl, .orb-label-br { font-size: 9px; }
  /* push labels outside the sphere on mobile so they don't visually touch it */
  .orb-label-tl { top: -18px; left: 0; }
  .orb-label-br { bottom: -18px; right: 0; }
  /* tighten cta star halo on mobile — at desktop sizes the page is dense
     around it, on mobile the in-flow placement opens too much empty room */
  .cta-card { padding-top: clamp(40px, 10vw, 80px); }
  .cta-halo { height: clamp(120px, 30vw, 200px); margin: 0 auto; }
  .cta-copy { margin-top: clamp(8px, 3vw, 24px); }
  .approach-num { font-size: clamp(96px, 26vw, 140px) !important; }

  /* reel mobile tightening */
  .reel-frame { aspect-ratio: 4 / 3.4; }
  .reel-center { padding: 0 8% 64px; align-content: center; }
  .reel-title { font-size: clamp(48px, 14vw, 72px); }
  .reel-overline, .reel-sub { font-size: 9px; letter-spacing: 0.18em; }
  .reel-overline { margin-bottom: 8px; }
  .reel-sub { margin-top: 10px; }
  .reel-hud { font-size: 8px; letter-spacing: 0.12em; }
  .reel-hud--tl { top: 14px; left: 38px; }
  .reel-hud--tr { top: 14px; right: 24px; }
  .reel-bracket { width: 16px; height: 16px; }
  .reel-bracket--tl { top: 10px; left: 12px; }
  .reel-bracket--tr { top: 10px; right: 12px; }
  .play-button { bottom: 68px; width: 52px; height: 52px; }
  .play-button.is-playing span { height: 18px; width: 5px; box-shadow: 9px 0 0 #f4efe6; transform: translateX(-4.5px); }
  .reel-wave { left: 14px; right: 14px; bottom: 46px; height: 16px; gap: 3px; }
  .reel-scrub { left: 14px; right: 14px; bottom: 14px; }
  .reel-scrub-track { left: 34px; right: 34px; }
  .reel-scrub-fill { left: 34px; }
  .reel-scrub-time { font-size: 9px; }
  .reel-strip { grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 8px; }
  .reel-chapters { grid-template-columns: 1fr; gap: 0; font-size: 10px; }
  .reel-chapters li { padding: 8px 4px; }

  /* footer */
  .legal-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .legal-row div { flex-wrap: wrap; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* ─── Cookie consent banner ─── */
.cookie-banner {
  position: fixed;
  left: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  z-index: 1000;
  background: var(--ink);
  color: var(--cream);
  border-radius: 22px;
  box-shadow: 0 24px 64px #00000080, 0 0 0 1px #ffffff14;
  padding: clamp(18px, 2.4vw, 28px) clamp(20px, 3vw, 36px);
  font-family: var(--text);
  font-size: 14px;
  line-height: 1.55;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), opacity 0.45s ease;
  max-width: 1080px;
  margin: 0 auto;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
}
.cookie-banner-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--highlight);
  margin: 0 0 6px;
}
.cookie-banner-text { margin: 0; color: #ffffffd0; max-width: 62ch; }
.cookie-banner-text a { color: var(--highlight); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.cookie-btn {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.cookie-btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: #ffffff3a;
}
.cookie-btn-ghost:hover { border-color: var(--highlight); color: var(--highlight); }
.cookie-btn-primary {
  background: var(--highlight);
  color: var(--ink);
}
.cookie-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px #e7ff5e55;
}
.cookie-prefs {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #ffffff1f;
}
.cookie-prefs[hidden] { display: none; }
.cookie-toggle {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #ffffffd0;
  cursor: pointer;
}
.cookie-toggle input { accent-color: var(--highlight); margin-top: 2px; }
.cookie-toggle strong { color: var(--cream); }
.cookie-btn-save { align-self: flex-end; margin-top: 6px; }

@media (max-width: 960px) {
  .cookie-banner {
    padding: 18px 18px;
    border-radius: 18px;
    font-size: 13px;
  }
  .cookie-banner-inner { grid-template-columns: 1fr; gap: 14px; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-btn { flex: 1 1 auto; padding: 11px 14px; font-size: 12px; }
  .cookie-btn-save { align-self: stretch; }
}

/* ─── JS-driven reveals (replaces GSAP ScrollTrigger) ─── */
@media (prefers-reduced-motion: no-preference) {
  .section-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1);
    will-change: opacity, transform;
  }
  .section-card.is-visible {
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}
.nav-pill {
  transition: padding 0.24s ease, min-height 0.24s ease;
}
.nav-pill.is-compact {
  padding-top: 8px;
  padding-bottom: 8px;
  min-height: 46px;
}
