/* ==========================================================================
   WEEBIE — Showcase gallery index
   Bright azure frame around six deep-mood worlds. The contrast is the pitch.
   ========================================================================== */

:root {
  --azure: #0db2f9;
  --azure-dim: #0a93d1;
  --azure-ink: #0a72a6;
  --cyan: #57d8e6;
  --bg: #fbfcfe;
  --surface: #f4f4f4;
  --surface-2: #eef2f6;
  --ink: #111111;
  --navy: #06112a;
  --muted: #55606b;
  --faint: #66707b;
  --line: #e4e8ec;
  --line-2: #d6dce2;
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "Space Grotesk", ui-monospace, "SFMono-Regular", monospace;

  --shadow-card: 0 1px 2px rgba(6,17,42,.04), 0 18px 40px -24px rgba(6,17,42,.22);
  --shadow-lift: 0 2px 6px rgba(6,17,42,.06), 0 40px 80px -40px rgba(6,17,42,.34);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --pad: clamp(20px, 5vw, 76px);
  --maxw: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--azure); color: var(--white); }

:focus-visible { outline: 2px solid var(--azure-ink); outline-offset: 3px; border-radius: 3px; }

.skip {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--navy); color: var(--white);
  padding: 10px 18px; border-radius: 10px; font-size: 14px; font-weight: 500;
  transition: top .2s var(--ease);
}
.skip:focus { top: 16px; }

/* ---------- reveal system (visible by default; hidden only once motion confirmed) ---------- */
/* will-change is scoped to the hidden/animating state only, then JS clears it onComplete */
html.wb-premotion .reveal,
body.gsap-ready .reveal { opacity: 0; transform: translateY(22px); will-change: transform, opacity; }
html.wb-premotion .reveal-panel,
body.gsap-ready .reveal-panel { opacity: 0; transform: translateY(30px) scale(.99); will-change: transform, opacity; }

/* LCP exemption — the hero headline must paint immediately; it only settles in from a small offset, never hides */
html.wb-premotion .hero__title .reveal,
body.gsap-ready .hero__title .reveal { opacity: 1; transform: translateY(26px); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.is-stuck {
  padding-top: 12px; padding-bottom: 12px;
  background: rgba(251,252,254,.78);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 600; font-size: 26px; letter-spacing: -.02em; color: var(--ink);
  font-optical-sizing: auto;
}
.nav__brand span { color: var(--azure); }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 3vw, 38px); }
.nav__links > a {
  font-size: 15px; font-weight: 500; color: var(--muted);
  transition: color .2s var(--ease);
}
.nav__links > a:hover { color: var(--ink); }
.nav__cta {
  padding: 10px 20px; border-radius: 999px;
  background: var(--ink); color: var(--white) !important;
  font-weight: 500 !important;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.nav__cta:hover {
  background: var(--azure-ink);
  box-shadow: 0 10px 24px -10px rgba(13,178,249,.6);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 128px var(--pad) 0;
}
.hero__aurora { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
/* directional corner sheen — a quiet raking light from the top-right (layer 3: directional accent) */
.hero__aurora::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(203deg, rgba(13,178,249,.10) 0%, rgba(13,178,249,0) 34%);
}
/* fine grain — breaks the gradient banding so the light reads as material, never a clean AI orb */
.hero__aurora::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
/* soft corner light — two quiet washes, softened so azure reads as light, not a saturated glow */
.wash { position: absolute; border-radius: 50%; filter: blur(66px); pointer-events: none; }
.wash--a {
  width: 46vw; height: 42vw; min-width: 380px; min-height: 360px; top: -15vw; right: -9vw;
  background: radial-gradient(circle, rgba(13,178,249,.22), transparent 66%);
}
.wash--b {
  width: 38vw; height: 38vw; min-width: 320px; min-height: 320px; bottom: -8vw; left: -10vw;
  background: radial-gradient(circle, rgba(87,216,230,.17), transparent 64%);
}
/* bespoke motif — the pulse: a faint ECG hairline with one bright signal running through it
   ("Websites with a pulse.") — threaded again through the Approach band + footer tag */
.hero__pulse {
  position: absolute; left: 0; right: 0; bottom: clamp(118px, 20vh, 224px);
  width: 100%; height: clamp(78px, 12vh, 128px); overflow: visible;
}
.pulse-base {
  fill: none; stroke: rgba(13,178,249,.15); stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.pulse-run {
  fill: none; stroke: url(#pulseGrad); stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 150 1600; stroke-dashoffset: 1600;
  filter: drop-shadow(0 0 5px rgba(87,216,230,.5));
  animation: pulserun 5.4s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes pulserun {
  0%   { stroke-dashoffset: 1600; }
  60%  { stroke-dashoffset: -150; }
  100% { stroke-dashoffset: -150; }
}

.hero__inner {
  position: relative; z-index: 2; max-width: var(--maxw); width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  align-items: center; gap: clamp(24px, 5vw, 76px);
}
.hero__text { min-width: 0; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--azure-ink);
  margin-bottom: 26px;
}
.hero__eyebrow i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--azure);
  box-shadow: 0 0 0 4px rgba(13,178,249,.16);
}
.hero__title {
  font-family: var(--font-display); font-optical-sizing: auto;
  font-weight: 400; font-size: clamp(44px, 8.4vw, 116px);
  line-height: .96; letter-spacing: -.035em; color: var(--ink);
  margin-bottom: 30px;
}
.hero__title span { display: block; }
.hero__title em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(100deg, var(--azure) 10%, var(--cyan) 92%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__lede {
  max-width: 46ch; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.62;
  color: var(--muted); margin-bottom: 34px;
}
.hero__meta {
  display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .12em; color: var(--ink);
  padding: 12px 20px; border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(255,255,255,.6);
}
.hero__meta i { width: 4px; height: 4px; border-radius: 50%; background: var(--azure); }
.hero__cue {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 40px; margin-left: 4px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color .2s var(--ease), gap .25s var(--ease);
}
.hero__cue svg { animation: nudge 2.4s var(--ease) infinite; }
.hero__cue:hover { color: var(--ink); gap: 12px; }
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ---------- hero deck — the work, fanned into the hero (decorative; real links live below) ---------- */
.hero__stack {
  position: relative; min-width: 0; justify-self: end;
  width: 100%; max-width: 460px; aspect-ratio: 4 / 4.35;
  perspective: 1200px;
}
.hstack__card {
  position: absolute; display: block; overflow: hidden;
  width: 63%; aspect-ratio: 16 / 11; border-radius: 15px;
  border: 1px solid rgba(255,255,255,.8);
  background: var(--surface); box-shadow: var(--shadow-lift);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
  will-change: transform;
}
.hstack__card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hstack__card::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px; z-index: 2;
  background: var(--edge); border-radius: 15px 15px 0 0;
}
.hstack__card::after {
  content: ""; position: absolute; inset: 0; z-index: 1; border-radius: 15px;
  box-shadow: inset 0 0 0 1px rgba(6,17,42,.06);
}
.hstack__tag {
  position: absolute; left: 9px; bottom: 9px; z-index: 3;
  font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .09em;
  color: var(--ink); background: rgba(255,255,255,.9);
  padding: 4px 9px; border-radius: 999px;
  box-shadow: 0 4px 12px -6px rgba(6,17,42,.42);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.hstack__card { --px: 0px; --py: 0px; }
.hstack__card--4 { top: 1%;  right: 5%; transform: translate(var(--px), var(--py)) rotate(6deg);  z-index: 1; }
.hstack__card--3 { top: 20%; left: 1%;  transform: translate(var(--px), var(--py)) rotate(-5deg); z-index: 2; }
.hstack__card--2 { top: 40%; right: 2%; transform: translate(var(--px), var(--py)) rotate(4deg);  z-index: 3; }
.hstack__card--1 { top: 59%; left: 5%;  transform: translate(var(--px), var(--py)) rotate(-3deg); z-index: 4; }
.hstack__card:hover {
  transform: translate(var(--px), var(--py)) rotate(0deg) scale(1.045); z-index: 6;
  box-shadow: 0 44px 90px -34px rgba(6,17,42,.5);
}

.hero__ribbon {
  position: relative; z-index: 2; margin-top: auto;
  padding: 26px 0 22px; overflow: hidden;
  border-top: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ribbon__track {
  display: inline-flex; align-items: center; gap: 30px; white-space: nowrap;
  will-change: transform; animation: ribbon 34s linear infinite;
}
.ribbon__track span {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 3.4vw, 34px); opacity: .52;
  transition: opacity .3s var(--ease);
}
.ribbon__track i { width: 6px; height: 6px; border-radius: 50%; background: var(--azure); opacity: .5; }
@keyframes ribbon { to { transform: translateX(-50%); } }

/* ==========================================================================
   WORLDS
   ========================================================================== */
.worlds { padding: clamp(80px, 12vw, 148px) var(--pad) clamp(60px, 9vw, 110px); }
.worlds__head { max-width: var(--maxw); margin: 0 auto clamp(48px, 7vw, 84px); }
.kicker {
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--azure-ink);
  margin-bottom: 18px; display: inline-flex; align-items: center; gap: 10px;
}
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--azure); }
.worlds__title {
  font-family: var(--font-display); font-optical-sizing: auto;
  font-weight: 400; font-size: clamp(32px, 5vw, 62px); line-height: 1.02;
  letter-spacing: -.03em; color: var(--ink); max-width: 15ch;
}
.worlds__sub { margin-top: 20px; max-width: 52ch; font-size: clamp(15px, 1.4vw, 18px); color: var(--muted); }

.grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 56px) clamp(28px, 3.5vw, 48px);
}
.world:nth-child(even) { margin-top: clamp(0px, 7vw, 72px); }

.world {
  position: relative;
  display: flex; flex-direction: column;
}
.world__frame {
  position: relative; display: block; overflow: hidden;
  border-radius: 18px; border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  aspect-ratio: 16 / 10;
}
.world__frame::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.world__frame::after {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px; z-index: 3;
  background: linear-gradient(90deg, var(--w1), var(--w2));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out);
}
.world__frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform .7s var(--ease-out), filter .5s var(--ease);
  filter: saturate(1.02);
}
.world__frame:hover {
  transform: translateY(-7px);
  box-shadow: 0 2px 6px rgba(6,17,42,.05), 0 46px 86px -44px rgba(var(--wglow, 6,17,42), .42);
}
.world__frame:hover img { transform: scale(1.035); }
.world__frame:hover::after { transform: scaleX(1); }
.world__frame:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 2px 6px rgba(6,17,42,.05), 0 46px 86px -44px rgba(var(--wglow, 6,17,42), .42);
}
.world__frame:focus-visible::after { transform: scaleX(1); }

.world__body { padding: 22px 4px 0; }
.world__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.world__no {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: .1em; color: var(--faint);
}
.world__dots { display: inline-flex; gap: 6px; }
.world__dots i {
  width: 15px; height: 15px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(6,17,42,.14), 0 1px 2px rgba(6,17,42,.12);
}
/* Each name wears its own world's real typeface + signature ink — six logos, not six labels */
.world__name {
  position: relative; display: inline-block;
  font-family: var(--wfont, var(--font-display)); font-optical-sizing: auto;
  font-weight: var(--wweight, 500); font-size: clamp(24px, 2.5vw, 32px); letter-spacing: -.01em;
  color: var(--wink, var(--ink)); line-height: 1.08; padding-bottom: 3px;
}
.world__name::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--wink, var(--azure)); border-radius: 2px; opacity: .55;
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.world:hover .world__name::after,
.world:focus-within .world__name::after { transform: scaleX(1); }
.world__vert {
  font-size: 13.5px; font-weight: 500; color: var(--wink, var(--azure-ink));
  letter-spacing: .01em; margin-top: 6px;
}
.world__idea {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(15px, 1.5vw, 18px); color: var(--muted); line-height: 1.45;
  margin-top: 12px;
}
.world__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line);
}
.world__type {
  display: inline-flex; align-items: baseline; gap: 7px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .02em; color: var(--muted);
}
.world__type b {
  font-weight: 500; font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--azure-ink);
}
.world__enter {
  display: inline-flex; align-items: center; gap: 6px; flex: none;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.world__enter svg { color: var(--wink, var(--azure)); transition: transform .25s var(--ease); }
.world:hover .world__enter,
.world:focus-within .world__enter { color: var(--wink, var(--azure-ink)); gap: 9px; }
.world:hover .world__enter svg,
.world:focus-within .world__enter svg { transform: translate(2px, -2px); }

/* ==========================================================================
   APPROACH — the one dark moment (navy), for contrast
   ========================================================================== */
.approach {
  position: relative; overflow: hidden;
  background: var(--navy); color: var(--white);
  padding: clamp(72px, 11vw, 132px) var(--pad);
  border-radius: clamp(24px, 4vw, 40px);
  margin: 0 clamp(8px, 2vw, 24px);
}
.approach__wash {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(13,178,249,.22), transparent 62%),
    radial-gradient(50% 70% at 0% 100%, rgba(87,216,230,.14), transparent 60%);
}
/* the pulse again — same motif, threaded through the dark band low and faint */
.approach__pulse {
  position: absolute; left: 0; right: 0; bottom: clamp(30px, 7vw, 68px);
  width: 100%; height: clamp(60px, 9vw, 100px); overflow: visible;
  color: rgba(87,216,230,.16);
}
.approach__pulse .pulse-base { stroke: currentColor; stroke-width: 1.4; }
/* a lit trace that draws itself as the dark band scrolls through — the pulse, alive */
.approach-pulse-run {
  fill: none; stroke: url(#pulseGradDark); stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1; stroke-dashoffset: 0;   /* honest default: fully drawn */
}
body.gsap-ready .approach-pulse-run { stroke-dashoffset: 1; } /* GSAP owns the draw once ready */
.approach__head { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto clamp(44px, 6vw, 72px); }
.kicker--light { color: var(--cyan); }
.kicker--light::before { background: var(--cyan); }
.approach__title {
  font-family: var(--font-display); font-optical-sizing: auto;
  font-weight: 400; font-size: clamp(30px, 4.6vw, 58px); line-height: 1.03;
  letter-spacing: -.03em; color: var(--white); max-width: 16ch;
}
.approach__sub { margin-top: 18px; max-width: 50ch; font-size: clamp(15px, 1.4vw, 18px); color: rgba(255,255,255,.66); }
.approach__grid {
  position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.35fr 1fr 1fr; grid-auto-rows: 1fr;
  gap: clamp(14px, 1.6vw, 22px);
}
.pill {
  position: relative; padding: 28px 26px 30px; border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03); overflow: hidden;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.pill::before {
  content: ""; position: absolute; left: 26px; top: 0; width: 32px; height: 2px;
  background: var(--accent, var(--azure)); border-radius: 0 0 2px 2px; opacity: .85;
}
.pill:hover { border-color: var(--accent, var(--azure)); background: rgba(255,255,255,.05); transform: translateY(-4px); }
.pill--lead { grid-column: 1; grid-row: 1 / span 2; padding: 34px 32px; display: flex; flex-direction: column; }
.pill--wide { grid-column: 2 / span 2; grid-row: 2; }
.pill__no {
  font-family: var(--font-display); font-optical-sizing: auto; font-weight: 400;
  font-size: clamp(30px, 3vw, 44px); line-height: 1; letter-spacing: -.02em;
  color: var(--accent, var(--azure)); display: block; margin-bottom: 16px;
}
.pill--lead .pill__no { font-size: clamp(40px, 4.4vw, 58px); margin-bottom: auto; }
.pill h3 {
  font-family: var(--font-body); font-weight: 600; font-size: 17.5px; letter-spacing: -.01em;
  color: var(--white); margin-bottom: 9px; line-height: 1.25;
}
.pill--lead h3 { font-size: clamp(19px, 1.8vw, 22px); margin-top: 22px; }
.pill p { font-size: 14px; line-height: 1.58; color: rgba(255,255,255,.62); }
.pill--lead p { font-size: 15px; max-width: 34ch; }

/* ==========================================================================
   START — azure gradient closer
   ========================================================================== */
.start {
  position: relative; overflow: hidden;
  margin: clamp(28px, 5vw, 56px) clamp(8px, 2vw, 24px) 0;
  border-radius: clamp(24px, 4vw, 40px);
  background: linear-gradient(135deg, var(--azure) 0%, var(--cyan) 100%);
  padding: clamp(72px, 12vw, 140px) var(--pad);
  text-align: center;
}
.start__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(50% 60% at 20% 10%, rgba(255,255,255,.34), transparent 60%),
    radial-gradient(60% 70% at 90% 100%, rgba(6,17,42,.18), transparent 62%);
}
.start__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.kicker--on-accent { color: var(--navy); justify-content: center; }
.kicker--on-accent::before { background: var(--navy); }
.start__title {
  font-family: var(--font-display); font-optical-sizing: auto;
  font-weight: 400; font-size: clamp(34px, 6vw, 74px); line-height: 1.0;
  letter-spacing: -.035em; color: var(--navy);
}
.start__lede { margin: 22px auto 0; max-width: 44ch; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.55; color: rgba(6,17,42,.78); }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15.5px; font-weight: 600; padding: 15px 30px; border-radius: 999px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease);
}
.btn--dark {
  margin-top: 34px; background: var(--navy); color: var(--white);
  box-shadow: 0 18px 40px -18px rgba(6,17,42,.6);
}
.btn--dark svg { color: var(--cyan); }
.btn--dark:hover { transform: translateY(-3px); box-shadow: 0 26px 50px -20px rgba(6,17,42,.7); }
.start__note { margin-top: 20px; font-size: 13.5px; color: rgba(6,17,42,.8); }
/* azure-ink focus ring vanishes on the azure block — swap to navy for contrast */
.start :focus-visible { outline-color: var(--navy); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot { padding: clamp(56px, 8vw, 96px) var(--pad) 40px; max-width: var(--maxw); margin: 0 auto; }
.foot__top {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-bottom: 30px; border-bottom: 1px solid var(--line);
}
.foot__brand { font-family: var(--font-display); font-weight: 600; font-size: 30px; letter-spacing: -.02em; color: var(--ink); }
.foot__brand span { color: var(--azure); }
.foot__tag { font-size: 15px; color: var(--muted); }
.foot__worlds {
  display: flex; flex-wrap: wrap; gap: 10px 14px; padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.foot__worlds a {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .06em; color: var(--muted);
  padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.foot__worlds a:hover { color: var(--ink); border-color: var(--line-2); background: var(--surface); }
.foot__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 26px;
}
.foot__demo {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--faint); max-width: 62ch; line-height: 1.5;
}
.foot__demo i { width: 7px; height: 7px; border-radius: 50%; background: var(--azure); flex: none; box-shadow: 0 0 0 4px rgba(13,178,249,.14); }
.foot__copy { font-family: var(--font-mono); font-size: 12px; color: var(--faint); letter-spacing: .04em; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .approach__grid { grid-template-columns: repeat(2, 1fr); }
  .pill--lead { grid-column: 1 / -1; grid-row: auto; }
  .pill--wide { grid-column: 1 / -1; grid-row: auto; }
  .pill--lead .pill__no { margin-bottom: 16px; }
  .pill--lead p { max-width: none; }
}
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__stack { display: none; }
}
@media (max-width: 760px) {
  .nav { padding: 14px var(--pad); }
  .nav__links > a:not(.nav__cta) { display: none; }
  .hero { min-height: 100svh; padding-top: 104px; }
  .hero__meta { gap: 12px; padding: 11px 16px; font-size: 11.5px; }
  .grid { grid-template-columns: 1fr; gap: 40px; }
  .world:nth-child(even) { margin-top: 0; }
  .approach { border-radius: 24px; }
  .approach__grid { grid-template-columns: 1fr; gap: 12px; }
  .pill--lead, .pill--wide { grid-column: 1; grid-row: auto; }
  .foot__top { flex-direction: column; align-items: flex-start; gap: 10px; }
  .foot__worlds a { padding: 9px 16px; }
  .foot__bottom { flex-direction: column-reverse; align-items: flex-start; }
}
@media (max-width: 420px) {
  .hero__meta span { white-space: nowrap; }
  .world__foot { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-panel { opacity: 1 !important; transform: none !important; }
  .pulse-run { animation: none !important; display: none; }
  .approach-pulse-run, body.gsap-ready .approach-pulse-run { stroke-dashoffset: 0 !important; }
  .ribbon__track { animation: none !important; }
  .hero__cue svg { animation: none !important; }
  .hstack__card { transition: none !important; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
