/* Hallmark · genre: atmospheric · macrostructure: Marquee Hero
 * H7 Marquee Hero knobs: title=display-italic-mix · alignment=left-bias · counterweight=animated-aperture
 * theme: Bloom · accent: amber-bloom ~75° (radial bloom + ember-warm)
 * enrichment: Tier-A pure-CSS aperture (animated) + breathing portrait silhouettes + scrolling marquee strip
 * tone: cinematic + bold + precise · audience: founders/recruiters/sales/jobseekers · studied: no
 */

@import url("./tokens.css");

/* ─── Reset · base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { overflow-x: clip; }
* { margin: 0; padding: 0; }

html {
  font-size: 16px;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background: var(--color-paper);
  color: var(--color-ink);
  font-feature-settings: "ss01", "cv11";
  font-weight: 400;
  position: relative;
  isolation: isolate;
}

/* Page-wide ambient bloom — fixed, behind everything */
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(40% 30% at 80% 0%,  var(--color-glow) 0%, transparent 60%),
    radial-gradient(45% 35% at 10% 110%, oklch(60% 0.18 30 / 0.25) 0%, transparent 60%),
    radial-gradient(60% 50% at 50% 50%, oklch(20% 0.025 285 / 0.6) 0%, transparent 70%);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }

::selection { background: var(--color-accent); color: oklch(15% 0.020 60); }

/* ─── Page container ──────────────────────────────────────────────── */
.shell {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}
.section { padding-block: var(--space-3xl); }
.section--tight { padding-block: var(--space-2xl); }

/* ─── Nav — morphs from full-width bar to floating pill on scroll ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);

  /* Default state: full-width bar, edge-to-edge, with backdrop blur */
  padding-block: 0;
  background: oklch(10% 0.018 285 / 0.62);
  border-block-end: var(--rule-hair) solid var(--color-rule);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
          backdrop-filter: saturate(1.4) blur(14px);

  transition:
    padding-block var(--dur-mid) var(--ease-out),
    background-color var(--dur-mid) var(--ease-out),
    border-block-end-color var(--dur-mid) var(--ease-out),
    -webkit-backdrop-filter var(--dur-mid) var(--ease-out),
    backdrop-filter var(--dur-mid) var(--ease-out);
}

/* Floating state: outer .nav goes transparent AND drops the blur — so
   only the pill carries the glass effect, no wide blurred strip across
   the viewport. Padding-block keeps total nav height at 60px (no jitter).
   The visible top breathing room is delivered via transform on .nav__inner
   (see below) — that way it doesn't push content below. */
.nav.is-floating {
  padding-block: var(--space-2xs);
  background-color: transparent;
  border-block-end-color: transparent;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: var(--space-sm);
  min-height: 60px;

  /* Default: invisible — the bar visual lives on .nav above */
  background: oklch(10% 0.020 285 / 0);
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: 0 0 0 0 transparent, 0 0 0 0 transparent;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  transform: translateY(0);

  transition:
    max-width var(--dur-mid) var(--ease-out),
    padding var(--dur-mid) var(--ease-out),
    min-height var(--dur-mid) var(--ease-out),
    border-radius var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out),
    background-color var(--dur-mid) var(--ease-out),
    box-shadow var(--dur-mid) var(--ease-out),
    -webkit-backdrop-filter var(--dur-mid) var(--ease-out),
    backdrop-filter var(--dur-mid) var(--ease-out),
    transform var(--dur-mid) var(--ease-out);
}

.nav.is-floating .nav__inner {
  /* Pill — overrides .shell's max-width; .shell still provides margin-inline: auto */
  max-width: 58rem;
  min-height: 52px;
  padding-block: var(--space-2xs);
  padding-inline: var(--space-md) var(--space-2xs);

  border-radius: var(--radius-pill);
  border-color: oklch(48% 0.022 285 / 0.45);
  background: oklch(8% 0.020 285 / 0.82);
  -webkit-backdrop-filter: saturate(1.5) blur(18px);
          backdrop-filter: saturate(1.5) blur(18px);

  box-shadow:
    0 18px 50px -18px oklch(0% 0 0 / 0.6),
    0 4px 14px -4px oklch(0% 0 0 / 0.35),
    inset 0 0 0 1px oklch(98% 0.005 80 / 0.05),
    0 0 36px -8px var(--color-glow-soft);

  /* Visible breathing room from the viewport top — pure transform,
     so it doesn't change layout / shift content below. The pill ends
     up sitting ~16px from the top edge while the page underneath
     scrolls cleanly past the rest of the (now-transparent) .nav. */
  transform: translateY(12px);
}
.wordmark {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-style: italic;
  color: var(--color-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6ch;
  line-height: 1;
}
.wordmark::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 16px 2px var(--color-glow);
  animation: pulse-soft var(--dur-breath) var(--ease-in-out) infinite;
  transform: translateY(-1px);
}
@keyframes pulse-soft {
  0%, 100% { transform: translateY(-1px) scale(1); opacity: 1; }
  50%      { transform: translateY(-1px) scale(0.85); opacity: 0.78; }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}
.nav__links a:not(.btn) {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-ink-2);
  line-height: 1;
  padding: var(--space-xs) var(--space-2xs);
  position: relative;
  transition: color var(--dur-short) var(--ease-out);
}
.nav__links > li:not(:last-child) > a::after {
  content: "";
  position: absolute;
  left: var(--space-2xs);
  right: var(--space-2xs);
  bottom: calc(var(--space-xs) - 2px);
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform var(--dur-short) var(--ease-out);
}
.nav__links a:not(.btn):hover { color: var(--color-ink); }
.nav__links > li:not(:last-child) > a:hover::after { transform: scaleX(1); }
.nav__links a:not(.btn):focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ─── Buttons ─────────────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--color-accent);
  --btn-fg: oklch(14% 0.020 60);
  display: inline-flex;
  align-items: center;
  gap: 0.6ch;
  min-height: 48px;
  padding: 0 var(--space-lg);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 8px 30px -10px var(--color-glow);
  transition:
    transform var(--dur-micro) var(--ease-out),
    box-shadow var(--dur-short) var(--ease-out),
    background-color var(--dur-short) var(--ease-out);
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg,
    transparent 0%, transparent 35%,
    oklch(98% 0.04 80 / 0.55) 50%,
    transparent 65%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 700ms var(--ease-out);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px var(--color-glow);
  background: var(--color-accent-2);
}
.btn:hover::before { transform: translateX(100%); }
.btn:active { transform: translateY(0); transition-duration: 60ms; }
.btn:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--color-ink);
  border: var(--rule-hair) solid var(--color-rule-2);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--color-paper-2);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}
.btn--ghost::before { display: none; }
.btn--sm {
  min-height: 40px;
  padding: 0 var(--space-md);
  font-size: var(--text-xs);
  letter-spacing: 0.02em;
}
.btn .arrow { transition: transform var(--dur-short) var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

/* ─── Hero — Marquee (huge title left, animated aperture right) ──── */
.hero {
  position: relative;
  padding-block: clamp(var(--space-2xl), 8vw, var(--space-4xl)) var(--space-3xl);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: var(--space-2xl);
  align-items: center;
}
.hero__copy {
  display: grid;
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-family: var(--font-outlier);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6ch;
  line-height: 1;
}
.hero__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw + 0.75rem, 5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.0;
  text-wrap: balance;
  color: var(--color-ink);
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent-2);
  background: linear-gradient(180deg,
    var(--color-accent-2) 0%,
    var(--color-accent) 60%,
    var(--color-accent-deep) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lede {
  max-width: 46ch;
  font-size: var(--text-md);
  color: var(--color-ink-2);
  text-wrap: pretty;
  line-height: 1.55;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
  flex-wrap: wrap;
}
.hero__meta {
  font-family: var(--font-outlier);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding-block-start: var(--space-md);
  border-block-start: var(--rule-hair) solid var(--color-rule);
  margin-top: var(--space-sm);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 0.5ch; }
.hero__meta .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  display: inline-block;
}

/* ─── Hero illustration — animated aperture + halo ────────────────── */
.hero__aside {
  position: relative;
  aspect-ratio: 1;
  max-width: 30rem;
  justify-self: end;
  width: 100%;
  display: grid;
  place-items: center;
}
.aperture {
  position: relative;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      oklch(20% 0.025 285) 0%,
      oklch(12% 0.022 285) 60%,
      oklch(10% 0.018 285) 100%);
  box-shadow:
    inset 0 0 0 1px var(--color-rule-2),
    inset 0 0 80px 4px oklch(8% 0.018 285),
    0 0 0 1px var(--color-rule),
    0 30px 80px -20px oklch(0% 0 0 / 0.7);
  overflow: hidden;
  isolation: isolate;
}
.aperture__halo {
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--color-glow-soft) 30deg,
    transparent 90deg,
    var(--color-glow) 200deg,
    transparent 260deg,
    var(--color-glow-soft) 320deg,
    transparent 360deg);
  filter: blur(28px);
  z-index: -1;
  animation: spin var(--dur-aperture) linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.aperture__pupil {
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, oklch(98% 0.04 80 / 0.55) 0%, transparent 28%),
    radial-gradient(circle at 50% 50%,
      var(--color-accent) 0%,
      var(--color-accent-deep) 50%,
      oklch(35% 0.16 40) 90%);
  box-shadow:
    inset 0 0 30px 4px oklch(45% 0.18 40 / 0.7),
    0 0 60px 6px var(--color-glow);
  animation: aperture-breath var(--dur-aperture) var(--ease-in-out) infinite;
}
@keyframes aperture-breath {
  0%, 100% { inset: 28%; }
  50%      { inset: 36%; }
}
.aperture__blade {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
}
.aperture__blade::before {
  content: "";
  position: absolute;
  inset: 8% 8% 50% 8%;
  background:
    linear-gradient(180deg,
      oklch(28% 0.030 285) 0%,
      oklch(18% 0.026 285) 60%,
      oklch(13% 0.022 285) 100%);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 40% 100%);
  border-radius: 50% 50% 0 0;
  box-shadow:
    inset 1px 1px 0 oklch(40% 0.030 285 / 0.6),
    inset 0 -10px 20px oklch(8% 0.020 285 / 0.5);
}
.aperture__blade:nth-child(1) { transform: rotate(0deg); }
.aperture__blade:nth-child(2) { transform: rotate(60deg); }
.aperture__blade:nth-child(3) { transform: rotate(120deg); }
.aperture__blade:nth-child(4) { transform: rotate(180deg); }
.aperture__blade:nth-child(5) { transform: rotate(240deg); }
.aperture__blade:nth-child(6) { transform: rotate(300deg); }

.aperture__ticks {
  position: absolute;
  inset: -4%;
  border-radius: 50%;
  border: 1px dashed oklch(38% 0.020 285 / 0.6);
  animation: spin-slow calc(var(--dur-aperture) * 4) linear infinite reverse;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
.aperture__label {
  position: absolute;
  font-family: var(--font-outlier);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  text-transform: uppercase;
  z-index: 2;
}
.aperture__label--top   { top: -8px;    left: 50%; transform: translateX(-50%); }
.aperture__label--right { right: -8px;  top: 50%;  transform: translateY(-50%) rotate(90deg); transform-origin: 100% 50%; }
.aperture__label--btm   { bottom: -8px; left: 50%; transform: translateX(-50%); }
.aperture__label--left  { left: -8px;   top: 50%;  transform: translateY(-50%) rotate(-90deg); transform-origin: 0 50%; }

/* ─── Hero before/after slider ────────────────────────────────────── */
.hero__aside:has(.compare) {
  aspect-ratio: auto;
  max-width: 26rem;
  display: grid;
  gap: var(--space-md);
  align-content: center;
}

.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  border: var(--rule-hair) solid var(--color-rule-2);
  overflow: hidden;
  isolation: isolate;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  cursor: ew-resize;
  background: var(--color-paper-2);
  box-shadow:
    0 30px 70px -28px oklch(0% 0 0 / 0.7),
    0 0 0 1px oklch(50% 0.18 70 / 0.18),
    0 0 60px -8px var(--color-glow-soft);
}
.compare.is-dragging { cursor: ew-resize; }
.compare.is-dragging .compare__handle {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow:
    0 0 0 4px oklch(8% 0.018 285 / 0.55),
    0 8px 22px oklch(0% 0 0 / 0.55),
    0 0 32px var(--color-glow);
}
.compare__pane {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: none;
}
.compare__pane .portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.compare__pane--after { z-index: 1; }
.compare__pane--before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.compare__label {
  position: absolute;
  top: var(--space-md);
  z-index: 4;
  font-family: var(--font-outlier);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(98% 0.005 80);
  line-height: 1;
  padding: var(--space-2xs) var(--space-sm);
  border-radius: var(--radius-pill);
  background: oklch(8% 0.018 285 / 0.55);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid oklch(98% 0.005 80 / 0.12);
  pointer-events: none;
}
.compare__label--before { left: var(--space-md); }
.compare__label--after  { right: var(--space-md); color: oklch(14% 0.020 60); background: var(--color-accent); border-color: transparent; box-shadow: 0 0 14px var(--color-glow-soft); }

.compare__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  margin-left: -1px;
  z-index: 3;
  background: linear-gradient(180deg,
    oklch(98% 0.005 80 / 0.0) 0%,
    oklch(98% 0.005 80 / 0.95) 50%,
    oklch(98% 0.005 80 / 0.0) 100%);
  box-shadow:
    0 0 12px var(--color-glow),
    0 0 24px var(--color-glow-soft);
  pointer-events: none;
}
.compare__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: oklch(98% 0.010 80);
  color: oklch(15% 0.020 60);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 4px oklch(8% 0.018 285 / 0.45),
    0 8px 22px oklch(0% 0 0 / 0.45),
    0 0 24px var(--color-glow);
  transition: transform var(--dur-short) var(--ease-out);
  pointer-events: none;
}
.compare:hover .compare__handle {
  transform: translate(-50%, -50%) scale(1.07);
}
/* (handle scale on focus / drag is handled below) */

/* Hidden range input — Tab-reachable for keyboard a11y. Pointer
   events go to the .compare canvas, where the JS drag loop runs. */
.compare__input {
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 1px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
}
.compare__input:focus-visible ~ .compare__divider {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
  border-radius: 2px;
}
.compare__input:focus-visible ~ .compare__divider .compare__handle {
  transform: translate(-50%, -50%) scale(1.1);
}

.compare__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-family: var(--font-outlier);
  font-size: var(--text-xs);
  letter-spacing: 0.10em;
  color: var(--color-muted);
  line-height: 1;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.compare__caption-meta {
  color: var(--color-muted-2);
  text-transform: none;
  letter-spacing: 0.04em;
  font-style: italic;
  font-family: var(--font-display);
  font-size: var(--text-xs);
}

/* Before/after portrait variants — selfie register vs. studio register */
.portrait--before {
  --bg-1: oklch(34% 0.020 240);
  --bg-2: oklch(20% 0.012 250);
  --skin: oklch(70% 0.04 50);
  --shirt: oklch(38% 0.06 250);
  --rim: oklch(80% 0.02 240);
  filter: saturate(0.55) contrast(0.92) brightness(0.94);
}
.portrait--after {
  --bg-1: oklch(50% 0.14 35);
  --bg-2: oklch(16% 0.06 30);
  --skin: oklch(74% 0.08 45);
  --shirt: oklch(20% 0.012 60);
  --rim: oklch(88% 0.14 70);
}
/* Lock the head still inside the comparator — the breathing loop
   would otherwise drift the two halves out of register at the seam. */
.compare .portrait::before {
  animation: none;
  transform: translateX(-50%);
}

/* ─── Marquee strip ───────────────────────────────────────────────── */
.marquee {
  position: relative;
  border-block: var(--rule-hair) solid var(--color-rule);
  padding-block: var(--space-lg);
  background:
    linear-gradient(180deg,
      transparent 0%,
      oklch(8% 0.018 285 / 0.6) 100%);
  overflow: hidden;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(80px, 12vw, 200px);
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-paper) 10%, transparent 100%);
}
.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-paper) 10%, transparent 100%);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  width: max-content;
  animation: marquee var(--dur-marquee) linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee__word {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--text-marquee);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-ink);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
}
.marquee__word::after {
  content: "";
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 18px 2px var(--color-glow);
  display: inline-block;
}
.marquee__word--mute { color: var(--color-muted-2); }
.marquee__word--mute::after {
  background: transparent;
  border: 1px solid var(--color-rule-2);
  box-shadow: none;
}

/* ─── Output gallery (six breathing portraits, wide grid) ─────────── */
.gallery {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: var(--space-md);
}
.gallery__intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  border-block-end: var(--rule-hair) solid var(--color-rule);
  padding-block-end: var(--space-lg);
}
.section__head {
  font-family: var(--font-outlier);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  color: var(--color-accent);
  text-transform: uppercase;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.6ch;
  margin-bottom: var(--space-md);
}
.section__head::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
  max-width: 22ch;
  color: var(--color-ink);
}
.section__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent-2);
}
.section__sub {
  font-size: var(--text-sm);
  color: var(--color-muted);
  max-width: 36ch;
  text-align: end;
  line-height: 1.5;
}

.tile {
  position: relative;
  border: var(--rule-hair) solid var(--color-rule);
  border-radius: var(--radius-lg);
  background: var(--color-paper-2);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--dur-short) var(--ease-out),
    border-color var(--dur-short) var(--ease-out);
}
.tile:hover {
  transform: translateY(-4px);
  border-color: var(--color-rule-2);
}
.tile--feature {
  grid-column: span 1;
  grid-row: span 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: var(--space-lg);
  gap: var(--space-md);
  background:
    radial-gradient(120% 80% at 0% 100%, oklch(20% 0.03 50 / 0.5), transparent 70%),
    var(--color-paper-2);
}
.tile--feature h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--color-ink);
  text-wrap: balance;
}
.tile--feature h2 em {
  font-style: italic;
  color: var(--color-accent-2);
}
.tile--feature p {
  color: var(--color-ink-2);
  font-size: var(--text-sm);
  line-height: 1.55;
  max-width: 32ch;
}
.tile--feature .meta {
  font-family: var(--font-outlier);
  font-size: var(--text-xs);
  letter-spacing: 0.10em;
  color: var(--color-muted);
  text-transform: uppercase;
  line-height: 1.4;
}

.tile--portrait {
  aspect-ratio: 1;
  cursor: default;
}
.tile--portrait .portrait { width: 100%; height: 100%; }
.tile--portrait .portrait__caption {
  position: absolute;
  inset: auto var(--space-sm) var(--space-sm) var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-outlier);
  font-weight: 500;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: oklch(96% 0.005 80);
  line-height: 1;
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 1px 12px oklch(0% 0 0 / 0.7);
}
.tile--portrait .portrait__caption .num { opacity: 0.65; }
.tile--portrait::after {
  /* gradient floor for caption legibility */
  content: "";
  position: absolute;
  inset: 50% 0 0 0;
  background: linear-gradient(180deg, transparent 0%, oklch(0% 0 0 / 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ─── Pure-CSS portrait silhouette + breathing animation ──────────── */
.portrait {
  --bg-1: oklch(40% 0.10 65);
  --bg-2: oklch(15% 0.04 280);
  --skin: oklch(72% 0.06 55);
  --shirt: oklch(22% 0.012 60);
  --rim: oklch(82% 0.14 70);

  position: relative;
  background:
    radial-gradient(120% 80% at 30% 0%, oklch(95% 0.02 80 / 0.20), transparent 60%),
    linear-gradient(160deg, var(--bg-1), var(--bg-2));
}
.portrait::before {
  /* head */
  content: "";
  position: absolute;
  left: 50%;
  top: 26%;
  width: 38%;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(60% 50% at 35% 35%, oklch(96% 0.04 70 / 0.45), transparent 70%),
    var(--skin);
  border-radius: 50% 50% 46% 46% / 55% 55% 45% 45%;
  transform: translateX(-50%);
  box-shadow:
    inset -6px -10px 22px oklch(15% 0.05 30 / 0.45),
    inset 4px 4px 12px oklch(96% 0.05 80 / 0.18),
    -2px 0 0 var(--rim);
  transform-origin: 50% 100%;
  animation: portrait-breath var(--dur-breath) var(--ease-in-out) infinite;
}
.portrait::after {
  /* shoulders */
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8%;
  width: 130%;
  aspect-ratio: 3 / 1;
  background: var(--shirt);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  transform: translateX(-50%);
  box-shadow:
    inset 0 8px 0 oklch(40% 0.012 60 / 0.5),
    inset 0 -2px 14px oklch(10% 0 0 / 0.6);
}
@keyframes portrait-breath {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50%      { transform: translateX(-50%) translateY(-2px) scale(1.012); }
}

.portrait--boardroom {
  --bg-1: oklch(34% 0.08 250);
  --bg-2: oklch(14% 0.040 240);
  --skin: oklch(72% 0.06 50);
  --shirt: oklch(94% 0.005 80);
  --rim: oklch(78% 0.15 70);
}
.portrait--editorial {
  --bg-1: oklch(50% 0.12 35);
  --bg-2: oklch(18% 0.06 30);
  --skin: oklch(70% 0.07 45);
  --shirt: oklch(20% 0.010 60);
  --rim: oklch(86% 0.10 60);
}
.portrait--daylight {
  --bg-1: oklch(58% 0.10 80);
  --bg-2: oklch(28% 0.06 70);
  --skin: oklch(76% 0.05 60);
  --shirt: oklch(46% 0.10 240);
  --rim: oklch(96% 0.020 80);
}
.portrait--onset {
  --bg-1: oklch(28% 0.02 60);
  --bg-2: oklch(10% 0.005 60);
  --skin: oklch(64% 0.020 60);
  --shirt: oklch(18% 0.005 60);
  --rim: oklch(84% 0.03 60);
  filter: saturate(0.4) contrast(1.05);
}
.portrait--noir {
  --bg-1: oklch(20% 0.018 285);
  --bg-2: oklch(8% 0.008 285);
  --skin: oklch(64% 0.04 50);
  --shirt: oklch(94% 0.005 80);
  --rim: oklch(78% 0.16 70);
}

/* ─── Stat counter ────────────────────────────────────────────────── */
.stat {
  padding-block: var(--space-3xl);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-2xl);
  align-items: end;
  border-block-end: var(--rule-hair) solid var(--color-rule);
}
.stat__figure {
  font-family: var(--font-display);
  font-size: var(--text-figure);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
  color: var(--color-ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0.1ch;
}
.stat__figure .num {
  background: linear-gradient(180deg,
    var(--color-ink) 0%,
    var(--color-accent-2) 70%,
    var(--color-accent) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Italic + tight tracking + background-clip:text crops the rightmost
     glyph in some browsers; reserve ~10% em of trailing room. */
  padding-inline-end: 0.1em;
  letter-spacing: -0.04em;
}
.stat__figure .plus {
  font-style: normal;
  font-weight: 200;
  color: var(--color-accent);
  font-size: 0.5em;
  align-self: start;
  margin-top: 0.2em;
}
.stat__copy {
  display: grid;
  gap: var(--space-md);
}
.stat__copy h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-ink);
  max-width: 28ch;
}
.stat__copy p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  max-width: 32ch;
  line-height: 1.55;
}

/* ─── Process — three large stages, workbench-style ───────────────── */
.process {
  display: grid;
  gap: var(--space-2xl);
}
.process__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: end;
  border-block-end: var(--rule-hair) solid var(--color-rule);
  padding-block-end: var(--space-md);
}
.process__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.0;
  text-wrap: balance;
  max-width: 18ch;
}
.process__head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent-2);
}
.process__head p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  max-width: 32ch;
  text-align: end;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  list-style: none;
}
.step {
  position: relative;
  display: grid;
  gap: var(--space-md);
  padding: var(--space-xl);
  border: var(--rule-hair) solid var(--color-rule);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg,
      oklch(14% 0.020 285 / 0.6) 0%,
      oklch(11% 0.018 285 / 0.6) 100%);
  transition:
    border-color var(--dur-short) var(--ease-out),
    transform var(--dur-short) var(--ease-out);
}
.step:hover {
  transform: translateY(-3px);
  border-color: var(--color-rule-2);
}
.step__num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent-2);
  line-height: 1;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 0.4ch;
}
.step__num::after {
  content: "";
  display: inline-block;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--color-rule-2) 0%, transparent 100%);
  align-self: center;
  margin-left: var(--space-sm);
}
.step__stage {
  font-family: var(--font-outlier);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  color: var(--color-accent);
  text-transform: uppercase;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-ink);
}
.step p {
  color: var(--color-ink-2);
  font-size: var(--text-sm);
  line-height: 1.55;
}

/* ─── Pricing ─────────────────────────────────────────────────────── */
.pricing {
  display: grid;
  gap: var(--space-2xl);
}
.pricing__head {
  display: grid;
  gap: var(--space-md);
  max-width: 38ch;
}
.pricing__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.0;
}
.pricing__head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent-2);
}
.pricing__head p {
  color: var(--color-ink-2);
  font-size: var(--text-md);
  max-width: 40ch;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.tier {
  position: relative;
  border: var(--rule-hair) solid var(--color-rule);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  background:
    linear-gradient(180deg,
      oklch(14% 0.020 285 / 0.5) 0%,
      oklch(10% 0.018 285 / 0.6) 100%);
  display: grid;
  gap: var(--space-md);
  align-content: start;
  transition:
    transform var(--dur-short) var(--ease-out),
    border-color var(--dur-short) var(--ease-out),
    box-shadow var(--dur-short) var(--ease-out);
}
.tier:hover {
  transform: translateY(-4px);
  border-color: var(--color-rule-2);
}
.tier__name {
  font-family: var(--font-outlier);
  font-weight: 500;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  line-height: 1;
}
.tier__price {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-ink);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4ch;
}
.tier__price .unit {
  font-family: var(--font-outlier);
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-muted);
  letter-spacing: 0;
  line-height: 1;
}
.tier__sub {
  color: var(--color-ink-2);
  font-size: var(--text-sm);
  line-height: 1.5;
  max-width: 28ch;
}
.tier__list {
  list-style: none;
  display: grid;
  gap: var(--space-sm);
  margin-block: var(--space-md);
  padding-block-start: var(--space-md);
  border-block-start: var(--rule-hair) solid var(--color-rule);
}
.tier__list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: var(--space-sm);
  align-items: start;
  font-size: var(--text-sm);
  color: var(--color-ink-2);
  line-height: 1.45;
}
.tier__list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 10px 1px var(--color-glow-soft);
  margin-top: 4px;
}
.tier .btn { justify-content: center; width: 100%; }

.tier--rec {
  border-color: var(--color-accent);
  background:
    radial-gradient(80% 60% at 50% 0%, oklch(50% 0.18 50 / 0.18), transparent 70%),
    linear-gradient(180deg,
      oklch(16% 0.030 60 / 0.6) 0%,
      oklch(11% 0.020 285 / 0.6) 100%);
  box-shadow: 0 0 0 1px var(--color-accent), 0 24px 60px -24px var(--color-glow);
}
.tier--rec::after {
  content: "Recommended";
  position: absolute;
  top: -12px;
  left: var(--space-xl);
  font-family: var(--font-outlier);
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(14% 0.020 60);
  background: var(--color-accent);
  padding: var(--space-2xs) var(--space-sm);
  border-radius: var(--radius-pill);
  line-height: 1;
  box-shadow: 0 0 16px 2px var(--color-glow);
}
.tier--rec.rec-pulse {
  animation: rec-pulse 2400ms var(--ease-in-out) 1 forwards;
}
@keyframes rec-pulse {
  0%   { box-shadow: 0 0 0 1px var(--color-accent), 0 24px 60px -24px var(--color-glow), 0 0 0 0 oklch(80% 0.18 75 / 0.0); }
  35%  { box-shadow: 0 0 0 1px var(--color-accent), 0 24px 60px -24px var(--color-glow), 0 0 0 10px oklch(80% 0.18 75 / 0.18); }
  100% { box-shadow: 0 0 0 1px var(--color-accent), 0 24px 60px -24px var(--color-glow), 0 0 0 0 oklch(80% 0.18 75 / 0.0); }
}

/* ─── FAQ ─────────────────────────────────────────────────────────── */
.faq {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-2xl);
  align-items: start;
}
.faq__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.0;
  max-width: 14ch;
}
.faq__head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent-2);
}
.faq__head p {
  margin-top: var(--space-md);
  color: var(--color-ink-2);
  font-size: var(--text-sm);
  max-width: 32ch;
}
.faq__list { display: grid; }
.faq__item {
  border-block-end: var(--rule-hair) solid var(--color-rule);
}
.faq__item:first-child { border-block-start: var(--rule-hair) solid var(--color-rule); }
.faq__summary {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-md);
  padding-block: var(--space-md);
  cursor: pointer;
  min-height: 48px;
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  line-height: 1.3;
  transition: color var(--dur-short) var(--ease-out);
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary:hover { color: var(--color-accent); }
.faq__summary:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq__sign {
  position: relative;
  width: 20px; height: 20px;
  flex: 0 0 20px;
  color: var(--color-accent);
}
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: currentColor;
}
.faq__sign::before { width: 14px; height: 1.5px; }
.faq__sign::after { width: 1.5px; height: 14px; transition: transform var(--dur-short) var(--ease-out); }
details[open] .faq__sign::after { transform: rotate(90deg); }

.faq__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-long) var(--ease-in-out);
}
details[open] .faq__answer-wrap { grid-template-rows: 1fr; }
.faq__answer-inner { overflow: hidden; }
.faq__answer {
  padding-block: 0 var(--space-md);
  color: var(--color-ink-2);
  font-size: var(--text-sm);
  max-width: 60ch;
  line-height: 1.6;
}

/* ─── Final CTA — full-bleed dramatic ─────────────────────────────── */
.final {
  position: relative;
  margin-block: var(--space-3xl) var(--space-2xl);
  border-radius: var(--radius-xl);
  border: var(--rule-hair) solid var(--color-rule-2);
  padding: clamp(var(--space-2xl), 8vw, var(--space-4xl)) clamp(var(--space-lg), 6vw, var(--space-3xl));
  background:
    radial-gradient(60% 80% at 80% 50%, oklch(30% 0.14 50 / 0.4) 0%, transparent 70%),
    radial-gradient(60% 100% at 0% 100%, oklch(20% 0.10 60 / 0.5) 0%, transparent 70%),
    linear-gradient(180deg, oklch(15% 0.030 60 / 0.6) 0%, oklch(11% 0.020 285 / 0.6) 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.final::before {
  /* slow drifting halo */
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(35% 25% at 30% 40%, var(--color-glow) 0%, transparent 70%);
  z-index: -1;
  animation: drift 22s var(--ease-in-out) infinite alternate;
}
@keyframes drift {
  to { transform: translate(40%, 20%); }
}
.final h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw + 0.5rem, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  max-width: 22ch;
  text-wrap: balance;
}
.final h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent-2);
}
.final__sub {
  margin-top: var(--space-md);
  color: var(--color-ink-2);
  font-size: var(--text-md);
  max-width: 38ch;
  line-height: 1.55;
}
.final__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ─── Footer ──────────────────────────────────────────────────────── */
.foot {
  padding-block: var(--space-2xl);
  display: grid;
  gap: var(--space-md);
  border-block-start: var(--rule-hair) solid var(--color-rule);
}
.foot__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.foot__tagline {
  color: var(--color-muted);
  font-size: var(--text-sm);
  max-width: 38ch;
  line-height: 1.5;
}
.foot__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
  flex-wrap: wrap;
}
.foot__links a {
  color: var(--color-ink-2);
  font-size: var(--text-sm);
  line-height: 1;
  transition: color var(--dur-short) var(--ease-out);
}
.foot__links a:hover { color: var(--color-accent); }
.foot__links a:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
  border-radius: 2px;
}
.foot__credit {
  font-family: var(--font-outlier);
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: 0.04em;
  border-block-start: var(--rule-hair) solid var(--color-rule);
  padding-block-start: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  line-height: 1.5;
}

/* ─── Reveal (one-shot, IntersectionObserver-driven) ──────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity var(--dur-long) var(--ease-out),
    transform var(--dur-long) var(--ease-out);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 64rem) {
  .hero {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .hero__aside {
    justify-self: center;
    max-width: 22rem;
  }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery .tile--feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .stat {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .steps { grid-template-columns: 1fr; gap: var(--space-md); }
  .tiers { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .final { grid-template-columns: 1fr; }
  .gallery__intro,
  .process__head { grid-template-columns: 1fr; }
  .gallery__intro .section__sub,
  .process__head p { text-align: start; }
}
@media (max-width: 40rem) {
  .section { padding-block: var(--space-2xl); }
  .nav__links { gap: var(--space-md); }
  .nav__links li:nth-child(1),
  .nav__links li:nth-child(2) { display: none; }
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__cta .btn { justify-content: center; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .tile--feature { grid-column: 1 / -1; }
  .marquee__track { gap: var(--space-xl); }
}

@media (pointer: coarse) {
  .btn { min-height: 52px; }
  .nav__links a { padding: var(--space-sm) var(--space-2xs); }
}

/* ─── Reduced motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; transform: none; }
  .aperture__halo, .aperture__pupil, .aperture__ticks,
  .portrait::before, .wordmark::before, .final::before { animation: none !important; }
  .btn:hover, .tier:hover, .step:hover, .tile:hover { transform: none; }
}

/* ─── Visually-hidden (a11y) ──────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
