/* ============================================================
   Zaigo Website UI Kit — page-level styles.
   Layered on top of colors_and_type.css.
   ============================================================ */

* { box-sizing: border-box; }
html {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--ink);
}

.zg-page {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
}

html.zg-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

html.zg-scroll-locked body {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}
.zg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========================================================
   NAV — floating ink pill + motion
   ======================================================== */
@keyframes zg-nav-pill-in {
  from {
    opacity: 0;
    transform: translate3d(0, -16px, 0) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes zg-nav-item-in {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.zg-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 28px 16px 0;
  pointer-events: none;
  transition: padding 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.zg-nav-wrap.zg-nav--scrolled {
  padding-top: 16px;
}

.zg-nav {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  gap: 36px;
  opacity: 0;
  transform: translate3d(0, -14px, 0) scale(0.94);
  will-change: transform, opacity;
  transition:
    padding 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
    gap 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 320ms ease,
    background-color 320ms ease;
}

.zg-nav-wrap.zg-nav--scrolled .zg-nav {
  padding: 5px 6px 5px 8px;
  gap: 28px;
  box-shadow: 0 14px 32px -12px rgba(0, 0, 0, 0.55);
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
}

.zg-nav-wrap.zg-nav--scrolled .zg-nav .mark {
  height: 30px;
  width: 30px;
}

.zg-nav-wrap.zg-nav--scrolled .zg-nav .cta {
  padding: 7px 14px 7px 16px;
  font-size: 13px;
}

.zg-nav--ready .zg-nav {
  animation: zg-nav-pill-in 680ms var(--zg-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) both;
}

.zg-nav .zg-nav-a {
  opacity: 0;
}

.zg-nav--ready .zg-nav-a {
  animation: zg-nav-item-in 520ms var(--zg-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) both;
  animation-delay: calc(55ms * var(--zg-delay, 0) + 220ms);
}

.zg-nav--ready .zg-nav-a[data-zg-delay="0"] { --zg-delay: 0; }
.zg-nav--ready .zg-nav-a[data-zg-delay="1"] { --zg-delay: 1; }
.zg-nav--ready .zg-nav-a[data-zg-delay="2"] { --zg-delay: 2; }
.zg-nav--ready .zg-nav-a[data-zg-delay="3"] { --zg-delay: 3; }
.zg-nav--ready .zg-nav-a[data-zg-delay="4"] { --zg-delay: 4; }
.zg-nav--ready .zg-nav-a[data-zg-delay="5"] { --zg-delay: 5; }
.zg-nav--ready .zg-nav-a[data-zg-delay="6"] { --zg-delay: 6; }

.zg-nav-menu-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  font-family: inherit;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
}

.zg-nav-menu-icon {
  display: inline-grid;
  gap: 5px;
  width: 16px;
}

.zg-nav-menu-icon span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.zg-nav-cta-short {
  display: none;
}

.zg-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: #0a0a0a;
  color: #fff;
  padding:
    max(20px, env(safe-area-inset-top))
    24px
    max(28px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
  animation: zg-drawer-in 280ms ease-out both;
}

@keyframes zg-drawer-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.zg-nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.zg-nav-drawer-brand {
  display: inline-flex;
  align-items: center;
  height: 44px;
}

.zg-nav-drawer-brand img {
  height: 40px;
  width: auto;
  display: block;
}

.zg-nav-drawer-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 200ms ease;
}

.zg-nav-drawer-close svg {
  width: 18px;
  height: 18px;
  display: block;
}

.zg-nav-drawer-close:hover,
.zg-nav-drawer-close:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.zg-nav-drawer-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.zg-nav-drawer-links {
  display: flex;
  flex-direction: column;
  margin: 12px 0 0;
}

.zg-nav-drawer-link {
  display: block;
  padding: 18px 0;
  font-size: clamp(24px, 6.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 180ms ease;
}

.zg-nav-drawer-link:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.zg-nav-drawer-link:hover,
.zg-nav-drawer-link:focus-visible {
  color: var(--accent);
  outline: none;
}

.zg-nav-drawer-foot {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.zg-nav-drawer-cta {
  width: 100%;
  justify-content: center;
}

[id] {
  scroll-margin-top: 96px;
}

.zg-nav .brand {
  display: inline-flex;
  transition: transform 220ms var(--zg-ease, cubic-bezier(0.2, 0.7, 0.2, 1));
}

.zg-nav .brand:hover {
  transform: scale(1.06);
}

.zg-nav .mark {
  height: 36px;
  width: 36px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  transition:
    height 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
    width 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 360ms ease,
    filter 360ms ease;
}

.zg-nav .brand:hover .mark {
  box-shadow: 0 0 0 2px rgba(233, 78, 59, 0.55), 0 0 22px rgba(233, 78, 59, 0.45);
  filter: saturate(1.15);
}

.zg-nav .links {
  position: relative;
  display: flex;
  gap: 28px;
  font-size: 14.5px;
}

.zg-nav-indicator {
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--accent);
  border-radius: 2px;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition:
    transform 420ms cubic-bezier(0.5, 1, 0.2, 1),
    width 420ms cubic-bezier(0.5, 1, 0.2, 1),
    opacity 240ms ease;
  box-shadow: 0 0 14px rgba(233, 78, 59, 0.65);
}

.zg-nav .links a {
  color: #fff;
  opacity: 0.78;
  text-decoration: none;
  cursor: pointer;
  padding: 4px 0;
  position: relative;
  transition: opacity 180ms var(--zg-ease, cubic-bezier(0.2, 0.7, 0.2, 1));
}

.zg-nav .links a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--zg-ease, cubic-bezier(0.2, 0.7, 0.2, 1));
}

.zg-nav .links a:hover {
  opacity: 1;
}

.zg-nav .links a:not(.active):hover::before {
  transform: scaleX(1);
}

.zg-nav .links a.active {
  opacity: 1;
}

.zg-nav .links a.active:not(:hover)::before {
  display: none;
}

.zg-nav .cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  padding: 9px 16px 9px 18px;
  border-radius: 999px;
  border: 0;
  font-family: inherit;
  font-weight: 500;
  font-size: 13.5px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    background 180ms var(--zg-ease, cubic-bezier(0.2, 0.7, 0.2, 1)),
    transform 220ms var(--zg-ease, cubic-bezier(0.2, 0.7, 0.2, 1)),
    box-shadow 260ms ease;
}

.zg-nav .cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(233, 78, 59, 0.35) 50%,
    transparent 70%
  );
  transform: translateX(-130%);
  pointer-events: none;
}

.zg-nav .cta:hover {
  background: #eceae3;
  transform: scale(1.04);
  box-shadow: 0 12px 28px -10px rgba(233, 78, 59, 0.55);
}

.zg-nav .cta:hover::after {
  transform: translateX(130%);
  transition: transform 0.95s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.zg-nav .cta:active {
  transform: scale(0.985);
}

.zg-nav .cta > * {
  position: relative;
  z-index: 1;
}

.zg-nav .cta .plus {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  transition:
    transform 280ms cubic-bezier(0.5, 1, 0.2, 1),
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.zg-nav .cta:hover .plus {
  transform: rotate(180deg) scale(1.08);
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(233, 78, 59, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .zg-nav,
  .zg-nav .zg-nav-a {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .zg-nav .brand:hover,
  .zg-nav .cta:hover {
    transform: none;
  }

  .zg-nav .cta:hover .plus {
    transform: none;
  }

  .zg-nav .cta::after {
    display: none;
  }

  .zg-nav-indicator {
    transition: opacity 200ms ease;
  }

  .zg-nav-drawer {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* ========================================================
   HERO — asymmetric masthead + edge-bleed portrait + motion
   ======================================================== */
:root {
  --zg-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --zg-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --zg-hero-stagger: 70ms;
}

@keyframes zg-hero-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes zg-hero-highlight-wipe {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes zg-hero-deck-rule {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes zg-hero-stage-wipe {
  from {
    clip-path: inset(0 0 0 100%);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes zg-hero-photo-enter {
  from {
    transform: scale(1.16);
  }
  to {
    transform: scale(1);
  }
}

@keyframes zg-hero-photo-breathe {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.04);
  }
}

@keyframes zg-hero-scrim-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zg-hero-watermark-in {
  from {
    opacity: 0;
    transform: translate3d(-12px, 16px, 0) scale(0.98);
  }
  to {
    opacity: 0.04;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.zg-hero {
  padding: 96px 0 0;
  overflow: clip;
  --hero-cursor-x: 0;
  --hero-cursor-y: 0;
}

.zg-hero-headline,
.zg-hero-deck {
  transform: translate3d(
    calc(var(--hero-cursor-x, 0) * -4px),
    calc(var(--hero-cursor-y, 0) * -3px),
    0
  );
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.zg-hero.is-tracking .zg-hero-headline,
.zg-hero.is-tracking .zg-hero-deck {
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.zg-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-height: min(86vh, 840px);
  width: 100%;
}

.zg-hero-masthead {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 48px 56px max(28px, calc((100vw - 1200px) / 2 + 32px));
  background: var(--canvas);
}

/* Column divider draws on load */
.zg-hero-masthead::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 1px;
  background: rgba(26, 26, 26, 0.08);
  transform: scaleY(0);
  transform-origin: top;
}

.zg-hero--ready .zg-hero-masthead::after {
  animation: zg-hero-deck-rule 900ms var(--zg-ease-out) 420ms both;
}

.zg-hero-watermark {
  position: absolute;
  left: -0.08em;
  bottom: 0.12em;
  font-size: clamp(220px, 32vw, 420px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.78;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

.zg-hero-masthead-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
}

/* Staggered entrance — hidden until .zg-hero--ready */
.zg-hero .zg-hero-a {
  opacity: 0;
}

.zg-hero--ready .zg-hero-a {
  animation: zg-hero-fade-up 720ms var(--zg-ease-out) both;
  animation-delay: calc(var(--zg-hero-stagger) * var(--zg-delay, 0));
}

.zg-hero--ready .zg-hero-a[data-zg-delay="0"] { --zg-delay: 0; }
.zg-hero--ready .zg-hero-a[data-zg-delay="1"] { --zg-delay: 1; }
.zg-hero--ready .zg-hero-a[data-zg-delay="2"] { --zg-delay: 2; }
.zg-hero--ready .zg-hero-a[data-zg-delay="3"] { --zg-delay: 3; }
.zg-hero--ready .zg-hero-a[data-zg-delay="4"] { --zg-delay: 4; }
.zg-hero--ready .zg-hero-a[data-zg-delay="5"] { --zg-delay: 5; }
.zg-hero--ready .zg-hero-a[data-zg-delay="6"] { --zg-delay: 6; }
.zg-hero--ready .zg-hero-a[data-zg-delay="7"] { --zg-delay: 7; }
.zg-hero--ready .zg-hero-a[data-zg-delay="8"] { --zg-delay: 8; }
.zg-hero--ready .zg-hero-a[data-zg-delay="9"] { --zg-delay: 9; }
.zg-hero--ready .zg-hero-a[data-zg-delay="10"] { --zg-delay: 10; }
.zg-hero--ready .zg-hero-a[data-zg-delay="11"] { --zg-delay: 11; }

.zg-hero--ready .zg-hero-watermark.zg-hero-a {
  animation: zg-hero-watermark-in 1.4s var(--zg-ease-out) both;
}

.zg-hero-headline .zg-highlight.zg-hero-a-highlight {
  display: inline-block;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.zg-hero--ready .zg-hero-a-highlight {
  opacity: 1;
  animation: zg-hero-highlight-wipe 620ms var(--zg-ease-out) both;
  animation-delay: calc(var(--zg-hero-stagger) * var(--zg-delay, 3) + 50ms);
}

.zg-hero-headline .zg-highlight.zg-hero-a-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 32%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 68%
  );
  transform: translateX(-130%);
  pointer-events: none;
  z-index: 2;
}

.zg-hero--ready .zg-hero-a-highlight::after {
  animation: zg-hero-highlight-sheen 5.6s ease-in-out 1.8s infinite;
}

@keyframes zg-hero-highlight-sheen {
  0%,
  100% {
    transform: translateX(-130%);
  }
  55% {
    transform: translateX(130%);
  }
}

.zg-hero--ready .zg-hero-deck::before {
  animation: zg-hero-deck-rule 880ms var(--zg-ease-out) 380ms both;
}

@media (prefers-reduced-motion: reduce) {
  .zg-hero .zg-hero-a,
  .zg-hero-watermark {
    opacity: 1;
    animation: none !important;
    transform: none !important;
  }

  .zg-hero-masthead::after {
    transform: scaleY(1);
  }

  .zg-hero-stage,
  .zg-hero-photo,
  .zg-hero-scrim,
  .zg-hero-stage-reveal,
  .zg-hero-stage::after,
  .zg-hero-a-highlight::after,
  .zg-hero-btn::after {
    animation: none !important;
    clip-path: none !important;
    opacity: 1 !important;
  }

  .zg-hero-stage::after {
    opacity: 0 !important;
  }

  .zg-hero-photo {
    transform: scale(1) !important;
  }

  .zg-hero-photo-wrap,
  .zg-hero-headline,
  .zg-hero-deck,
  .zg-hero-btn {
    transform: none !important;
    transition: none !important;
  }
}

.zg-hero-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 24px;
}

.zg-hero-headline {
  font-size: clamp(44px, 5.4vw, 92px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 0;
  text-align: left;
  text-wrap: balance;
}

.zg-hero-headline .line {
  display: block;
}

.zg-hero-headline-row {
  white-space: nowrap;
}

.zg-hero-headline .accent-line {
  margin-top: 0;
}

.zg-hero-headline .muted {
  color: var(--ink-muted);
  margin-top: 8px;
  font-size: 0.94em;
  letter-spacing: -0.03em;
}

.zg-hero-deck {
  margin-top: 36px;
  padding-top: 28px;
  position: relative;
  max-width: 42ch;
}

.zg-hero-deck::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(26, 26, 26, 0.08);
  transform: scaleX(0);
  transform-origin: left;
}

.zg-hero-sub {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 38ch;
  text-wrap: pretty;
}

.zg-accent-underline {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
  text-decoration-skip-ink: none;
}

.zg-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 28px;
}

.zg-hero-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --magnet-x: 0px;
  --magnet-y: 0px;
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
  transition:
    transform 320ms var(--zg-ease),
    background 220ms ease,
    box-shadow 320ms ease;
}

.zg-hero-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 36%,
    rgba(255, 255, 255, 0.36) 50%,
    transparent 64%
  );
  transform: translateX(-130%);
  pointer-events: none;
  z-index: 1;
}

.zg-hero--ready .zg-hero-btn::after {
  animation: zg-hero-btn-shine 5.2s ease-in-out 2.6s infinite;
}

@keyframes zg-hero-btn-shine {
  0%,
  100% {
    transform: translateX(-130%);
  }
  55% {
    transform: translateX(130%);
  }
}

.zg-hero-btn > * {
  position: relative;
  z-index: 2;
}

.zg-hero-btn:hover {
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.22),
    0 0 0 6px rgba(233, 78, 59, 0.14);
}

.zg-hero-btn:hover .plus {
  transform: rotate(90deg) scale(1.12);
  background: var(--accent);
}

.zg-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 0;
}

.zg-hero-ghost-arrow {
  display: inline-block;
  transition: transform 220ms var(--zg-ease);
}

.zg-hero-ghost:hover .zg-hero-ghost-arrow {
  transform: translate3d(4px, 0, 0);
}

.zg-hero-ghost:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.zg-hero-ghost:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* Portrait column — bleeds to viewport edge */
@keyframes zg-hero-curtain {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(100%, 0, 0);
  }
}

.zg-hero-stage {
  position: relative;
  background: #050505;
  min-height: 100%;
  border-radius: 0 0 0 var(--radius-image);
  overflow: hidden;
  isolation: isolate;
  --hero-scroll-y: 0px;
  perspective: 1600px;
}

.zg-hero-stage::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto -20% -30% auto;
  width: 70%;
  height: 70%;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(233, 78, 59, 0.32) 0%,
    rgba(233, 78, 59, 0.1) 36%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  mix-blend-mode: screen;
}

.zg-hero--ready .zg-hero-stage::after {
  animation: zg-hero-spotlight-in 1.8s var(--zg-ease) 700ms forwards,
    zg-hero-spotlight-drift 12s ease-in-out 2.5s infinite;
}

@keyframes zg-hero-spotlight-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes zg-hero-spotlight-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-12px, -16px, 0) scale(1.08);
  }
}

.zg-hero-stage-reveal {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: var(--canvas);
  pointer-events: none;
}

.zg-hero--ready .zg-hero-stage-reveal {
  animation: zg-hero-curtain 1.1s var(--zg-ease-out) 60ms both;
}

.zg-hero-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform: translate3d(
    calc(var(--hero-cursor-x, 0) * 14px),
    calc(var(--hero-cursor-y, 0) * 14px + var(--hero-scroll-y, 0px)),
    0
  );
  transition: transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.zg-hero-stage.is-tracking .zg-hero-photo-wrap {
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.zg-hero-photo-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.65s ease;
}

.zg-hero-photo-poster.is-hidden {
  opacity: 0;
  animation: none !important;
}

.zg-hero-photo-video {
  opacity: 0;
  transition: opacity 0.65s ease;
}

.zg-hero-photo-video.is-active {
  opacity: 1;
}

.zg-hero-photo {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  object-position: 58% 42%;
  display: block;
  transform: scale(1.16);
  will-change: transform;
  filter: grayscale(1) contrast(1.08);
  pointer-events: none;
}

.zg-hero--ready .zg-hero-photo {
  animation:
    zg-hero-photo-enter 2.4s var(--zg-ease) 120ms both,
    zg-hero-photo-breathe 16s ease-in-out 2.6s infinite alternate;
}

.zg-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.15) 22%,
      rgba(0, 0, 0, 0) 48%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0.72) 100%
    );
}

.zg-hero--ready .zg-hero-scrim {
  animation: zg-hero-scrim-in 1.2s var(--zg-ease) 400ms both;
}

.zg-hero-stage-label {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 3vw, 36px);
  bottom: clamp(24px, 4vw, 40px);
}

/* ========================================================
   STRIP — universities / clients / tools (shared shell)
   ======================================================== */
.zg-cred-section {
  padding: 0 0 44px;
}

.zg-client-marquee--stack .zg-cred-head {
  padding-top: 28px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.zg-client-marquee--inline {
  display: grid;
  grid-template-columns: minmax(200px, auto) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.zg-client-marquee--inline .zg-cred-head {
  padding-top: 0;
  border-top: none;
}

.zg-client-marquee--inline .zg-cred-marquee-wrap {
  margin-top: 0;
}

.zg-client-marquee--inline .zg-cred-label {
  max-width: 16ch;
  line-height: 1.45;
}

.zg-hero + .zg-cred-section {
  padding-top: 0;
  margin-top: -8px;
}

.zg-cred-head {
  padding-top: 28px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.zg-cred-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.zg-cred-label::before {
  content: "— ";
}

.zg-cred-marquee-wrap {
  position: relative;
  margin-top: 20px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.zg-cred-marquee {
  overflow: hidden;
}

.zg-cred-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(48px, 7vw, 88px);
  width: max-content;
  margin: 0;
  padding: 8px 0 6px;
  list-style: none;
  animation: zg-client-marquee 42s linear infinite;
}

.zg-cred-marquee-wrap:hover .zg-cred-marquee-track {
  animation-play-state: paused;
}

@media (hover: none) {
  .zg-cred-marquee-wrap:hover .zg-cred-marquee-track {
    animation-play-state: running;
  }
}

@keyframes zg-client-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.zg-client-logo-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 68px;
}

.zg-client-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.55) contrast(0.95);
  opacity: 0.62;
}

.zg-client-logo--wide {
  height: 56px;
  max-width: 260px;
}

.zg-client-logo--default {
  height: 54px;
  max-width: 188px;
}

.zg-client-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: rgba(26, 26, 26, 0.46);
}

.zg-client-wordmark-top {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.zg-client-wordmark-bottom {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-top: 5px;
}

.zg-cred-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .zg-cred-marquee-wrap {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .zg-cred-marquee-track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 32px;
    padding: 0 24px;
  }
}

.zg-logo-strip-section {
  padding: 36px 0;
}

.zg-strip {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.zg-strip-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-muted);
  flex-shrink: 0;
}
.zg-logo-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.zg-logo-row .zg-bullet {
  color: var(--ink-muted);
  opacity: 0.5;
  font-size: 14px;
}
.zg-ext-logo {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  filter: grayscale(1) brightness(0.4) contrast(1.1);
  opacity: 0.7;
  transition: opacity 160ms ease, filter 160ms ease;
}

.zg-ext-logo--compact {
  height: 20px;
  max-width: 88px;
}
.zg-logo-row.mono .zg-ext-logo:hover {
  opacity: 1;
}
.zg-text-mark {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
  opacity: 0.55;
}

/* ========================================================
   HOW WE WORK — tall ink process cards
   ======================================================== */
.zg-process-section {
  padding: 88px 0 120px;
}

.zg-process-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 48px;
  align-items: end;
}

.zg-process-opener {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 640px;
}

.zg-process-opener .label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

.zg-process-opener .label::before {
  content: "— ";
}

.zg-process-opener h2 {
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

.zg-process-opener h2 .muted {
  display: block;
  color: #6f6a62;
  margin-top: 10px;
  font-size: 0.92em;
}

.zg-process-lede {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: #6f6a62;
  padding-bottom: 6px;
}

.zg-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
}

@media (min-width: 1180px) {
  .zg-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.zg-process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  border-radius: var(--radius-image);
  background: linear-gradient(180deg, #101010 0%, #060606 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  isolation: isolate;
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 260ms ease, border-color 260ms ease;
}

.zg-process-section--revealed .zg-process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
  border-color: rgba(233, 78, 59, 0.28);
}

.zg-process-card-copy {
  position: relative;
  z-index: 2;
  padding: 30px 28px 14px;
}

.zg-process-step {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  transition: letter-spacing 260ms ease;
}

.zg-process-section--revealed .zg-process-card:hover .zg-process-step {
  letter-spacing: 0.2em;
}

.zg-process-title {
  margin: 0;
  font-size: clamp(28px, 2.5vw, 34px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #ffffff;
}

.zg-process-body {
  margin: 12px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  max-width: 24ch;
  text-wrap: balance;
}

/* ---- abstract motion stage ---- */
.zg-process-stage {
  position: relative;
  flex: 1;
  min-height: 380px;
  margin-top: auto;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.zg-process-floor {
  position: absolute;
  left: 50%;
  bottom: -8%;
  z-index: 0;
  width: 130%;
  height: 55%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(233, 78, 59, 0.55) 0%,
    rgba(233, 78, 59, 0.22) 32%,
    rgba(233, 78, 59, 0.06) 52%,
    rgba(233, 78, 59, 0) 72%
  );
  animation: zg-process-floor-pulse 5.5s ease-in-out infinite;
  pointer-events: none;
}

.zg-process-floor--stack {
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(233, 78, 59, 0.48) 0%,
    rgba(233, 78, 59, 0.16) 38%,
    rgba(233, 78, 59, 0) 70%
  );
}

.zg-process-floor--arc {
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(233, 78, 59, 0.5) 0%,
    rgba(233, 78, 59, 0.12) 42%,
    rgba(233, 78, 59, 0) 68%
  );
}

.zg-process-floor--grid {
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(233, 78, 59, 0.46) 0%,
    rgba(233, 78, 59, 0.14) 40%,
    rgba(233, 78, 59, 0) 70%
  );
}

@keyframes zg-process-floor-pulse {
  0%,
  100% {
    opacity: 0.82;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

@media (hover: hover) {
  .zg-process-section--revealed .zg-process-card:hover .zg-process-floor {
    animation-duration: 2.6s;
    filter: brightness(1.25) saturate(1.15);
    transform: translateX(-50%) scale(1.12);
  }
}

/* ---- WebGL canvas stage ---- */
.zg-process-canvas-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.zg-process-canvas-wrap--idle {
  position: absolute;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}

.zg-process-canvas-wrap--live {
  z-index: 2;
}

.zg-process-canvas-wrap canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.zg-process-stage--fallback {
  place-items: center;
}

.zg-process-fallback-label {
  position: relative;
  z-index: 1;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* SVG fallback (when WebGL unavailable) */
.zg-process-svg-wrap {
  position: relative;
  z-index: 1;
  width: min(72%, 200px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.zg-process-svg-wrap.zg-process-stack {
  width: min(78%, 210px);
  height: 190px;
  aspect-ratio: auto;
}

.zg-process-svg-wrap.zg-process-stack svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.zg-process-svg-wrap.zg-process-stack .layer-1 {
  animation: zg-process-stack-1 5s ease-in-out infinite;
}

.zg-process-svg-wrap.zg-process-stack .layer-2 {
  animation: zg-process-stack-2 5s ease-in-out infinite;
  opacity: 0.85;
}

.zg-process-svg-wrap.zg-process-stack .layer-3 {
  animation: zg-process-stack-3 5s ease-in-out infinite;
  opacity: 0.55;
}

.zg-process-svg-orb {
  animation: zg-process-orb-float 6.5s ease-in-out infinite;
}

.zg-process-svg-wrap.zg-process-grid {
  width: min(76%, 220px);
  aspect-ratio: 1;
}

.zg-process-svg-wrap.zg-process-grid svg {
  width: 100%;
  height: 100%;
}

.zg-process-grid-cell {
  fill: rgba(233, 78, 59, 0.14);
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1.5;
}

.zg-process-grid-cell--path {
  fill: rgba(233, 78, 59, 0.42);
  stroke: rgba(255, 184, 168, 0.35);
  animation: zg-process-grid-pulse 4.32s ease-in-out infinite;
}

.zg-process-grid-line {
  stroke-dasharray: 420;
  animation: zg-process-grid-line 4.32s ease-in-out infinite;
}

.zg-process-arc {
  position: relative;
  z-index: 1;
  width: min(88%, 240px);
  height: auto;
  margin: 0 auto;
}

.zg-process-arc-beam {
  stroke-dasharray: 280;
  animation: zg-process-arc-draw 4.8s ease-in-out infinite;
}

.zg-process-arc-node {
  animation: zg-process-arc-node 4.8s ease-in-out infinite;
}

@keyframes zg-process-orb-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes zg-process-stack-1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes zg-process-stack-2 {
  0%, 100% { transform: translateY(14px) scale(0.94); }
  50% { transform: translateY(4px) scale(0.97); }
}

@keyframes zg-process-stack-3 {
  0%, 100% { transform: translateY(28px) scale(0.88); }
  50% { transform: translateY(18px) scale(0.91); }
}

@keyframes zg-process-arc-draw {
  0% { stroke-dashoffset: 280; opacity: 0.35; }
  45%, 65% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -40; opacity: 0.45; }
}

@keyframes zg-process-arc-node {
  0%, 100% { opacity: 0.55; }
  45%, 65% { opacity: 1; }
}

@keyframes zg-process-grid-pulse {
  0%, 12%, 100% {
    fill: rgba(233, 78, 59, 0.38);
    transform: scale(1);
    transform-box: fill-box;
    transform-origin: center;
  }
  6% {
    fill: rgba(233, 78, 59, 0.92);
    transform: scale(1.06);
    transform-box: fill-box;
    transform-origin: center;
  }
}

@keyframes zg-process-grid-line {
  0%, 100% {
    stroke-dashoffset: 420;
    opacity: 0.25;
  }
  40%, 70% {
    stroke-dashoffset: 0;
    opacity: 0.75;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zg-process-floor,
  .zg-process-svg-orb,
  .zg-process-svg-wrap.zg-process-stack svg,
  .zg-process-grid-cell--path,
  .zg-process-grid-line,
  .zg-process-arc-beam,
  .zg-process-arc-node {
    animation: none !important;
  }

  .zg-process-arc-beam {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  .zg-process-grid-line {
    stroke-dashoffset: 0;
    opacity: 0.75;
  }

  .zg-process-grid-cell--path {
    fill: rgba(233, 78, 59, 0.78);
  }

  .zg-process-section .zg-process-opener,
  .zg-process-section .zg-process-lede,
  .zg-process-section .zg-process-card,
  .zg-process-section .zg-process-step,
  .zg-process-section .zg-process-title,
  .zg-process-section .zg-process-body,
  .zg-process-section .zg-process-stage,
  .zg-process-section .zg-process-floor {
    opacity: 1 !important;
    transform: none !important;
  }

  .zg-process-section--revealed .zg-process-card:hover {
    transform: none !important;
    box-shadow: none;
  }
}

/* ========================================================
   SECTION OPENER (centered, two-tone, em-dash label)
   ======================================================== */
.zg-opener {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
.zg-opener .label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}
.zg-opener .label::before { content: "— "; }
.zg-opener h2 {
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
.zg-opener h2 .muted { display: block; color: var(--ink-muted); margin-top: 4px; }

/* ========================================================
   WORK / IMAGE FEATURE SECTION
   ======================================================== */
.zg-work-section {
  padding: 48px 0 140px;
}

.zg-work-header {
  max-width: 720px;
}

.zg-work-opener {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 680px;
}

.zg-work-opener .label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

.zg-work-opener .label::before {
  content: "— ";
}

.zg-work-opener h2 {
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

.zg-work-opener h2 .muted {
  display: block;
  color: #6f6a62;
  margin-top: 10px;
  font-size: 0.92em;
}

.zg-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 52px;
  min-height: 720px;
  align-items: stretch;
}

.zg-work-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  min-height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .zg-work-section .zg-work-opener,
  .zg-work-section .zg-image-feat,
  .zg-work-section .zg-image-feat-photo,
  .zg-work-section .zg-image-feat-media,
  .zg-work-section .zg-image-feat-rail,
  .zg-work-section .zg-image-feat-index,
  .zg-work-section .zg-image-feat-title,
  .zg-work-section .zg-image-feat-body,
  .zg-work-section .zg-image-feat-meta {
    opacity: 1 !important;
    transform: none !important;
  }
}

.zg-image-feat {
  --parallax-y: 0px;
  position: relative;
  border-radius: var(--radius-image);
  overflow: hidden;
  background: #050505;
  isolation: isolate;
  color: var(--ink-inverse);
  transition:
    transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 360ms ease;
}

.zg-image-feat.lg {
  min-height: 720px;
  height: 100%;
}

.zg-image-feat.sm {
  min-height: 0;
  height: 100%;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-work-section--revealed .zg-image-feat:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  }
}

.zg-image-feat-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform: translate3d(0, var(--parallax-y), 0);
  transition: transform 480ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.zg-image-feat-photo-poster {
  z-index: 1;
  transition: opacity 0.65s ease;
}

.zg-image-feat-photo-poster.is-hidden {
  opacity: 0;
}

.zg-image-feat-photo-video {
  opacity: 0;
  transition: opacity 0.65s ease;
}

.zg-image-feat-photo-video.is-active {
  opacity: 1;
}

.zg-image-feat-photo {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1);
  transition:
    transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.65s ease,
    filter 0.6s ease;
  filter: grayscale(1) contrast(1.08);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .zg-image-feat-photo {
    animation: zg-image-feat-drift 22s ease-in-out infinite alternate;
  }

  .zg-work-section--revealed .zg-image-feat:hover .zg-image-feat-photo,
  .zg-work-section--revealed .zg-image-feat:focus-within .zg-image-feat-photo {
    transform: scale(1.08) translate3d(0, -4px, 0);
    filter: grayscale(0.65) contrast(1.18) brightness(1.08);
    animation-play-state: paused;
  }
}

@keyframes zg-image-feat-drift {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.045) translate3d(-1.2%, -0.8%, 0);
  }
}

.zg-image-feat-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.08) 42%,
      rgba(0, 0, 0, 0) 62%
    );
}

.zg-image-feat-rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.72) 38%,
    rgba(0, 0, 0, 0.2) 72%,
    rgba(0, 0, 0, 0) 100%
  );
}

.zg-image-feat.sm .zg-image-feat-rail {
  height: 72%;
}

.zg-image-feat-index {
  position: absolute;
  z-index: 2;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
  transition:
    color 360ms ease,
    transform 480ms cubic-bezier(0.2, 0.7, 0.2, 1),
    letter-spacing 360ms ease;
}

.zg-image-feat.lg .zg-image-feat-index {
  bottom: 100px;
  left: 28px;
  font-size: clamp(100px, 12vw, 180px);
}

.zg-image-feat.sm .zg-image-feat-index {
  top: 18px;
  left: 22px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.38);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-work-section--revealed .zg-image-feat.lg:hover .zg-image-feat-index {
    color: rgba(255, 255, 255, 0.18);
    transform: translate3d(-6px, -10px, 0) scale(1.06);
  }

  .zg-work-section--revealed .zg-image-feat.sm:hover .zg-image-feat-index {
    color: var(--accent);
    letter-spacing: 0.22em;
    transform: translateX(4px);
  }
}

.zg-image-feat-content {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 100%;
}

.zg-image-feat.lg .zg-image-feat-content {
  padding: 48px 40px 44px;
  max-width: 92%;
}

.zg-image-feat.sm .zg-image-feat-content {
  padding: 28px 26px 30px;
}

.zg-image-feat-title {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-wrap: balance;
  color: var(--ink-inverse) !important;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.65);
}

.zg-image-feat.sm .zg-image-feat-title {
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1;
}

.zg-image-feat-title .zg-highlight {
  margin-top: 0.06em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.zg-image-feat-title .zg-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  transform: translateX(-130%);
  pointer-events: none;
  mix-blend-mode: screen;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-work-section--revealed .zg-image-feat:hover .zg-image-feat-title .zg-highlight::after {
    transform: translateX(130%);
    transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
}

.zg-image-feat-content {
  transition: transform 480ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-work-section--revealed .zg-image-feat:hover .zg-image-feat-content {
    transform: translateY(-6px);
  }
}

.zg-image-feat-rail {
  transition: opacity 360ms ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-work-section--revealed .zg-image-feat:hover .zg-image-feat-rail {
    opacity: 0.88;
  }
}

.zg-image-feat-body {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
  max-width: 440px;
}

.zg-image-feat.sm .zg-image-feat-body {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.48;
  max-width: 100%;
}

.zg-image-feat-meta {
  margin-top: 20px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.zg-image-feat-meta::before {
  content: "— ";
}

.zg-image-feat.sm .zg-image-feat-meta {
  margin-top: 14px;
  font-size: 11px;
}

/* ========================================================
   TESTIMONIALS — rotated pastel proof cards
   ======================================================== */
.zg-proof-section {
  padding: 88px 0 120px;
  perspective: 1600px;
}

.zg-proof-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.zg-proof-opener {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.zg-proof-opener .label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

.zg-proof-opener .label::before {
  content: "— ";
}

.zg-proof-opener h2 {
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

.zg-proof-opener h2 .muted {
  display: block;
  color: var(--ink-muted);
  margin-top: 8px;
}

.zg-proof-opener h2 .zg-highlight {
  white-space: nowrap;
  box-decoration-break: slice;
  -webkit-box-decoration-break: slice;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.zg-proof-opener h2 .zg-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 32%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 68%
  );
  transform: translateX(-130%);
  pointer-events: none;
  animation: zg-proof-highlight-sheen 6s ease-in-out 1.2s infinite;
}

@keyframes zg-proof-highlight-sheen {
  0%,
  100% {
    transform: translateX(-130%);
  }
  55% {
    transform: translateX(130%);
  }
}

.zg-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  padding: 12px 8px 24px;
}

.zg-proof-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --base-rot: 0deg;
  --tone-rgb: 26, 26, 26;
  position: relative;
  margin: 0;
  min-height: 300px;
  padding: var(--card-pad);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotate(var(--base-rot)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: box-shadow 360ms ease;
}

.zg-proof-card--blush {
  background: var(--card-blush);
  --tone-rgb: 200, 90, 90;
}

.zg-proof-card--sage {
  background: var(--card-sage);
  --tone-rgb: 90, 140, 96;
}

.zg-proof-card--lilac {
  background: var(--card-lilac);
  --tone-rgb: 130, 110, 180;
}

.zg-proof-card--left {
  --base-rot: -3deg;
}

.zg-proof-card--right {
  --base-rot: 4deg;
}

.zg-proof-card--stagger {
  margin-top: 28px;
}

.zg-proof-section--revealed .zg-proof-card {
  animation: zg-proof-breathe 8s ease-in-out infinite;
}

.zg-proof-section--revealed .zg-proof-card--right {
  animation-delay: -2.7s;
  animation-duration: 9s;
}

.zg-proof-section--revealed .zg-proof-card:nth-child(3) {
  animation-delay: -5.4s;
  animation-duration: 8.5s;
}

@keyframes zg-proof-breathe {
  0%,
  100% {
    transform:
      rotate(var(--base-rot))
      rotateX(var(--tilt-x))
      rotateY(var(--tilt-y))
      translateY(0);
  }
  50% {
    transform:
      rotate(calc(var(--base-rot) + 0.6deg))
      rotateX(var(--tilt-x))
      rotateY(var(--tilt-y))
      translateY(-3px);
  }
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-proof-section--revealed .zg-proof-card:hover {
    animation: none;
    transform:
      rotate(0deg)
      rotateX(var(--tilt-x))
      rotateY(var(--tilt-y))
      translateY(-8px)
      scale(1.02);
    box-shadow:
      0 32px 60px -20px rgba(var(--tone-rgb), 0.45),
      0 18px 32px -16px rgba(0, 0, 0, 0.18);
    z-index: 2;
  }
}

.zg-proof-quote {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  text-wrap: balance;
}

.zg-proof-quote::before {
  content: "\201C";
  color: var(--accent);
  display: inline-block;
  transform-origin: 30% 80%;
  transition:
    transform 360ms cubic-bezier(0.5, 1, 0.2, 1),
    text-shadow 360ms ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-proof-section--revealed .zg-proof-card:hover .zg-proof-quote::before {
    transform: scale(1.35) rotate(-6deg);
    text-shadow: 0 0 18px rgba(233, 78, 59, 0.55);
  }
}

.zg-proof-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.zg-proof-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-inverse);
  background: var(--ink);
  transition:
    box-shadow 360ms ease,
    transform 360ms cubic-bezier(0.5, 1, 0.2, 1);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-proof-section--revealed .zg-proof-card:hover .zg-proof-avatar {
    transform: scale(1.08);
    box-shadow:
      0 0 0 3px rgba(233, 78, 59, 0.32),
      0 0 18px rgba(233, 78, 59, 0.42);
  }
}

.zg-proof-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.zg-proof-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.zg-proof-role {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(26, 26, 26, 0.62);
}

.zg-proof-mono {
  position: absolute;
  right: 10px;
  bottom: -18px;
  font-size: clamp(88px, 10vw, 112px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--ink);
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
  transform-origin: 80% 80%;
  transition:
    opacity 480ms ease,
    transform 520ms cubic-bezier(0.5, 1, 0.2, 1),
    color 480ms ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-proof-section--revealed .zg-proof-card:hover .zg-proof-mono {
    opacity: 0.32;
    transform: rotate(-8deg) scale(1.12) translate(-6px, -8px);
    color: var(--accent);
  }
}

@media (prefers-reduced-motion: reduce) {
  .zg-proof-section .zg-proof-opener,
  .zg-proof-section .zg-proof-card,
  .zg-proof-section .zg-proof-mono,
  .zg-proof-section .zg-proof-quote,
  .zg-proof-section .zg-proof-byline {
    opacity: 1 !important;
    transform: none !important;
  }

  .zg-proof-section .zg-proof-card {
    animation: none !important;
  }

  .zg-proof-opener h2 .zg-highlight::after {
    animation: none !important;
  }
}

/* ========================================================
   STAT BLOCK — editorial spread + WebGL hero column
   ======================================================== */
.zg-stat-section {
  padding: 32px 0 120px;
}

.zg-stat-panel {
  position: relative;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-image);
  overflow: hidden;
}

.zg-stat-content {
  padding: 72px 80px 64px;
}

.zg-stat-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.zg-stat-opener {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 520px;
}

.zg-stat-opener .label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.zg-stat-opener .label::before {
  content: "— ";
}

.zg-stat-opener h2 {
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
  color: var(--ink-inverse);
}

.zg-stat-opener h2 .zg-highlight {
  color: var(--ink-inverse);
  background: var(--accent);
  padding: 0.05em 0.25em;
  border-radius: 3px;
  white-space: nowrap;
  box-decoration-break: slice;
  -webkit-box-decoration-break: slice;
}

.zg-stat-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}

.zg-stat-hero-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: clamp(260px, 30vw, 340px);
}

.zg-stat-hero-visual::before {
  content: "";
  position: absolute;
  inset: auto 4% 4%;
  height: 38%;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(233, 78, 59, 0.14) 0%,
    rgba(233, 78, 59, 0.04) 48%,
    rgba(233, 78, 59, 0) 78%
  );
  pointer-events: none;
  z-index: 0;
}

.zg-stat-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.zg-stat-visual canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.zg-stat-visual--ready {
  opacity: 1;
}

.zg-stat-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.zg-stat-hero-stat {
  text-align: right;
  width: 100%;
  max-width: 400px;
}

.zg-stat-hero-num {
  font-size: clamp(96px, 11vw, 152px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.zg-stat-hero-num .dash {
  opacity: 0.72;
  margin: 0 0.02em;
}

.zg-stat-hero-rule {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--accent);
  margin: 20px 0 16px auto;
}

.zg-stat-hero-desc {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  max-width: 220px;
  margin-left: auto;
}

.zg-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 56px;
}

.zg-stat {
  padding: 0 48px;
}

.zg-stat:first-child {
  padding-left: 0;
}

.zg-stat:last-child {
  padding-right: 0;
}

.zg-stat + .zg-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.zg-stat-num {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.zg-stat-num .unit {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 1px;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.zg-stat-desc {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  max-width: 26ch;
}

@media (prefers-reduced-motion: reduce) {
  .zg-stat-section .zg-stat-opener,
  .zg-stat-section .zg-stat-hero-visual,
  .zg-stat-section .zg-stat-hero-stat,
  .zg-stat-section .zg-stat {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========================================================
   FOUNDERS — tall portrait cards + split header
   ======================================================== */
.zg-founders-section {
  padding: 88px 0 120px;
  perspective: 1600px;
}

.zg-founders-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 48px;
  align-items: end;
}

.zg-founders-opener {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 640px;
}

.zg-founders-opener .label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

.zg-founders-opener .label::before {
  content: "— ";
}

.zg-founders-opener h2 {
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

.zg-founders-opener h2 .muted {
  display: block;
  color: var(--ink-muted);
  margin-top: 8px;
}

.zg-founders-opener h2 .zg-highlight {
  white-space: nowrap;
  box-decoration-break: slice;
  -webkit-box-decoration-break: slice;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.zg-founders-opener h2 .zg-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 32%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 68%
  );
  transform: translateX(-130%);
  pointer-events: none;
  animation: zg-founders-highlight-sheen 6.5s ease-in-out 1.8s infinite;
}

@keyframes zg-founders-highlight-sheen {
  0%,
  100% {
    transform: translateX(-130%);
  }
  55% {
    transform: translateX(130%);
  }
}

.zg-founders-lede {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: #6f6a62;
  padding-bottom: 6px;
}

.zg-founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.zg-founders-cred-stack {
  display: grid;
  grid-template-columns: 220px repeat(4, max-content);
  column-gap: clamp(36px, 4vw, 56px);
  row-gap: clamp(24px, 3vw, 32px);
  margin-top: 44px;
  align-items: center;
}

.zg-founders-cred-row {
  display: contents;
}

.zg-founders-cred-label {
  grid-column: 1;
}

.zg-founders-cred-label .zg-cred-label {
  max-width: none;
  line-height: 1.45;
}

.zg-founders-cred-logos {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: subgrid;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zg-founders-cred-logos .zg-client-logo-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 52px;
}
.zg-founders-cred-logos .zg-founders-mark {
  display: block;
  width: auto;
  object-fit: contain;
  opacity: 0.78;
  filter: saturate(0.4);
  transition:
    opacity 320ms ease,
    filter 320ms ease,
    transform 360ms cubic-bezier(0.5, 1, 0.2, 1);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-founders-cred-logos .zg-client-logo-item:hover .zg-founders-mark {
    opacity: 1;
    filter: saturate(1);
    transform: translateY(-3px) scale(1.04);
  }
}

.zg-founders-cred-logos .zg-founders-mark--columbia {
  height: 42px;
  max-width: 100px;
}

.zg-founders-cred-logos .zg-founders-mark--yale {
  height: 28px;
  max-width: 78px;
}

.zg-founders-cred-logos .zg-founders-mark--intel {
  height: 26px;
  max-width: 74px;
}

.zg-founders-cred-logos .zg-founders-mark--microsoft {
  height: 24px;
  max-width: 118px;
}

.zg-founders-cred-logos .zg-founders-mark--lerer {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 48px;
}

.zg-founders-cred-logos .zg-founders-mark--related {
  height: 20px;
  max-width: 104px;
  width: auto;
}

.zg-founders-cred-logos .zg-founders-mark--warby {
  height: 34px;
  max-width: 86px;
}

.zg-founder-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 580px;
  border-radius: var(--radius-image);
  background: linear-gradient(180deg, #101010 0%, #060606 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  color: var(--ink-inverse);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition:
    box-shadow 360ms ease,
    border-color 360ms ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-founders-section--revealed .zg-founder-card:hover {
    box-shadow:
      0 36px 64px -22px rgba(233, 78, 59, 0.32),
      0 22px 40px -18px rgba(0, 0, 0, 0.45);
    border-color: rgba(233, 78, 59, 0.32);
  }
}

.zg-founder-media {
  position: relative;
  flex: 1;
  min-height: 360px;
  background: #050505;
  overflow: hidden;
}

.zg-founder-media img {
  width: 106%;
  height: 106%;
  margin: -3%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(1) contrast(1.35) brightness(0.62);
  transform: scale(1);
  transition:
    transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.7s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .zg-founder-media img {
    animation: zg-founder-drift 24s ease-in-out infinite alternate;
  }

  .zg-founders-section--revealed .zg-founder-card:hover .zg-founder-media img {
    transform: scale(1.07) translate3d(-1%, -1%, 0);
    filter: grayscale(0) contrast(1.15) brightness(0.94) saturate(1.08);
    animation-play-state: paused;
  }
}

@keyframes zg-founder-drift {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.04) translate3d(-1%, -0.6%, 0);
  }
}

.zg-founder-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 10%, transparent 0%, rgba(0, 0, 0, 0.35) 58%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
  transition: opacity 380ms ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-founders-section--revealed .zg-founder-card:hover .zg-founder-media::after {
    opacity: 0.78;
  }
}

.zg-founder-copy {
  position: relative;
  z-index: 2;
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-founders-section--revealed .zg-founder-card:hover .zg-founder-copy {
    transform: translateY(-6px);
  }
}

.zg-founder-meta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: letter-spacing 360ms ease;
}

.zg-founder-meta::before {
  content: "— ";
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-founders-section--revealed .zg-founder-card:hover .zg-founder-meta {
    letter-spacing: 0.18em;
  }
}

.zg-founder-name {
  position: relative;
  margin: 0;
  font-size: clamp(34px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink-inverse);
  display: inline-block;
  align-self: flex-start;
}

.zg-founder-name::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(0.5, 1, 0.2, 1);
  box-shadow: 0 0 14px rgba(233, 78, 59, 0.55);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-founders-section--revealed .zg-founder-card:hover .zg-founder-name::after {
    transform: scaleX(1);
  }
}

.zg-founder-bio {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36ch;
  transition: color 360ms ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-founders-section--revealed .zg-founder-card:hover .zg-founder-bio {
    color: rgba(255, 255, 255, 0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  .zg-founders-section .zg-founders-opener,
  .zg-founders-section .zg-founders-lede,
  .zg-founders-section .zg-founder-card,
  .zg-founders-section .zg-founder-media,
  .zg-founders-section .zg-founder-media img,
  .zg-founders-section .zg-founder-meta,
  .zg-founders-section .zg-founder-name,
  .zg-founders-section .zg-founder-bio {
    opacity: 1 !important;
    transform: none !important;
  }

  .zg-founders-section .zg-founders-cred-stack {
    opacity: 1 !important;
    transform: none !important;
  }

  .zg-founders-opener h2 .zg-highlight::after,
  .zg-founder-media img {
    animation: none !important;
  }

  .zg-founders-section--revealed .zg-founder-card:hover {
    transform: none !important;
    box-shadow: none;
  }

  .zg-founders-section--revealed .zg-founder-card:hover .zg-founder-media img {
    transform: none !important;
    filter: grayscale(1) contrast(1.35) brightness(0.62);
  }
}

/* ========================================================
   JUNGLE — animal portrait marquee
   ======================================================== */
.zg-jungle-section {
  padding: 64px 0 88px;
  overflow: hidden;
}

.zg-jungle-opener {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto 44px;
  text-align: center;
}

.zg-jungle-opener .label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

.zg-jungle-opener .label::before {
  content: "— ";
}

.zg-jungle-opener h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

.zg-jungle-lede {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.55;
  color: #6f6a62;
}

.zg-jungle-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.zg-jungle-marquee-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.zg-jungle-track {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.6vw, 40px);
  width: max-content;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  animation: zg-jungle-marquee 68s linear infinite;
}

.zg-jungle-track.zg-jungle-track--reverse {
  animation: zg-jungle-marquee 68s linear infinite reverse;
}

.zg-jungle-marquee-wrap:hover .zg-jungle-track {
  animation-play-state: paused;
}

@media (hover: none) {
  .zg-jungle-marquee-wrap:hover .zg-jungle-track {
    animation-play-state: running;
  }
}

@keyframes zg-jungle-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.zg-jungle-portrait {
  position: relative;
  flex-shrink: 0;
  width: clamp(84px, 9vw, 112px);
  height: clamp(84px, 9vw, 112px);
  border-radius: 999px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 0 0 1px rgba(26, 26, 26, 0.06);
  transition: box-shadow 320ms ease;
}

.zg-jungle-portrait--video {
  box-shadow:
    0 0 0 1px rgba(26, 26, 26, 0.06),
    0 0 0 3px rgba(233, 78, 59, 0.14);
}

.zg-jungle-section--revealed .zg-jungle-portrait:hover {
  box-shadow:
    0 0 0 2px rgba(233, 78, 59, 0.22),
    0 12px 24px rgba(0, 0, 0, 0.08);
}

.zg-jungle-portrait img,
.zg-jungle-portrait video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.1) brightness(0.9);
  transition: filter 320ms ease;
}

.zg-jungle-section--revealed .zg-jungle-portrait:hover img,
.zg-jungle-section--revealed .zg-jungle-portrait:hover video {
  filter: grayscale(0.1) contrast(1.06) brightness(1);
}

.zg-jungle-portrait-ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .zg-jungle-marquee-wrap {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .zg-jungle-track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 0 8px;
  }

  .zg-jungle-section .zg-jungle-opener,
  .zg-jungle-section .zg-jungle-stage,
  .zg-jungle-section .zg-jungle-track {
    opacity: 1 !important;
    transform: none !important;
  }

  .zg-jungle-section--revealed .zg-jungle-portrait:hover {
    box-shadow: 0 0 0 1px rgba(26, 26, 26, 0.06);
  }
}

/* ========================================================
   TRUST BAND — client marquee
   ======================================================== */
.zg-trust-band {
  padding: 8px 0 56px;
}

.zg-trust-band .zg-client-logo {
  height: 40px;
  max-width: 168px;
}

.zg-trust-band .zg-client-logo--wide {
  height: 44px;
  max-width: 200px;
}

.zg-trust-band .zg-client-logo--default {
  height: 42px;
  max-width: 156px;
}

.zg-trust-band .zg-client-wordmark-top {
  font-size: 14px;
}

.zg-trust-band .zg-client-wordmark-bottom {
  font-size: 12px;
}

/* ========================================================
   TURNTABLE — shared vinyl motif
   ======================================================== */
.zg-turntable {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.zg-turntable--feature {
  right: clamp(12px, 3vw, 32px);
  bottom: clamp(-24px, -2vw, -12px);
  width: clamp(168px, 22vw, 260px);
  height: clamp(168px, 22vw, 260px);
}

.zg-turntable--modal {
  right: -8px;
  bottom: -18px;
  width: 148px;
  height: 148px;
}

.zg-turntable-vinyl {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.zg-turntable-disc {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0 18%, transparent 19%),
    repeating-radial-gradient(
      circle at 50% 50%,
      #151515 0 1px,
      #0d0d0d 1px 3px
    );
  animation: zg-vinyl-spin 5.2s linear infinite;
}

.zg-turntable-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(
    from 210deg,
    transparent 0deg,
    rgba(255, 255, 255, 0.07) 28deg,
    transparent 56deg,
    transparent 360deg
  );
  mix-blend-mode: screen;
}

.zg-turntable-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34%;
  height: 34%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--ink-inverse);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 360ms ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-final-card:hover .zg-turntable-label,
  .zg-book-modal-brand:hover .zg-turntable-label {
    box-shadow:
      inset 0 0 0 2px rgba(255, 255, 255, 0.28),
      0 0 0 6px rgba(233, 78, 59, 0.18),
      0 4px 18px rgba(233, 78, 59, 0.45);
  }
}

.zg-turntable--modal .zg-turntable-label {
  font-size: 22px;
}

.zg-turntable-arm {
  position: absolute;
  top: 6px;
  right: clamp(28px, 4vw, 36px);
  width: clamp(88px, 11vw, 112px);
  height: clamp(88px, 11vw, 112px);
  z-index: 2;
  transform: rotate(0deg);
  transform-origin: 100% 0%;
  transition: transform 520ms cubic-bezier(0.5, 1, 0.2, 1);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .zg-final-card:hover .zg-turntable-arm,
  .zg-book-modal-brand:hover .zg-turntable-arm {
    transform: rotate(-10deg);
  }
}

.zg-turntable--modal .zg-turntable-arm {
  right: 24px;
  width: 72px;
  height: 72px;
}

.zg-turntable-arm-pivot {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(12px, 1.4vw, 14px);
  height: clamp(12px, 1.4vw, 14px);
  border-radius: 50%;
  background: #2a2a2a;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.zg-turntable-arm-shaft {
  position: absolute;
  top: 5px;
  right: 5px;
  width: clamp(58px, 6.5vw, 72px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3a3a3a 0%, #1a1a1a 100%);
  transform-origin: 100% 50%;
  transform: rotate(-42deg);
}

.zg-turntable--modal .zg-turntable-arm-shaft {
  width: 54px;
  height: 3px;
}

.zg-turntable-arm-head {
  position: absolute;
  left: 0;
  top: 50%;
  width: clamp(13px, 1.5vw, 16px);
  height: clamp(13px, 1.5vw, 16px);
  border-radius: 50%;
  background: #161616;
  transform: translate(-40%, -50%);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.35);
}

.zg-turntable--modal .zg-turntable-arm-head {
  width: 11px;
  height: 11px;
}

.zg-final-card:hover .zg-turntable-disc,
.zg-book-modal-brand:hover .zg-turntable-disc {
  animation-duration: 3.4s;
}

@keyframes zg-vinyl-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .zg-turntable-disc {
    animation: none;
  }

  .zg-final-card:hover .zg-turntable-disc,
  .zg-book-modal-brand:hover .zg-turntable-disc {
    animation: none;
  }
}

/* ========================================================
   FINAL CTA — single pastel card
   ======================================================== */
.zg-final-cta {
  padding: 64px 0 88px;
  perspective: 1400px;
}

.zg-final-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  max-width: min(920px, 92vw);
  min-height: 420px;
  margin: 0 auto;
  padding: clamp(64px, 7vw, 88px) clamp(48px, 8vw, 96px) clamp(72px, 8vw, 96px);
  background: var(--card-butter);
  border-radius: var(--radius-card);
  transform: rotate(-2deg) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 28px);
  text-align: center;
  overflow: hidden;
  transition:
    transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 360ms ease;
}

.zg-final-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 24%, rgba(233, 78, 59, 0.18), transparent 38%),
    radial-gradient(circle at 78% 78%, rgba(233, 78, 59, 0.14), transparent 40%);
  filter: blur(36px);
  opacity: 0.55;
  pointer-events: none;
  animation: zg-final-glow 9s ease-in-out infinite alternate;
}

@keyframes zg-final-glow {
  0% {
    transform: translate3d(-2%, 0, 0) scale(1);
    opacity: 0.45;
  }
  100% {
    transform: translate3d(2%, -1%, 0) scale(1.08);
    opacity: 0.7;
  }
}

.zg-final-card > * {
  position: relative;
  z-index: 1;
}

.zg-final-card .zg-turntable {
  position: absolute;
  z-index: 1;
}

@media (min-width: 901px) and (hover: hover) {
  .zg-final-card:hover {
    box-shadow: 0 40px 80px -32px rgba(233, 78, 59, 0.35);
  }
}

.zg-final-card .zg-highlight {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.zg-final-card .zg-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 32%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 68%
  );
  transform: translateX(-130%);
  pointer-events: none;
  animation: zg-final-highlight-sheen 5.5s ease-in-out 1.4s infinite;
}

@keyframes zg-final-highlight-sheen {
  0%,
  100% {
    transform: translateX(-130%);
  }
  55% {
    transform: translateX(130%);
  }
}

.zg-final-card .zg-btn {
  --magnet-x: 0px;
  --magnet-y: 0px;
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
  transition:
    transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1),
    background 200ms ease,
    box-shadow 240ms ease;
}

.zg-final-card .zg-btn:hover {
  box-shadow: 0 18px 36px -12px rgba(233, 78, 59, 0.5);
}

.zg-final-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.zg-final-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 78, 59, 0.85) 0%, rgba(233, 78, 59, 0) 70%);
  opacity: 0;
  filter: blur(0.5px);
  animation: zg-final-particle 14s ease-in-out infinite;
}

.zg-final-particles span:nth-child(1) {
  left: 8%;
  top: 72%;
  animation-delay: 0s;
}
.zg-final-particles span:nth-child(2) {
  left: 18%;
  top: 38%;
  animation-delay: -2.4s;
  width: 4px;
  height: 4px;
}
.zg-final-particles span:nth-child(3) {
  left: 32%;
  top: 84%;
  animation-delay: -4.8s;
}
.zg-final-particles span:nth-child(4) {
  left: 46%;
  top: 18%;
  animation-delay: -7.2s;
  width: 5px;
  height: 5px;
}
.zg-final-particles span:nth-child(5) {
  left: 60%;
  top: 64%;
  animation-delay: -9.6s;
  width: 7px;
  height: 7px;
}
.zg-final-particles span:nth-child(6) {
  left: 72%;
  top: 24%;
  animation-delay: -12s;
}
.zg-final-particles span:nth-child(7) {
  left: 86%;
  top: 52%;
  animation-delay: -1.4s;
  width: 4px;
  height: 4px;
}
.zg-final-particles span:nth-child(8) {
  left: 26%;
  top: 16%;
  animation-delay: -6.5s;
  width: 5px;
  height: 5px;
}

@keyframes zg-final-particle {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  20%,
  80% {
    opacity: 0.7;
  }
  50% {
    transform: translate3d(14px, -36px, 0);
  }
}

.zg-final-sub {
  margin: 0 0 4px;
  max-width: 32ch;
}

.zg-final-sub .zg-highlight {
  font-weight: 600;
  white-space: nowrap;
  box-decoration-break: slice;
  -webkit-box-decoration-break: slice;
}

@media (prefers-reduced-motion: reduce) {
  .zg-final-card {
    transform: rotate(-2deg) !important;
  }
  .zg-final-card .zg-btn {
    transform: none !important;
  }
  .zg-final-card::before,
  .zg-final-particles span,
  .zg-final-card .zg-highlight::after {
    animation: none !important;
  }
}

/* ========================================================
   FOOTER — dark ink panel
   ======================================================== */
.zg-footer {
  padding: 8px 0 64px;
}

.zg-footer-panel {
  position: relative;
  background: var(--ink);
  color: var(--ink-inverse);
  border-radius: var(--radius-image);
  overflow: hidden;
}

.zg-footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 56px);
  padding: clamp(48px, 5.5vw, 72px) clamp(32px, 5vw, 80px) clamp(40px, 4vw, 56px);
}

@media (min-width: 901px) {
  .zg-footer-main {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 88px);
  }
}

.zg-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 460px;
}

.zg-footer-logo {
  display: block;
  line-height: 0;
  transition: opacity 160ms ease;
}

.zg-footer-logo:hover {
  opacity: 0.84;
}

.zg-footer-logo img {
  display: block;
  width: auto;
  height: clamp(56px, 6vw, 80px);
}

.zg-footer-tagline {
  margin: 0;
  font-size: var(--body-lg-size);
  font-weight: var(--body-lg-weight);
  line-height: var(--body-lg-leading);
  color: rgba(255, 255, 255, 0.58);
  max-width: 36ch;
}

.zg-footer-cta.zg-btn {
  margin-top: 4px;
  background: var(--ink-inverse);
  color: var(--ink);
}

.zg-footer-cta.zg-btn:hover {
  background: var(--canvas);
}

.zg-footer-cta.zg-btn .plus {
  background: rgba(26, 26, 26, 0.08);
}

.zg-footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-content: start;
}

@media (min-width: 901px) {
  .zg-footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 40px);
  }
}

.zg-footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

.zg-footer-col-label {
  margin: 0 0 12px;
  font-size: var(--label-size);
  font-weight: var(--label-weight);
  letter-spacing: var(--label-tracking);
  line-height: var(--label-leading);
  color: var(--accent);
  text-transform: uppercase;
}

.zg-footer-link,
.zg-footer-static {
  display: block;
  padding: 7px 0;
  font-size: var(--body-size);
  line-height: var(--body-leading);
  text-decoration: none;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.zg-footer-link {
  color: rgba(255, 255, 255, 0.88);
  background: none;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease;
}

.zg-footer-link {
  position: relative;
}

.zg-footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.zg-footer-link:hover {
  color: #fff;
}

.zg-footer-link:hover::after {
  width: 28px;
}

.zg-footer-static {
  color: rgba(255, 255, 255, 0.52);
  cursor: default;
}

.zg-footer-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  padding: 20px clamp(32px, 5vw, 80px) 24px;
  padding-right: clamp(96px, 14vw, 160px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--label-size);
  font-weight: var(--label-weight);
  letter-spacing: var(--label-tracking);
  line-height: var(--label-leading);
  color: rgba(255, 255, 255, 0.42);
}

.zg-footer-made {
  color: rgba(255, 255, 255, 0.52);
}

.zg-footer-heart {
  color: var(--accent);
  font-size: 1.05em;
  line-height: 1;
}

.zg-footer-mono {
  position: absolute;
  z-index: 0;
  right: clamp(20px, 4vw, 48px);
  bottom: 0;
  transform: translateY(38%);
  font-size: clamp(96px, 12vw, 168px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: #fff;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .zg-footer .zg-footer-panel,
  .zg-footer .zg-footer-logo,
  .zg-footer .zg-footer-tagline,
  .zg-footer .zg-footer-cta,
  .zg-footer .zg-footer-col-label,
  .zg-footer .zg-footer-link,
  .zg-footer .zg-footer-static,
  .zg-footer .zg-footer-bar,
  .zg-footer .zg-footer-mono,
  .zg-footer .zg-footer-heart {
    opacity: 1 !important;
    transform: none !important;
  }

  .zg-footer .zg-footer-mono {
    opacity: 0.05 !important;
  }

  .zg-footer .zg-footer-link::after {
    transition: none;
  }
}

/* ========================================================
   BOOK CALL MODAL — canvas panel + Calendly
   ======================================================== */
.zg-book-modal-scrim {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 32px);
  background: rgba(26, 26, 26, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: zg-book-scrim-in 260ms ease-out;
}

@keyframes zg-book-scrim-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.zg-book-modal {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(90dvh, 90vh);
  background: var(--canvas);
  border-radius: var(--radius-image);
  overflow: hidden;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.32);
  animation: zg-book-modal-in 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zg-book-modal-grab {
  display: none;
}

@keyframes zg-book-modal-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.zg-book-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--ink-inverse);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.zg-book-modal-close:hover {
  background: #2a2a2a;
}

.zg-book-modal-close:active {
  transform: scale(0.96);
}

.zg-book-modal-layout {
  display: grid;
  grid-template-columns: 1fr;
  min-height: min(720px, 88dvh);
  overflow-y: auto;
  max-height: inherit;
}

@media (min-width: 901px) {
  .zg-book-modal-layout {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  }

  .zg-book-modal-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .zg-book-modal-embed {
    grid-column: 2;
    grid-row: 1;
  }
}

.zg-book-modal-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(36px, 4.5vw, 52px) clamp(28px, 3.5vw, 40px) clamp(248px, 26vw, 272px);
  background: var(--canvas);
  overflow: hidden;
}

.zg-book-modal-brand .zg-h2 {
  text-align: left;
}

.zg-book-modal-lede {
  margin: 0;
  max-width: 22ch;
}

.zg-book-modal-lede .zg-highlight {
  font-weight: 600;
  white-space: nowrap;
  box-decoration-break: slice;
  -webkit-box-decoration-break: slice;
}

.zg-book-modal-note {
  margin: 0;
  max-width: 24ch;
  font-size: var(--body-size);
  font-weight: var(--body-weight);
  line-height: var(--body-leading);
  color: var(--ink-muted);
}

.zg-book-modal-embed {
  position: relative;
  min-height: 0;
  background: #fff;
}

.zg-book-modal-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(720px, 88vh);
  border: 0;
}

/* ========================================================
   ANIMAL MENAGERIE — circular portraits (modal grid)
   ======================================================== */
.zg-animal-menagerie {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zg-animal-menagerie--modal {
  position: absolute;
  left: clamp(20px, 3vw, 32px);
  right: clamp(20px, 3vw, 32px);
  bottom: clamp(18px, 2.5vw, 28px);
}

.zg-animal-circle {
  position: relative;
  aspect-ratio: 1;
  border-radius: 999px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 0 0 1px rgba(26, 26, 26, 0.08);
}

.zg-animal-circle--video {
  box-shadow:
    0 0 0 1px rgba(26, 26, 26, 0.08),
    0 0 0 2px rgba(233, 78, 59, 0.16);
}

.zg-animal-circle img,
.zg-animal-circle video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.35) contrast(1.06) brightness(0.94);
}

.zg-animal-circle-ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

@media (hover: hover) {
  .zg-book-modal-brand:hover .zg-animal-circle img,
  .zg-book-modal-brand:hover .zg-animal-circle video {
    filter: grayscale(0) contrast(1.04) brightness(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .zg-book-modal-scrim,
  .zg-book-modal {
    animation: none;
  }
}

/* ========================================================
   RESPONSIVE — tablet + phone
   ======================================================== */
@media (max-width: 900px) {
  .zg-container {
    padding: 0 24px;
  }

  [id] {
    scroll-margin-top: calc(96px + env(safe-area-inset-top, 0px));
  }

  .zg-nav .brand {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .zg-hero {
    padding-top: 0;
  }

  .zg-hero-masthead {
    padding: 36px 24px 64px;
  }

  .zg-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .zg-hero-btn {
    width: 100%;
    justify-content: center;
  }

  .zg-hero-ghost {
    justify-content: center;
    width: 100%;
  }

  .zg-proof-opener h2 .zg-highlight,
  .zg-stat-opener h2 .zg-highlight,
  .zg-founders-opener h2 .zg-highlight {
    white-space: normal;
  }

  .zg-nav-wrap {
    padding:
      max(16px, env(safe-area-inset-top))
      16px
      0;
  }

  .zg-nav {
    gap: 10px;
    width: 100%;
    max-width: 440px;
    justify-content: space-between;
    padding: 8px 10px 8px 12px;
  }

  .zg-nav .links {
    display: none;
  }

  .zg-nav-menu-btn {
    display: inline-flex;
    margin-left: auto;
  }

  .zg-nav .cta {
    padding: 9px 14px 9px 16px;
    font-size: 13px;
    flex-shrink: 0;
  }

  .zg-nav-menu-label {
    display: none;
  }

  .zg-nav-cta-full {
    display: none;
  }

  .zg-nav-cta-short {
    display: inline;
  }

  .zg-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .zg-hero-masthead-inner {
    max-width: none;
  }

  .zg-process-opener h2,
  .zg-work-opener h2,
  .zg-proof-opener h2,
  .zg-stat-opener h2,
  .zg-founders-opener h2,
  .zg-jungle-opener h2 {
    font-size: clamp(32px, 8.2vw, 40px);
    line-height: 1.1;
  }

  .zg-stat-hero-num {
    font-size: clamp(72px, 18vw, 112px);
  }

  .zg-stat-num {
    font-size: clamp(44px, 11vw, 56px);
  }

  .zg-btn,
  .zg-hero-btn,
  .zg-footer-cta,
  .zg-footer-link,
  .zg-nav .cta {
    min-height: 44px;
  }

  .zg-footer-link {
    display: inline-flex;
    align-items: center;
  }

  .zg-final-sub .zg-highlight,
  .zg-book-modal-lede .zg-highlight {
    white-space: normal;
  }

  .zg-book-modal-brand .zg-h2,
  .zg-book-modal-lede,
  .zg-book-modal-note {
    padding-right: 48px;
  }

  .zg-hero-masthead::after {
    display: none;
  }

  .zg-hero--ready .zg-hero-photo {
    animation: zg-hero-photo-enter 1.6s var(--zg-ease) 80ms both;
  }

  .zg-hero-watermark {
    font-size: min(52vw, 280px);
    left: -0.04em;
    bottom: 0.2em;
  }

  .zg-hero-headline {
    font-size: clamp(40px, 10.5vw, 52px);
    line-height: 1.12;
  }

  .zg-hero-headline .muted {
    margin-top: 14px;
  }

  .zg-hero-headline .zg-highlight {
    padding: 0 0.22em;
  }

  .zg-hero-deck {
    margin-top: 40px;
    padding-top: 28px;
  }

  .zg-hero-deck {
    margin-top: 28px;
    padding-top: 24px;
    max-width: none;
  }

  .zg-hero-actions {
    margin-top: 24px;
  }

  .zg-hero-ghost {
    min-height: 44px;
    padding: 10px 0;
  }

  .zg-hero-stage {
    min-height: min(48dvh, 380px);
    border-radius: 0;
  }

  .zg-hero-photo {
    object-position: 50% 35%;
  }

  .zg-cred-head {
    padding-top: 24px;
  }

  .zg-cred-marquee-wrap {
    margin-top: 16px;
  }

  .zg-cred-section {
    padding-bottom: 32px;
  }

  .zg-cred-section,
  .zg-logo-strip-section {
    padding: 28px 0;
  }

  .zg-cred-section {
    padding-top: 0;
  }

  .zg-client-logo {
    height: 34px;
    max-width: 140px;
  }

  .zg-client-logo--wide {
    height: 36px;
    max-width: 168px;
  }

  .zg-client-logo--default {
    height: 35px;
    max-width: 132px;
  }

  .zg-client-wordmark-top {
    font-size: 12px;
  }

  .zg-client-wordmark-bottom {
    font-size: 10px;
    margin-top: 3px;
  }

  .zg-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .zg-logo-row {
    justify-content: flex-start;
    gap: 18px;
  }

  .zg-process-section {
    padding: 56px 0 72px;
  }

  .zg-process-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .zg-process-lede {
    max-width: none;
  }

  .zg-process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
  }

  .zg-process-card {
    min-height: 0;
  }

  .zg-process-stage {
    min-height: 140px;
  }

  .zg-process-card-copy {
    padding: 28px 22px 28px;
  }

  .zg-work-section {
    padding: 56px 0 72px;
  }

  .zg-work-header {
    max-width: none;
  }

  .zg-work-opener {
    padding-left: 0;
  }

  .zg-work-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 20px;
    min-height: 0;
  }

  .zg-work-stack {
    display: contents;
  }

  .zg-image-feat.lg,
  .zg-image-feat.sm {
    min-height: 380px;
    height: auto;
  }

  .zg-image-feat.lg .zg-image-feat-rail {
    height: 72%;
  }

  .zg-image-feat.lg .zg-image-feat-index,
  .zg-image-feat.sm .zg-image-feat-index {
    top: 20px;
    bottom: auto;
    left: 24px;
    right: auto;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.42);
  }

  .zg-image-feat-content,
  .zg-image-feat.lg .zg-image-feat-content,
  .zg-image-feat.sm .zg-image-feat-content {
    padding: 28px 24px 30px;
    max-width: 100%;
  }

  .zg-image-feat-title,
  .zg-image-feat.lg .zg-image-feat-title,
  .zg-image-feat.sm .zg-image-feat-title {
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.06;
  }

  .zg-image-feat-body,
  .zg-image-feat.sm .zg-image-feat-body {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.52;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.86);
  }

  .zg-image-feat-meta,
  .zg-image-feat.sm .zg-image-feat-meta {
    margin-top: 16px;
    font-size: 11px;
  }

  .zg-proof-section {
    padding: 56px 0 72px;
  }

  .zg-proof-header {
    margin-bottom: 40px;
  }

  .zg-proof-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  .zg-proof-card {
    min-height: auto;
    transform: none !important;
    margin-top: 0 !important;
  }

  .zg-proof-card--stagger {
    margin-top: 0 !important;
  }

  .zg-proof-card:hover {
    transform: translateY(-2px) !important;
  }

  .zg-proof-quote {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  .zg-stat-section {
    padding: 24px 0 80px;
  }

  .zg-stat-content {
    padding: 40px 28px 36px;
  }

  .zg-stat-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .zg-stat-hero {
    align-items: flex-start;
    gap: 24px;
  }

  .zg-stat-hero-visual {
    max-width: none;
    height: 180px;
  }

  .zg-stat-hero-stat {
    text-align: left;
    max-width: none;
  }

  .zg-stat-hero-rule,
  .zg-stat-hero-desc {
    margin-left: 0;
  }

  .zg-stat-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 40px;
  }

  .zg-stat {
    padding: 0 !important;
    border-left: 0 !important;
  }

  .zg-stat + .zg-stat {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 32px !important;
  }

  .zg-stat-desc {
    max-width: none;
  }

  .zg-founders-section {
    padding: 56px 0 72px;
  }

  .zg-founders-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .zg-founders-grid {
    grid-template-columns: 1fr;
  }

  .zg-founder-card {
    min-height: 0;
  }

  .zg-founder-media {
    flex: 0 0 auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .zg-founders-cred-stack {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    margin-top: 36px;
  }

  .zg-founders-cred-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .zg-founders-cred-logos {
    grid-column: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 24px;
  }

  .zg-founders-cred-logos .zg-client-logo-item {
    grid-column: auto !important;
  }

  .zg-jungle-section {
    padding: 56px 0 72px;
  }

  .zg-jungle-track {
    animation-duration: 84s;
  }

  .zg-jungle-track--reverse {
    animation-duration: 96s;
  }

  .zg-jungle-stage {
    gap: 14px;
  }

  .zg-jungle-opener {
    margin-bottom: 36px;
  }

  .zg-jungle-portrait {
    width: 84px;
    height: 84px;
  }

  .zg-trust-band {
    padding: 4px 0 40px;
  }

  .zg-final-cta {
    padding: 56px 0 96px;
  }

  .zg-client-marquee--inline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zg-client-marquee--inline .zg-cred-marquee-wrap {
    margin-top: 4px;
  }

  .zg-client-marquee--inline .zg-cred-label {
    max-width: none;
  }

  .zg-trust-band .zg-client-logo {
    height: 34px;
    max-width: 132px;
  }

  .zg-trust-band .zg-client-logo--wide {
    height: 36px;
    max-width: 156px;
  }

  .zg-trust-band .zg-client-logo--default {
    height: 35px;
    max-width: 124px;
  }

  .zg-final-card {
    transform: rotate(-1.6deg);
    min-height: 480px;
    padding: 64px 28px 156px;
    max-width: none;
    gap: 22px;
  }

  .zg-final-card .zg-h2 {
    font-size: clamp(38px, 9.6vw, 52px);
    line-height: 1.04;
  }

  .zg-final-sub {
    font-size: 16px;
    line-height: 1.55;
    max-width: 32ch;
  }

  .zg-final-card .zg-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .zg-final-card .zg-turntable--feature {
    display: block;
  }

  .zg-turntable--feature {
    right: -18px;
    bottom: -22px;
    width: 184px;
    height: 184px;
    opacity: 0.95;
  }

  .zg-turntable--feature .zg-turntable-arm {
    width: 128px;
    height: 128px;
    right: 30px;
    top: 8px;
  }

  .zg-turntable--feature .zg-turntable-arm-shaft {
    width: 50px;
    height: 4px;
    top: 5px;
    right: 5px;
  }

  .zg-turntable--feature .zg-turntable-arm-head {
    width: 16px;
    height: 16px;
  }

  .zg-turntable--feature .zg-turntable-arm-pivot {
    width: 14px;
    height: 14px;
  }

  .zg-turntable--feature .zg-turntable-label {
    font-size: 30px;
  }

  .zg-final-card:hover {
    transform: rotate(-1.6deg) translateY(-2px);
  }

  @media (hover: none) {
    .zg-final-card:hover {
      transform: none;
    }
  }

  .zg-footer-logo {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .zg-footer {
    padding: 0 0 40px;
  }

  .zg-footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px 32px;
  }

  .zg-footer-brand {
    max-width: none;
  }

  .zg-footer-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .zg-footer-bar {
    padding: 18px 24px 22px;
    padding-right: 24px;
    padding-bottom: max(22px, env(safe-area-inset-bottom));
  }

  .zg-footer-mono {
    display: none;
  }

  .zg-book-modal-scrim {
    align-items: flex-end;
    padding: 0;
    padding-top: env(safe-area-inset-top, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  @keyframes zg-book-modal-sheet-in {
    from {
      opacity: 0;
      transform: translateY(100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .zg-book-modal {
    width: 100%;
    max-height: calc(92dvh - env(safe-area-inset-top, 0px));
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    animation: zg-book-modal-sheet-in 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .zg-book-modal-grab {
    display: block;
    position: absolute;
    top: 8px;
    left: 50%;
    z-index: 5;
    width: 36px;
    height: 4px;
    border-radius: 999px;
    background: rgba(26, 26, 26, 0.18);
    transform: translateX(-50%);
  }

  .zg-book-modal-layout {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .zg-book-modal-brand {
    order: 0;
    position: relative;
    flex: 0 0 auto;
    padding: 16px 20px 12px;
    padding-right: 56px;
  }

  .zg-book-modal-embed {
    order: 1;
    flex: 1 1 auto;
    min-height: min(48dvh, 420px);
  }

  .zg-book-modal-embed iframe {
    min-height: min(48dvh, 420px);
    height: min(48dvh, 420px);
  }

  .zg-book-modal-brand .zg-h2,
  .zg-book-modal-lede,
  .zg-book-modal-note {
    padding-right: 0;
  }

  .zg-animal-menagerie--modal {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 16px;
    gap: 6px;
  }

  .zg-book-modal-close {
    top: max(12px, env(safe-area-inset-top, 12px));
    right: 12px;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  .zg-book-modal {
    animation: none !important;
    transform: none !important;
  }

  .zg-jungle-track,
  .zg-cred-marquee-track {
    animation: none !important;
  }
}

@media (min-width: 901px) and (hover: hover) {
  .zg-final-card:hover .zg-turntable-disc {
    animation-duration: 3.4s;
  }
}

@media (max-width: 900px) and (hover: none) {
  .zg-final-card:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .zg-container {
    padding: 0 20px;
  }

  .zg-nav {
    max-width: none;
    gap: 8px;
  }

  .zg-nav-menu-label {
    display: none;
  }

  .zg-nav-cta-full {
    display: none;
  }

  .zg-nav-cta-short {
    display: inline;
  }

  .zg-hero-masthead {
    padding: 28px 20px 56px;
  }

  .zg-hero-headline {
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 1.14;
  }

  .zg-hero-headline .muted {
    font-size: 0.9em;
    margin-top: 12px;
  }

  .zg-hero-deck {
    margin-top: 32px;
    padding-top: 24px;
  }

  .zg-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .zg-hero-btn {
    width: 100%;
    justify-content: center;
  }

  .zg-hero-ghost {
    justify-content: center;
    width: 100%;
  }

  .zg-hero-stage {
    min-height: min(44dvh, 340px);
  }

  .zg-process-opener h2,
  .zg-work-opener h2,
  .zg-proof-opener h2,
  .zg-stat-opener h2,
  .zg-founders-opener h2,
  .zg-jungle-opener h2 {
    font-size: clamp(28px, 8.8vw, 34px);
  }

  .zg-jungle-lede {
    font-size: 15px;
    line-height: 1.5;
  }

  .zg-jungle-track {
    animation-duration: 72s;
  }

  .zg-jungle-track--reverse {
    animation-duration: 84s;
  }

  .zg-process-section,
  .zg-work-section,
  .zg-proof-section,
  .zg-founders-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .zg-jungle-section {
    padding: 48px 0 56px;
  }

  .zg-jungle-stage {
    gap: 12px;
  }

  .zg-final-cta {
    padding: 48px 0 88px;
  }

  .zg-process-card {
    min-height: 0;
  }

  .zg-process-stage {
    min-height: 120px;
  }

  .zg-image-feat.lg,
  .zg-image-feat.sm {
    min-height: 340px;
  }

  .zg-final-card {
    min-height: 440px;
    padding: 52px 20px 140px;
  }

  .zg-final-card .zg-turntable--feature {
    display: block;
  }

  .zg-turntable--feature {
    right: -14px;
    bottom: -18px;
    width: 160px;
    height: 160px;
  }

  .zg-turntable--feature .zg-turntable-arm {
    width: 112px;
    height: 112px;
    right: 26px;
  }

  .zg-turntable--feature .zg-turntable-arm-shaft {
    width: 44px;
  }

  .zg-turntable--feature .zg-turntable-arm-head {
    width: 14px;
    height: 14px;
  }

  .zg-turntable--feature .zg-turntable-label {
    font-size: 26px;
  }

  .zg-image-feat.lg .zg-image-feat-index,
  .zg-image-feat.sm .zg-image-feat-index {
    top: 18px;
    left: 22px;
    font-size: 10.5px;
    letter-spacing: 0.2em;
  }

  .zg-image-feat-content,
  .zg-image-feat.lg .zg-image-feat-content,
  .zg-image-feat.sm .zg-image-feat-content {
    padding: 24px 22px 26px;
  }

  .zg-image-feat-title,
  .zg-image-feat.lg .zg-image-feat-title,
  .zg-image-feat.sm .zg-image-feat-title {
    font-size: clamp(26px, 7.8vw, 32px);
    line-height: 1.08;
  }

  .zg-proof-quote {
    font-size: clamp(18px, 5vw, 22px);
  }

  .zg-stat-content {
    padding: 32px 20px 28px;
  }

  .zg-stat-hero-num {
    font-size: clamp(64px, 20vw, 88px);
  }

  .zg-stat-num {
    font-size: clamp(40px, 12vw, 48px);
  }

  .zg-stat-grid {
    gap: 28px;
    padding-top: 32px;
  }

  .zg-founder-card {
    min-height: 0;
  }

  .zg-founder-media {
    min-height: 0;
  }

  .zg-jungle-portrait {
    width: 76px;
    height: 76px;
  }

  .zg-final-card .zg-h2 {
    font-size: clamp(34px, 9.2vw, 44px);
    line-height: 1.04;
  }

  .zg-final-sub {
    font-size: 15px;
    max-width: 30ch;
  }

  .zg-footer-main {
    padding: 32px 20px 28px;
  }

  .zg-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding:
      16px 20px
      max(18px, env(safe-area-inset-bottom));
  }

  .zg-footer-cta {
    width: 100%;
    justify-content: center;
  }

  .zg-book-modal-brand {
    padding: 16px 16px 20px;
    padding-right: 52px;
  }

  .zg-book-modal-brand .zg-h2 {
    font-size: clamp(26px, 7vw, 30px);
  }

  .zg-animal-menagerie--modal {
    gap: 5px;
  }

  .zg-book-modal-embed iframe {
    min-height: min(44dvh, 380px);
    height: min(44dvh, 380px);
  }

  .zg-ext-logo--compact {
    height: 18px;
    max-width: 76px;
  }
}

@media (max-width: 1179px) and (min-width: 901px) {
  .zg-process-grid {
    grid-template-columns: 1fr;
  }

  .zg-process-card {
    min-height: 0;
  }

  .zg-process-stage {
    min-height: 160px;
  }

  .zg-work-grid {
    grid-template-columns: 1fr;
  }

  .zg-proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (hover: none) {
  .zg-process-section--revealed .zg-process-card:hover,
  .zg-founders-section--revealed .zg-founder-card:hover,
  .zg-proof-card:hover {
    transform: none !important;
    box-shadow: none;
  }
}

