/* Volograms landing — local styles on top of brand tokens */
@import url('colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--vol-bg-dark);
  color: var(--fg-on-dark-1);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

/* ---------- Layout container ---------- */
.page { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.page--narrow { max-width: 1120px; }
@media (max-width: 720px) {
  .page { padding: 0 20px; }
}

/* ---------- Type system on dark ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-on-dark-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--light { color: var(--fg-2); }

.display {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(48px, 7.2vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.display .accent, .display .accent--grad,
.headline .accent, .headline .accent--grad,
.cta-card__title .accent {
  background: linear-gradient(96deg, #FF4898 0%, #b87cef 45%, #775FFF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: inherit;
  font-style: normal;
}

/* Solid pink mode overrides the gradient */
body[data-accent="pink"] .display .accent,
body[data-accent="pink"] .display .accent--grad,
body[data-accent="pink"] .headline .accent,
body[data-accent="pink"] .headline .accent--grad,
body[data-accent="pink"] .cta-card__title .accent,
body[data-accent="pink"] .stats__num .accent {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--vol-pink);
}

.headline {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}

.kicker {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--fg-on-dark-2);
  margin: 0;
  max-width: 56ch;
}
.lede--light { color: var(--fg-2); }

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .22s var(--ease-out), background-color .22s var(--ease-out), color .22s var(--ease-out), border-color .22s var(--ease-out), box-shadow .22s var(--ease-out);
  white-space: nowrap;
  user-select: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .arrow { width: 14px; height: 14px; transition: transform .22s var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}
.btn--primary:hover { box-shadow: 0 8px 24px rgba(255,255,255,0.18); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
}

.btn--gradient {
  background: linear-gradient(96deg, #FF4898 0%, #b87cef 50%, #775FFF 100%);
  color: #fff;
  border-color: transparent;
  position: relative;
  box-shadow: 0 8px 28px rgba(255,72,152,0.30), inset 0 0 0 1px rgba(255,255,255,0.18);
}
.btn--gradient:hover { box-shadow: 0 12px 40px rgba(255,72,152,0.45), inset 0 0 0 1px rgba(255,255,255,0.28); }

.btn--dark {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}
.btn--dark:hover { background: #1a1a1a; }

.btn--light {
  background: transparent;
  color: #0a0a0a;
  border-color: rgba(10,10,10,0.22);
}
.btn--light:hover { background: rgba(10,10,10,0.04); border-color: rgba(10,10,10,0.4); }

.btn--sm { padding: 10px 16px; font-size: 13px; }

/* ---------- Header / nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: transform .35s var(--ease-out), background .35s, backdrop-filter .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  transition: padding .3s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav.is-scrolled .nav__inner { padding: 12px 0; }
.nav.is-hidden { transform: translateY(-110%); }

.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 22px; width: auto; display: block; }
.footer__brand .nav__logo img { height: 26px; }

.nav__links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav__links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav__cta { display: flex; gap: 10px; align-items: center; }

@media (max-width: 980px) {
  .nav__links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: auto; padding: 120px 0 56px; }
}
.hero__copy { position: relative; z-index: 3; }
.hero__copy .eyebrow { margin-bottom: 28px; }
.hero__copy .display { margin-bottom: 28px; }
.hero__copy .lede { margin-bottom: 36px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* hero stage — the dancer */
.hero__stage {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__stage-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .25s var(--ease-out);
  will-change: transform;
}
.hero__halo {
  position: absolute;
  inset: 4% 4%;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(255,72,152,0.55) 0%, rgba(183,127,233,0.35) 35%, rgba(119,95,255,0.2) 60%, transparent 80%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  animation: halo-breathe 8s var(--ease-in-out) infinite;
}
@keyframes halo-breathe {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.05); opacity: 1; }
}
.hero__floor {
  position: absolute;
  left: 10%; right: 10%;
  bottom: 6%;
  height: 10%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,72,152,0.55), transparent 70%);
  filter: blur(20px);
  z-index: 1;
}
.hero__dancer-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.hero__dancer {
  width: 78%;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6)) drop-shadow(0 0 30px rgba(255,72,152,0.18));
  transform: translateZ(60px);
  pointer-events: none;
}

.hero__scaffold {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}
.hero__scaffold::before, .hero__scaffold::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}
.hero__scaffold::before {
  inset: 18% 12%;
  transform: rotateX(75deg);
}
.hero__scaffold::after {
  inset: 8% 22%;
  transform: rotateX(75deg) scale(1.15);
}

.hero__pill {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  z-index: 4;
  user-select: none;
  cursor: grab;
}
.hero__pill:active { cursor: grabbing; }
.hero__pill svg { width: 14px; height: 14px; }

.hero__tag {
  position: absolute;
  top: 8%;
  right: 4%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
}
.hero__tag b { color: #fff; font-weight: 700; letter-spacing: 0.04em; }
.hero__tag .dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px #4ade80;
  margin-right: 6px;
  animation: live-dot 1.4s ease-in-out infinite;
}
@keyframes live-dot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* hero background gradient field */
.hero__bg {
  position: absolute;
  inset: -10% -10% 0 -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 75% 35%, rgba(255,72,152,0.35), transparent 60%),
    radial-gradient(50% 60% at 30% 70%, rgba(119,95,255,0.30), transparent 65%),
    radial-gradient(40% 40% at 80% 80%, rgba(0,19,250,0.20), transparent 70%);
  filter: blur(8px);
  animation: hero-bg-drift 22s var(--ease-in-out) infinite;
}
@keyframes hero-bg-drift {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-1.5%, 1%); }
}
.hero__noise {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.4;
}

/* hero metrics chip row */
.hero__metrics {
  margin-top: 56px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__metric {
  display: flex; flex-direction: column; gap: 4px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.14);
}
.hero__metric b {
  font-family: var(--font-sans);
  font-weight: 700; font-size: 22px;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero__metric span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-on-dark-3);
}

/* ---------- Section base ---------- */
section { position: relative; }
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.section:has(.logo-wall) {
  overflow: visible;
}
.section__head {
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 56px;
  max-width: 880px;
}
.section--light {
  background: #f6f4ef;
  color: var(--vol-black);
}
.section--light .lede { color: var(--fg-2); }
.section--light .eyebrow { color: var(--fg-2); }
.section--light .headline { color: var(--vol-black); }

/* ---------- Section divider ribbon ---------- */
.ribbon {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  margin: 0;
}
.ribbon--accent {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #FF4898 30%, #775FFF 70%, transparent 100%);
  filter: blur(0.5px);
  opacity: 0.8;
}

/* ---------- Showreel ---------- */
.showreel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
  cursor: pointer;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,0.08);
}
.showreel__poster {
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 30% 45%, rgba(119,95,255,0.55), transparent 60%),
    radial-gradient(60% 60% at 78% 60%, rgba(255,72,152,0.55), transparent 60%),
    linear-gradient(180deg, #1a1226 0%, #0a0a0a 100%);
  transition: transform .8s var(--ease-out);
}
.showreel:hover .showreel__poster { transform: scale(1.03); }
.showreel__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(60% 50% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(60% 50% at 50% 50%, #000 30%, transparent 75%);
}
.showreel__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  box-shadow: 0 18px 48px rgba(0,0,0,0.5);
  z-index: 3;
}
.showreel__play::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  animation: ring 2.4s var(--ease-in-out) infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: .9; }
  100% { transform: scale(1.5); opacity: 0; }
}
.showreel:hover .showreel__play { transform: translate(-50%,-50%) scale(1.06); }
.showreel__play svg { width: 28px; height: 28px; margin-left: 4px; }

.showreel__meta {
  position: absolute;
  left: 24px; bottom: 24px;
  display: flex; gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  z-index: 3;
}
.showreel__meta b { color: #fff; }
.showreel__chip {
  position: absolute;
  right: 24px; top: 24px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
}
.showreel__chip .live-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: #FF4898; margin-right: 6px; vertical-align: middle;
}

/* ---------- Gallery filter chips ---------- */
.gallery__filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
  align-items: center;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.chip:hover { color: #fff; border-color: rgba(255,255,255,0.22); }
.chip.is-active {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}
.chip .count { opacity: 0.6; font-size: 11px; }

/* ---------- Gallery — bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.bento .tile:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.bento .tile:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.bento .tile:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.bento .tile:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.bento .tile:nth-child(5) { grid-column: span 2; grid-row: span 1; }
.bento .tile:nth-child(6) { grid-column: span 2; grid-row: span 1; }
.bento .tile:nth-child(7) { grid-column: span 3; grid-row: span 1; }
.bento .tile:nth-child(8) { grid-column: span 3; grid-row: span 1; }
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .bento .tile { grid-column: span 1 !important; grid-row: span 1 !important; }
  .bento .tile:nth-child(1) { grid-column: span 2 !important; grid-row: span 2 !important; }
}

/* Grid mode */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-grid .tile { aspect-ratio: 4/3; }

/* Scroll track mode */
.gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
  scrollbar-width: thin;
}
.gallery-scroll .tile {
  flex: 0 0 420px;
  aspect-ratio: 4/3;
  scroll-snap-align: start;
}
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 999px; }

/* Tile */
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #131217;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  isolation: isolate;
  transition: transform .35s var(--ease-out), border-color .35s var(--ease-out);
}
.tile:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.18); }
.tile__art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .8s var(--ease-out), filter .4s var(--ease-out);
}
.tile:hover .tile__art { transform: scale(1.04); }
.tile__num {
  font-family: var(--font-mono);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  letter-spacing: -0.03em;
}
.tile__art-glow {
  position: absolute; inset: 0;
  opacity: .9;
  z-index: 0;
}
.tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
.tile__meta {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px;
}
.tile__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
}
.tile__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
}
.tile__category {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
}

/* ---------- Logo wall (marquee) ---------- */
.logo-wall {
  --logo-tip-delay: 1s;
  --logo-tip-space: 8rem;
  position: relative;
  z-index: 5;
  overflow: visible;
  padding: 0 0 8px 0;
  /* border-bottom: 1px solid rgba(255,255,255,0.06); */
}
.logo-marquee {
  position: relative;
  overflow: visible;
}
.logo-wall__head {
  text-align: center;
  margin-bottom: 32px;
  color: var(--fg-on-dark-3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.logo-marquee__viewport {
  overflow-x: hidden;
  overflow-y: clip;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 72s linear infinite;
}
.logo-marquee:hover .logo-marquee__track,
.logo-marquee__track:has(.logo-marquee__item:hover),
.logo-marquee__track:has(.logo-marquee__item:focus-within) {
  animation-play-state: paused;
}
body[data-motion="lively"] .logo-marquee__track { animation-duration: 48s; }
@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-marquee__group {
  display: flex;
  align-items: flex-start;
  gap: clamp(40px, 5vw, 72px);
  padding-right: clamp(40px, 5vw, 72px);
  list-style: none;
  margin: 0;
  flex-shrink: 0;
}
.logo-marquee__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: content-box;
  height: 40px;
  min-width: 96px;
  padding-bottom: var(--logo-tip-space);
  opacity: 0.78;
  transition: opacity .25s var(--ease-out);
}
.logo-marquee__item:hover,
.logo-marquee__item:focus-within { opacity: 1; z-index: 20; }
.logo-marquee__tip {
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  max-width: min(260px, 70vw);
  padding: 7px 11px;
  border-radius: 8px;
  background: rgba(18, 16, 22, 0.92);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
  color: rgba(255,255,255,0.92);
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 21;
  transition:
    opacity .2s var(--ease-out) var(--logo-tip-delay),
    visibility 0s linear var(--logo-tip-delay);
}
.logo-marquee__item:hover .logo-marquee__tip,
.logo-marquee__item:focus-within .logo-marquee__tip {
  opacity: 1;
  visibility: visible;
  transition:
    opacity .2s var(--ease-out) var(--logo-tip-delay),
    visibility 0s linear var(--logo-tip-delay);
}
.logo-marquee__item:not(:hover):not(:focus-within) .logo-marquee__tip {
  transition:
    opacity .12s var(--ease-out) 0s,
    visibility 0s linear .12s;
}
.logo-marquee__item img {
  display: block;
  max-height: 36px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.logo-marquee__item--tone-gray img {
  filter: grayscale(1) brightness(1.25);
  opacity: 0.62;
}
.logo-marquee__item .placeholder-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  color: #fff;
  font-family: var(--font-sans);
  text-align: center;
  white-space: nowrap;
}
body[data-motion="off"] .logo-marquee__viewport {
  -webkit-mask-image: none;
  mask-image: none;
}
body[data-motion="off"] .logo-marquee__track {
  animation: none;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 24px 40px;
}
body[data-motion="off"] .logo-marquee__group[aria-hidden="true"] { display: none; }
body[data-motion="off"] .logo-marquee__group {
  display: contents;
  padding: 0;
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee__viewport {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .logo-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    gap: 24px 40px;
  }
  .logo-marquee__group[aria-hidden="true"] { display: none; }
  .logo-marquee__group { display: contents; padding: 0; }
}
.placeholder-logo {
  transition: opacity .25s var(--ease-out);
}
.pl--sans    { font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; font-size: 13px; }
.pl--italic  { font-weight: 500; font-style: italic; font-size: 18px; letter-spacing: -0.01em; }
.pl--serif   { font-family: Georgia, "Times New Roman", serif; font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.pl--mono    { font-family: var(--font-mono); font-weight: 700; letter-spacing: 0.18em; font-size: 12px; text-transform: uppercase; }
.pl--mark    { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; letter-spacing: -0.01em; }
.pl--mark::before { content: ""; width: 14px; height: 14px; border-radius: 50%; background: currentColor; opacity: 0.85; }
.pl--bracket { font-weight: 600; font-size: 14px; letter-spacing: 0.04em; }
.pl--bracket::before, .pl--bracket::after { content: "/"; opacity: 0.5; margin: 0 4px; }

/* ---------- Track sections ---------- */
.track {
  position: relative;
  padding: clamp(96px, 11vw, 160px) 0;
}
.track__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.track--reverse .track__grid { grid-template-columns: 1.05fr 1fr; direction: rtl; }
.track--reverse .track__grid > * { direction: ltr; }
@media (max-width: 980px) {
  .track__grid, .track--reverse .track__grid { grid-template-columns: 1fr; direction: ltr; gap: 48px; }
}
.track__copy { display: flex; flex-direction: column; gap: 22px; }
.track__copy .headline { margin-top: 10px; }
.track__copy .lede { max-width: 50ch; }

.track__bullets {
  list-style: none;
  padding: 0; margin: 8px 0 8px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.track__bullets li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg-on-dark-2);
}
.section--light .track__bullets li { color: var(--fg-2); }
.track__bullets li::before {
  content: "";
  width: 18px; height: 18px;
  background: linear-gradient(135deg, #FF4898, #775FFF);
  border-radius: 4px;
  margin-top: 2px;
  clip-path: polygon(20% 50%, 45% 75%, 80% 25%, 80% 30%, 47% 80%, 20% 55%);
}
.track__cta { margin-top: 8px; display: flex; gap: 10px; flex-wrap: wrap; }

/* Studio visual */
.studio-vis {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 50% 40%, #1a1130 0%, #0a0a0a 70%);
  border: 1px solid rgba(255,255,255,0.08);
}
.studio-vis__rig {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.studio-vis__center {
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(255,72,152,0.65), rgba(119,95,255,0.45) 60%, transparent 80%);
  filter: blur(8px);
  position: relative;
}
.studio-vis__cam {
  position: absolute;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.4);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
}
.studio-vis__cam::before {
  content: "";
  position: absolute;
  width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle, #ff4898, #220);
}
.studio-vis__ring {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(255,255,255,0.10);
  border-radius: 50%;
  animation: ring-rotate 60s linear infinite;
}
.studio-vis__ring--2 {
  inset: 22%;
  animation-duration: 90s;
  animation-direction: reverse;
  border-style: dotted;
}
@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.studio-vis__label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.studio-vis__corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.studio-vis__corner b { color: #fff; font-weight: 700; }

/* Creator visual (dark) */
.creator-vis-wrap {
  position: relative;
  isolation: isolate;
}
.creator-vis-wrap::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  background:
    radial-gradient(40% 50% at 18% 28%, rgba(119,95,255,0.65), transparent 70%),
    radial-gradient(40% 50% at 82% 72%, rgba(255,72,152,0.65), transparent 70%),
    radial-gradient(30% 30% at 50% 50%, rgba(0,19,250,0.25), transparent 70%);
  filter: blur(60px);
  opacity: 0.95;
  pointer-events: none;
}
.creator-vis {
  position: relative;
  z-index: 1;
  aspect-ratio: 5/4;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #16141c 0%, #0d0c12 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.creator-vis::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 30%);
}
.creator-vis__steps {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 36px;
}
.creator-vis__step {
  position: relative;
  border-radius: 14px;
  background: linear-gradient(180deg, #1f1c27, #15131b);
  border: 1px solid rgba(255,255,255,0.06);
  aspect-ratio: 9/12;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.creator-vis__step--in::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35) 100%),
    repeating-linear-gradient(90deg, transparent 0 6px, rgba(255,255,255,0.04) 6px 7px);
  z-index: 1;
}
.creator-vis__step--in::after {
  content: "►";
  position: relative;
  z-index: 2;
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding-left: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.creator-vis__step--out {
  background:
    radial-gradient(50% 60% at 50% 50%, rgba(255,72,152,0.28), transparent 70%),
    linear-gradient(180deg, #1f1c27, #15131b);
}
.creator-vis__step--out::after {
  content: "";
  position: absolute;
  left: 30%; right: 30%; top: 18%; bottom: 12%;
  background: var(--vol-gradient-blob);
  filter: blur(14px);
  border-radius: 30% 30% 12% 12% / 22% 22% 12% 12%;
  opacity: 0.9;
}
.creator-vis__arrow {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.creator-vis__arrow .bar {
  width: 80px; height: 2px; background: linear-gradient(90deg, #FF4898, #775FFF);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.creator-vis__arrow .bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  animation: arrow-shimmer 2.4s linear infinite;
}
@keyframes arrow-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.creator-vis__topbar {
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  display: flex; align-items: center; gap: 8px;
}
.creator-vis__topbar .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
}
.creator-vis__topbar .file {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.creator-vis__badge {
  position: absolute;
  bottom: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.creator-vis__badge b { color: #fff; }

/* ---------- Why Volograms — stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stats__cell {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 10px;
}
.stats__cell:last-child { border-right: none; }
.stats__num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.stats__num .accent {
  background: linear-gradient(96deg, #FF4898 0%, #775FFF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.stats__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
  margin-top: 4px;
}
@media (max-width: 980px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__cell:nth-child(2n) { border-right: none; }
  .stats__cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ---------- Final CTA two-track split ---------- */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 880px) {
  .cta-split { grid-template-columns: 1fr; }
}
.cta-card {
  position: relative;
  padding: 48px 40px 40px;
  border-radius: 24px;
  overflow: hidden;
  background: #121116;
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  transition: transform .35s var(--ease-out), border-color .35s var(--ease-out);
}
.cta-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.22); }
.cta-card__bg {
  position: absolute;
  inset: -30%;
  z-index: 0;
  filter: blur(60px);
  opacity: 0.7;
  pointer-events: none;
  transition: transform .8s var(--ease-out), opacity .8s var(--ease-out);
}
.cta-card:hover .cta-card__bg { opacity: 0.9; transform: scale(1.05); }
.cta-card--studio .cta-card__bg {
  background:
    radial-gradient(40% 40% at 30% 30%, rgba(119,95,255,0.7), transparent 70%),
    radial-gradient(40% 40% at 70% 70%, rgba(0,19,250,0.45), transparent 70%);
}
.cta-card--creator .cta-card__bg {
  background:
    radial-gradient(40% 40% at 70% 30%, rgba(255,72,152,0.7), transparent 70%),
    radial-gradient(40% 40% at 30% 70%, rgba(184,124,239,0.45), transparent 70%);
}
.cta-card__eyebrow {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.cta-card__eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.6; }
.cta-card__title {
  position: relative; z-index: 1;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 14px;
}
.cta-card__desc {
  position: relative; z-index: 1;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
  max-width: 36ch;
}
.cta-card__cta { position: relative; z-index: 1; margin-top: auto; display: flex; }

/* ---------- Footer ---------- */
.footer {
  padding: 80px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #0a0a0a;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
.footer__brand .nav__logo { margin-bottom: 18px; }
.footer__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  max-width: 30ch;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 18px;
  font-weight: 400;
}
.footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer__col a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  transition: color .2s;
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__legal {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.7);
  transition: color .2s, background .2s, border-color .2s;
}
.footer__social a:hover { color: #fff; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); }
.footer__social svg { width: 14px; height: 14px; }

/* ---------- Reveal-on-scroll (toggleable by motion level) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
body[data-motion="off"] .reveal { opacity: 1; transform: none; transition: none; }
body[data-motion="off"] .hero__halo,
body[data-motion="off"] .hero__bg,
body[data-motion="off"] .studio-vis__ring,
body[data-motion="off"] .showreel__play::after,
body[data-motion="off"] .hero__tag .dot,
body[data-motion="off"] .creator-vis__arrow .bar::after,
body[data-motion="off"] .logo-marquee__track {
  animation: none !important;
}

/* Gradient intensity */
body[data-grad="restrained"] .hero__bg { opacity: 0.45; }
body[data-grad="restrained"] .hero__halo { opacity: 0.55; }
body[data-grad="restrained"] .cta-card__bg { opacity: 0.4; }
body[data-grad="bold"] .hero__bg { opacity: 1; filter: blur(2px); }
body[data-grad="bold"] .hero__halo { opacity: 1; filter: blur(28px); }
body[data-grad="bold"] .cta-card__bg { opacity: 1; }

/* Font swap */
body[data-font="sora"] {
  --font-sans: "Sora", system-ui, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
}
body[data-font="space-grotesk"] {
  --font-sans: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}
body[data-font="general-sans"] {
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

/* Hide pink accent if requested */
body[data-accent="off"] .accent,
body[data-accent="off"] .accent--grad {
  -webkit-text-fill-color: currentColor;
  background: none;
  color: inherit;
}

/* Tweaks panel positioning so it never collides with hero pill */
.tweaks-host { z-index: 200; }
