:root {
  --bg: #060608;
  --bg-alt: #0d0f14;
  --card: #12141c;
  --text: #f5f6fa;
  --muted: #9aa3b5;
  --cyan: #2fd8ff;
  --cyan-dim: rgba(47, 216, 255, 0.35);
  --pink: #ff2fb0;
  --pink-dim: rgba(255, 47, 176, 0.35);
  --primary: var(--cyan);
  --primary-light: #7fe8ff;
  --accent: var(--pink);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

#fx-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  color: #060608;
  box-shadow: 0 8px 24px rgba(47, 216, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 47, 176, 0.45);
}

.btn-glow {
  animation: pulse-glow 2.4s ease-in-out infinite;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--cyan-dim);
  transform: translateY(-2px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(6, 6, 8, 0.7);
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: contrast(1.15) saturate(1.2);
}

.logo-text .accent {
  color: var(--cyan);
}

.accent {
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}

.hero-bg-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 15%, rgba(255, 47, 176, 0.28), transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(47, 216, 255, 0.25), transparent 55%),
    linear-gradient(180deg, rgba(6, 6, 8, 0.5) 0%, rgba(6, 6, 8, 0.85) 70%, var(--bg) 100%);
  z-index: 1;
}

.hero-float-imgs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.float-img {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.06);
  opacity: 0.9;
}

.float-1 {
  width: clamp(120px, 16vw, 220px);
  height: clamp(150px, 20vw, 280px);
  top: 12%;
  left: 6%;
  animation: float-a 7s ease-in-out infinite;
}

.float-frame {
  overflow: hidden;
  position: absolute;
  animation: float-a 7s ease-in-out infinite, frame-pulse 3.2s ease-in-out infinite;
}

.frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(6, 6, 8, 0.65);
  backdrop-filter: blur(4px);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #fff;
  z-index: 2;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 8px #ff3b3b;
  animation: live-blink 1.4s ease-in-out infinite;
}

.frame-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--cyan);
  border-style: solid;
  border-width: 0;
  opacity: 0.85;
  z-index: 2;
}

.frame-corner.tl {
  top: 6px;
  left: 6px;
  border-top-width: 2px;
  border-left-width: 2px;
}

.frame-corner.tr {
  top: 6px;
  right: 6px;
  border-top-width: 2px;
  border-right-width: 2px;
}

.frame-corner.bl {
  bottom: 6px;
  left: 6px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.frame-corner.br {
  bottom: 6px;
  right: 6px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.scan-sweep {
  position: absolute;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(47, 216, 255, 0.35), transparent);
  top: -40%;
  animation: scan-move 3.6s linear infinite;
  z-index: 1;
}

.float-2 {
  width: clamp(130px, 18vw, 240px);
  height: clamp(160px, 22vw, 300px);
  bottom: 10%;
  right: 7%;
  animation: float-b 8s ease-in-out infinite;
}

.float-3 {
  width: clamp(100px, 13vw, 180px);
  height: clamp(130px, 17vw, 230px);
  top: 18%;
  right: 10%;
  animation: float-c 6.5s ease-in-out infinite;
  display: none;
}

.float-4 {
  width: clamp(110px, 15vw, 200px);
  height: clamp(140px, 19vw, 260px);
  bottom: 16%;
  left: 10%;
  animation: float-c 7.5s ease-in-out infinite;
  display: none;
  cursor: pointer;
  pointer-events: auto;
}

@media (min-width: 900px) {
  .float-3 {
    display: block;
  }

  .float-4 {
    display: block;
  }
}

.badge-3d {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  color: #060608;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(47, 216, 255, 0.12);
  border: 1px solid var(--cyan-dim);
  color: var(--primary-light);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.badge-glow {
  box-shadow: 0 0 24px rgba(47, 216, 255, 0.25);
}

.glitch-text {
  position: relative;
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: var(--bg);
  clip-path: inset(0 0 0 0);
}

.glitch-text::before {
  color: var(--cyan);
  animation: glitch-1 3.2s infinite linear alternate-reverse;
}

.glitch-text::after {
  color: var(--pink);
  animation: glitch-2 3.6s infinite linear alternate-reverse;
}

.tagline {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.tagline strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--border);
  border-radius: 14px;
  z-index: 3;
}

.scroll-indicator span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease infinite;
}

/* Sections */
section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
  position: relative;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

.section-heading h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-subheading {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* Reveal-on-scroll base state (JS toggles .in-view) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery base */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.art-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: none;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 3 / 4;
}

.art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.art-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.15);
}

.art-card::after {
  content: "🔍";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.art-card:hover::after {
  opacity: 1;
}

.stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  position: relative;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 6, 8, 0.92);
  backdrop-filter: blur(6px);
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(90vw, 700px);
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-links.open {
    max-height: 420px;
    overflow-y: auto;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* Keyframes */
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(47, 216, 255, 0.3);
  }
  50% {
    box-shadow: 0 8px 36px rgba(255, 47, 176, 0.55);
  }
}

@keyframes float-a {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-22px) rotate(1deg);
  }
}


@keyframes frame-pulse {
  0%,
  100% {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.06), 0 0 18px rgba(47, 216, 255, 0.25);
  }
  50% {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.06), 0 0 26px rgba(255, 47, 176, 0.4);
  }
}

@keyframes live-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

@keyframes scan-move {
  0% {
    top: -40%;
  }
  100% {
    top: 100%;
  }
}

@keyframes float-b {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-18px) rotate(-1deg);
  }
}

@keyframes float-c {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-14px) rotate(-2deg);
  }
}

@keyframes glitch-1 {
  0% {
    clip-path: inset(0 0 90% 0);
    transform: translate(-2px, -1px);
  }
  20% {
    clip-path: inset(20% 0 60% 0);
    transform: translate(2px, 1px);
  }
  40% {
    clip-path: inset(60% 0 10% 0);
    transform: translate(-1px, 2px);
  }
  60% {
    clip-path: inset(10% 0 70% 0);
    transform: translate(2px, -2px);
  }
  80% {
    clip-path: inset(80% 0 5% 0);
    transform: translate(-2px, 1px);
  }
  100% {
    clip-path: inset(30% 0 40% 0);
    transform: translate(1px, -1px);
  }
}

@keyframes glitch-2 {
  0% {
    clip-path: inset(70% 0 5% 0);
    transform: translate(2px, 1px);
  }
  25% {
    clip-path: inset(10% 0 80% 0);
    transform: translate(-2px, -1px);
  }
  50% {
    clip-path: inset(40% 0 40% 0);
    transform: translate(1px, 2px);
  }
  75% {
    clip-path: inset(85% 0 2% 0);
    transform: translate(-1px, -2px);
  }
  100% {
    clip-path: inset(5% 0 85% 0);
    transform: translate(2px, 1px);
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 24px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .float-img {
    animation: none;
  }

  .glitch-text::before,
  .glitch-text::after {
    display: none;
  }

  .scan-sweep,
  .live-dot {
    animation: none;
    opacity: 0;
  }
}

/* Final premium polish — approved structure, refined interaction and finish */
:root {
  --radius-media: 14px;
  --ease-cinematic: cubic-bezier(.65, 0, .35, 1);
  --ease-settle: cubic-bezier(.22, 1, .36, 1);
}

.btn {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.btn:hover,
.btn:focus-visible {
  transform: translate3d(0, -2px, 0) scale(1.018);
}

.btn:active {
  transform: translate3d(0, 0, 0) scale(.985);
}

/* Header: quiet active signal, neon hover, occasional broadcast pulse */
.nav-links a::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: .55rem;
  left: 10%;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), rgba(251, 63, 172, .75), transparent);
  box-shadow: 0 0 9px rgba(81, 220, 255, .35);
  opacity: 0;
  transform: scaleX(.25);
  transition: opacity .25s ease, transform .38s var(--ease-settle);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: .48;
  transform: scaleX(.72);
}

.nav-links a[aria-current="page"] {
  color: #fff;
  text-shadow: 0 0 12px rgba(81, 220, 255, .2);
}

.nav-links a[aria-current="page"]::after {
  opacity: .8;
  transform: scaleX(1);
}

.nav-links::after {
  width: 6px;
  height: 6px;
  border-color: rgba(239, 253, 255, .86);
  box-shadow: 0 0 0 2px rgba(81, 220, 255, .05), 0 0 7px rgba(81, 220, 255, .42);
}

.logo:hover,
.logo:focus-visible {
  transform: translate3d(0, -1px, 0) scale(1.018);
}

.site-header.is-scrolled .logo:hover,
.site-header.is-scrolled .logo:focus-visible {
  transform: translate3d(0, 0, 0) scale(.745);
}

.broadcast-cta {
  animation: broadcast-breathe 7s ease-in-out infinite;
  will-change: filter;
}

@keyframes broadcast-breathe {
  0%, 72%, 100% {
    filter: brightness(1);
    box-shadow: 0 7px 20px rgba(81, 220, 255, .08);
  }
  82% {
    filter: brightness(1.08);
    box-shadow: 0 7px 24px rgba(81, 220, 255, .18), 0 0 15px rgba(251, 63, 172, .1);
  }
}

/* Hero: transform-driven crossfades and sequenced signal surface */
.hero-subject-state {
  will-change: opacity, transform;
  backface-visibility: hidden;
  transition:
    opacity .66s var(--ease-cinematic),
    visibility 0s linear .72s,
    transform .82s var(--ease-cinematic),
    filter .66s ease;
}

.hero-subject-state:not(.is-active) {
  transform: translate3d(calc(1.1rem + var(--hero-depth-x, 0px) * -.18), calc(.3rem + var(--hero-depth-y, 0px) * -.12), 0) scale(.99);
}

.hero-subject-state.is-active {
  transition-delay: .1s, 0s, .1s, .1s;
}

.hero.is-role-changing .hero-subject-state.is-active {
  opacity: .28;
  transform: translate3d(calc(-.7rem + var(--hero-depth-x, 0px) * -.18), calc(var(--hero-depth-y, 0px) * -.12), 0) scale(.995);
}

.hero-ecosystem {
  will-change: transform;
}

.signal-route-group {
  transition:
    opacity .28s ease,
    transform .36s var(--ease-cinematic),
    visibility 0s linear .36s;
}

.signal-route-group.is-active .signal-route {
  animation-duration: .56s;
  animation-timing-function: var(--ease-settle);
}

.signal-route-group.is-active .signal-route-flow {
  animation-delay: .34s;
}

.signal-route-group.is-active .signal-endpoint,
.signal-route-group.is-active .signal-arrow {
  animation-delay: .48s;
}

.signal-label {
  border-radius: 0 5px 5px 0;
  box-shadow: 0 0 0 rgba(81, 220, 255, 0);
  transition:
    opacity .28s ease,
    transform .34s var(--ease-cinematic),
    filter .28s ease,
    visibility 0s linear .34s;
}

.signal-label::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
  box-shadow: 0 0 8px rgba(81, 220, 255, .45);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
}

.signal-label[data-signal-label="1"]::before {
  background: linear-gradient(90deg, transparent, var(--pink));
}

.signal-label[data-signal-label="2"]::before {
  background: linear-gradient(90deg, var(--cyan), #b995ff);
}

.signal-label.is-active {
  animation:
    hero-signal-label-in .42s .5s var(--ease-settle) both,
    signal-surface-pulse .65s .9s ease-out both;
}

.signal-label.is-active::before {
  animation: signal-title-connector .28s .68s var(--ease-settle) forwards;
}

.signal-label.is-active::after {
  animation-delay: .78s;
}

.hero-ecosystem.is-changing .signal-route-group.is-active,
.hero-ecosystem.is-changing .signal-label.is-active {
  opacity: 0;
  transform: translate3d(-16px, 0, 0) scale(.985);
  filter: blur(3px);
  transition-duration: .28s;
}

@keyframes signal-title-connector {
  to { opacity: .8; transform: scaleX(1); }
}

@keyframes signal-surface-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(81, 220, 255, 0); }
  46% { box-shadow: 0 0 22px rgba(81, 220, 255, .12); }
}

/* About: personality without disturbing the editorial composition */
.about-personality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .38rem 1rem;
  max-width: 29rem;
  margin-top: 1.25rem;
  color: rgba(218, 230, 246, .64);
  font-size: .65rem;
  font-weight: 650;
  letter-spacing: .045em;
}

.about-personality li {
  position: relative;
  padding-left: .8rem;
}

.about-personality li::before {
  content: "";
  position: absolute;
  top: .52em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 7px rgba(81, 220, 255, .4);
}

.about-personality li:nth-child(even)::before {
  background: var(--pink);
  box-shadow: 0 0 7px rgba(251, 63, 172, .36);
}

.about-chapter {
  transition: opacity .58s ease, transform .7s var(--ease-settle);
}

.about-track.timeline-ready .about-chapter:not(.is-revealed) {
  opacity: .18;
  transform: translate3d(0, 1rem, 0);
}

/* Consistent media finish */
.about-history-frame,
.about-aj > img,
.live-slides,
.create-frame,
.create-mobile-sequence img,
.multiverse-wall .art-card {
  border-radius: var(--radius-media);
}

.live-slides {
  border: 1px solid rgba(81, 220, 255, .16);
  box-shadow: inset 0 0 0 1px rgba(251, 63, 172, .04);
}

.live-slide {
  transition:
    opacity .58s var(--ease-cinematic),
    transform .7s var(--ease-cinematic),
    filter .52s ease,
    visibility 0s linear .7s;
  will-change: opacity, transform;
}

.live-slide:not(.is-active) {
  transform: translate3d(5%, 0, 0) scale(.985);
}

.live-slide img {
  transform: translateZ(0);
}

.live-arrow,
.live-progress button,
.create-nav button,
.strategy-nav button {
  transition: color .2s ease, transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.live-arrow:hover,
.live-arrow:focus-visible {
  color: var(--cyan);
  transform: scale(1.06);
}

.create-nav button:hover,
.create-nav button:focus-visible,
.strategy-nav button:hover,
.strategy-nav button:focus-visible {
  transform: translate3d(.25rem, 0, 0);
}

/* Finale: authentic smiling portrait, dark fade, restrained studio particles */
.connect-particles {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    radial-gradient(circle at 12% 28%, rgba(81, 220, 255, .75) 0 1px, transparent 1.5px),
    radial-gradient(circle at 68% 18%, rgba(251, 63, 172, .65) 0 1px, transparent 1.5px),
    radial-gradient(circle at 82% 72%, rgba(81, 220, 255, .55) 0 1px, transparent 1.5px),
    radial-gradient(circle at 42% 84%, rgba(251, 63, 172, .5) 0 1px, transparent 1.5px);
  background-size: 19rem 21rem, 23rem 17rem, 17rem 25rem, 29rem 19rem;
  animation: connect-particles-drift 18s ease-in-out infinite alternate;
}

.connect-subject {
  align-self: center;
  width: min(100%, 43rem);
  height: min(76svh, 44rem);
}

.connect-subject::after {
  content: "";
  position: absolute;
  inset: 9% 2% 4% 5%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(81, 220, 255, .13), rgba(251, 63, 172, .07) 48%, transparent 72%);
  filter: blur(24px);
}

.connect-subject img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 29%;
  border-radius: 50%;
  opacity: .96;
  -webkit-mask-image: radial-gradient(ellipse 70% 72% at 52% 43%, #000 45%, rgba(0, 0, 0, .9) 58%, transparent 82%);
  mask-image: radial-gradient(ellipse 70% 72% at 52% 43%, #000 45%, rgba(0, 0, 0, .9) 58%, transparent 82%);
  filter:
    saturate(.92)
    contrast(1.03)
    brightness(.9)
    drop-shadow(-10px 20px 30px rgba(0, 0, 0, .42));
}

.connect-title-outline {
  text-shadow: 0 0 28px rgba(81, 220, 255, .08);
}

@keyframes connect-particles-drift {
  from { transform: translate3d(-.5rem, -.25rem, 0); opacity: .16; }
  to { transform: translate3d(.75rem, .5rem, 0); opacity: .27; }
}

/* Tighter, consistent mobile rhythm */
@media (max-width: 700px) {
  .nav-links a::after {
    right: auto;
    bottom: .38rem;
    left: 2.2rem;
    width: 4.25rem;
    transform-origin: left;
  }

  .broadcast-cta {
    animation-duration: 8s;
  }

  .hero-subject-state {
    transition-duration: .58s, 0s, .68s, .58s;
  }

  .signal-label.is-active {
    animation-delay: .42s, .78s;
  }

  .about-scene .about-stage,
  .live-shell,
  .create-workflow,
  .consulting-scene,
  .community-scene,
  .art-gallery {
    padding-top: 5.25rem;
    padding-bottom: 3.75rem;
  }

  .about-stage {
    gap: 1.85rem !important;
  }

  .about-personality {
    grid-template-columns: 1fr;
    gap: .32rem;
    margin-top: 1rem;
  }

  .create-mobile-sequence {
    gap: 2rem;
  }

  .connect-composition {
    padding-top: 5.6rem;
  }

  .connect-subject {
    width: min(116%, 29rem);
    height: 27rem;
    margin-top: -.5rem;
  }

  .connect-subject img {
    object-position: 50% 27%;
  }

  .connect-broadcast-dock {
    margin-bottom: 1.2rem;
  }

  .site-footer {
    min-height: 4rem;
    padding-block: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .broadcast-cta,
  .connect-particles,
  .signal-label.is-active,
  .signal-label.is-active::before {
    animation: none;
  }

  .about-track.timeline-ready .about-chapter:not(.is-revealed) {
    opacity: 1;
    transform: none;
  }

  .hero.is-role-changing .hero-subject-state.is-active {
    opacity: 1;
    transform: none;
  }
}

.lightbox-prev,.lightbox-next{position:absolute;top:50%;z-index:1;width:44px;height:44px;border:1px solid var(--border);border-radius:50%;background:rgba(5,7,13,.7);color:var(--text);font-size:1.4rem;cursor:pointer}.lightbox-prev{left:1.5rem}.lightbox-next{right:1.5rem}.lightbox-open{overflow:hidden}.lightbox-prev:focus-visible,.lightbox-next:focus-visible{outline:3px solid var(--cyan);outline-offset:3px}

/* --------------------------------------------------------------------------
   Phase 1 — header and hero studio scene
   -------------------------------------------------------------------------- */
:root {
  --ink: #05070d;
  --ink-raised: #0b1020;
  --paper: #f5f7ff;
  --line: rgba(211, 226, 255, 0.16);
  --cyan: #51dcff;
  --pink: #fb3fac;
  --muted: #a7b0c5;
}

body {
  background: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 78% 10%, rgba(91, 33, 136, 0.22), transparent 28rem),
    radial-gradient(circle at 18% 62%, rgba(0, 157, 255, 0.1), transparent 32rem), var(--ink);
}

.btn {
  min-height: 46px;
  border-radius: 4px;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:focus-visible,
.nav-links a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.btn-primary {
  background: var(--cyan);
  box-shadow: 0 12px 32px rgba(81, 220, 255, 0.2);
}

.btn-primary:hover {
  background: #b9f4ff;
  box-shadow: 0 16px 38px rgba(81, 220, 255, 0.28);
}

.btn-secondary {
  border-color: rgba(225, 239, 255, 0.32);
  background: rgba(6, 11, 22, 0.32);
  backdrop-filter: blur(8px);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 76px;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 4, 10, 0.7) 0%, rgba(2, 4, 10, 0.32) 68%, transparent);
  backdrop-filter: none;
  transition: background 350ms ease, backdrop-filter 350ms ease, border-color 350ms ease;
}

.site-header.is-scrolled {
  background: linear-gradient(105deg, rgba(5, 7, 13, 0.86), rgba(8, 11, 24, 0.72));
  backdrop-filter: blur(18px) saturate(130%);
  border-bottom: 1px solid rgba(211, 226, 255, 0.1);
}

.navbar {
  height: 100%;
  max-width: 1320px;
  padding: 0 2.1rem;
}

.logo {
  position: relative;
  z-index: 3;
  gap: 0.65rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.logo-text .accent {
  color: var(--cyan);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.nav-panel {
  margin-left: auto;
}

.nav-links {
  gap: clamp(0.9rem, 1.55vw, 1.55rem);
}

.nav-links a {
  position: relative;
  display: block;
  padding: 0.55rem 0;
  color: rgba(240, 245, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--paper);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
  box-shadow: 0 0 10px rgba(81, 220, 255, 0.72);
}

.nav-cta {
  z-index: 3;
  margin-left: clamp(0.6rem, 1.5vw, 1.25rem);
  min-height: 38px;
  padding: 0.5rem 1rem;
  font-size: 0.76rem;
  background: linear-gradient(110deg, var(--cyan), #96efff 60%, #d9b5ff);
  box-shadow: 0 10px 28px rgba(81, 220, 255, 0.16), inset 0 -1px 0 rgba(251, 63, 172, 0.28);
}

.nav-cta-mobile {
  display: none;
}

/* Hero */
.hero {
  isolation: isolate;
  max-width: none;
  min-height: 100svh;
  padding: 76px 0 0;
  text-align: left;
  overflow: hidden;
  display: block;
  background: #05070d;
}

.hero-bg-stack,
.hero-scrim,
.hero-light-trail {
  position: absolute;
  inset: 0;
}

.hero-bg-stack {
  z-index: -4;
}

.hero-ambient {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.16;
  will-change: transform;
}

.hero-ambient-cyan {
  top: 26%;
  left: 35%;
  background: rgba(42, 199, 255, 0.55);
  animation: hero-ambient-cyan 10s ease-in-out infinite alternate;
}

.hero-ambient-magenta {
  top: 5%;
  right: -12%;
  background: rgba(251, 63, 172, 0.48);
  animation: hero-ambient-magenta 12s ease-in-out infinite alternate;
}

.hero-scrim {
  z-index: -3;
  background: linear-gradient(90deg, rgba(5, 7, 13, 0.98) 0%, rgba(5, 7, 13, 0.91) 31%, rgba(5, 7, 13, 0.23) 66%, rgba(5, 7, 13, 0.52) 100%),
    linear-gradient(0deg, rgba(5, 7, 13, 0.94) 0%, transparent 32%, rgba(5, 7, 13, 0.2) 100%);
}

.hero-light-trail {
  z-index: -1;
  opacity: 0.75;
  background: radial-gradient(ellipse at 71% 73%, rgba(35, 181, 255, 0.15), transparent 25%),
    linear-gradient(115deg, transparent 44%, rgba(81, 220, 255, 0.1) 44.15%, transparent 44.5%),
    linear-gradient(112deg, transparent 73%, rgba(251, 63, 172, 0.1) 73.15%, transparent 73.5%);
  mask-image: linear-gradient(90deg, transparent, #000 38%, #000);
}

.hero-stage {
  position: relative;
  width: min(100%, 1440px);
  min-height: calc(100svh - 76px);
  margin: 0 auto;
}

.hero-studio-environment {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-studio-environment::before {
  content: "";
  position: absolute;
  inset: 18% 34% 0 25%;
  background: url("../assets/img/hero-authentic-studio-desktop.webp") 34% center / auto 100% no-repeat;
  clip-path: polygon(0 0, 72% 0, 63% 100%, 0 100%);
  opacity: .76;
  filter: saturate(.82) brightness(.7);
}

.hero-studio-environment::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 43%, rgba(81, 220, 255, .11), transparent 24rem),
    radial-gradient(circle at 87% 38%, rgba(251, 63, 172, .12), transparent 22rem),
    linear-gradient(90deg, rgba(5, 7, 13, .5), transparent 42%, rgba(5, 7, 13, .28) 72%, rgba(5, 7, 13, .72));
}

.hero-studio-environment > img {
  position: absolute;
  z-index: 2;
  top: 5%;
  right: 1.5%;
  width: min(36vw, 33rem);
  height: auto;
  opacity: .2;
  filter: drop-shadow(0 0 16px rgba(81, 220, 255, .24));
}

.hero-studio-monitor {
  position: absolute;
  z-index: 2;
  top: 31%;
  right: 34%;
  width: min(27vw, 25rem);
  height: min(32vw, 21rem);
  border: 1px solid rgba(81, 220, 255, .1);
  background:
    linear-gradient(180deg, rgba(81, 220, 255, .045), transparent 48%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 5px);
  clip-path: polygon(3% 0, 100% 2%, 96% 100%, 0 96%);
  opacity: .58;
  transform: perspective(800px) rotateY(8deg);
}

.hero-copy {
  position: relative;
  z-index: 4;
  isolation: isolate;
  width: min(47vw, 630px);
  padding: clamp(6.9rem, 15.7vh, 10.5rem) 0 5rem clamp(1.5rem, 6vw, 6.5rem);
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -4rem;
  right: -4rem;
  bottom: -4rem;
  left: -10vw;
  background: linear-gradient(90deg, rgba(5, 7, 13, 0.58), rgba(5, 7, 13, 0.24) 68%, transparent);
  pointer-events: none;
}

.hero-role-line {
  margin-bottom: 1.4rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.6rem, 5.45vw, 5.75rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-wrap: balance;
}

.hero h1 span {
  display: inline-block;
  color: #dce6f4;
  font-size: 0.79em;
  font-weight: 650;
  letter-spacing: -0.055em;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(219, 244, 255, 0.9);
  text-shadow: 0 0 26px rgba(81, 220, 255, 0.1);
}

.hero .tagline {
  max-width: 34rem;
  margin: 1.5rem 0 1.9rem;
  color: #c4ccdb;
  font-size: clamp(0.95rem, 1.22vw, 1.08rem);
  line-height: 1.75;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-actions .btn {
  padding: 0.8rem 1.1rem;
}

.hero-actions .btn span {
  font-size: 1.1rem;
}

.hero-subject {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  margin: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-subject::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.92) 0%, rgba(5, 7, 13, 0.55) 34%, transparent 61%),
    linear-gradient(0deg, rgba(5, 7, 13, 0.92) 0%, transparent 19%),
    radial-gradient(ellipse at 84% 43%, transparent 25%, rgba(5, 7, 13, 0.1) 57%);
  pointer-events: none;
}

.hero-subject-state {
  position: absolute;
  z-index: 0;
  right: clamp(-1rem, 1vw, .8rem);
  bottom: -1.6rem;
  display: block;
  width: auto;
  height: min(92%, 53rem);
  max-width: 52vw;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0;
  visibility: hidden;
  filter:
    drop-shadow(-12px 16px 28px rgba(0, 0, 0, .5))
    drop-shadow(-2px 0 8px rgba(81, 220, 255, .08));
  transform: translate3d(calc(1.4rem + var(--hero-depth-x, 0px) * -.18), calc(.4rem + var(--hero-depth-y, 0px) * -.12), 0) scale(.985);
  transition:
    opacity .42s ease,
    visibility 0s linear .42s,
    transform .72s cubic-bezier(.22, 1, .36, 1),
    filter .42s ease;
}

.hero-subject-state.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: translate3d(calc(var(--hero-depth-x, 0px) * -.18), calc(var(--hero-depth-y, 0px) * -.12), 0) scale(1);
  transition-delay: 0s;
}

.hero-subject-state[data-hero-subject-state="1"] {
  right: clamp(1rem, 3vw, 3.4rem);
  height: min(91%, 52rem);
}

.hero-subject-state[data-hero-subject-state="2"] {
  right: clamp(0, 2vw, 2.2rem);
  height: min(94%, 54rem);
}

.hero-ecosystem {
  position: absolute;
  z-index: 3;
  top: 31%;
  right: 22%;
  width: clamp(270px, 25vw, 360px);
  height: clamp(250px, 27vw, 380px);
  color: var(--paper);
  transform: translate3d(var(--hero-depth-x, 0px), var(--hero-depth-y, 0px), 0);
  transition: transform 0.65s cubic-bezier(.22, 1, .36, 1);
  perspective: 1100px;
}

.ecosystem-signal-rail {
  position: absolute;
  top: -8%;
  left: -8%;
  width: 1px;
  height: 112%;
  background: linear-gradient(transparent, rgba(81, 220, 255, .72) 20%, rgba(251, 63, 172, .5) 73%, transparent);
  box-shadow: 0 0 18px rgba(81, 220, 255, .25);
}

.ecosystem-signal-rail::before,
.ecosystem-signal-rail::after {
  content: "";
  position: absolute;
  left: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  background: #07101d;
  box-shadow: 0 0 12px rgba(81, 220, 255, .7);
}

.ecosystem-signal-rail::before { top: 24%; }
.ecosystem-signal-rail::after { bottom: 18%; border-color: var(--pink); }

.ecosystem-beam {
  position: absolute;
  z-index: -1;
  left: -7.5%;
  bottom: 3%;
  width: 108%;
  height: 64%;
  background: linear-gradient(92deg, rgba(81, 220, 255, .13), rgba(81, 220, 255, .015) 54%, rgba(251, 63, 172, .08));
  clip-path: polygon(0 88%, 100% 0, 100% 100%, 0 96%);
  filter: blur(8px);
  opacity: .72;
  pointer-events: none;
}

.ecosystem-projection {
  position: absolute;
  inset: 0 0 3.2rem;
  overflow: hidden;
  border-top: 1px solid rgba(163, 235, 255, .43);
  border-bottom: 1px solid rgba(251, 63, 172, .28);
  background:
    linear-gradient(110deg, rgba(8, 17, 31, .76), rgba(5, 10, 20, .22)),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(139, 225, 255, .022) 5px 6px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .28), inset 0 0 55px rgba(50, 199, 255, .045);
  backdrop-filter: blur(7px) saturate(130%);
  transform: rotateY(-7deg) rotateX(1.5deg);
  transform-origin: right center;
  animation: ecosystem-breathe 5.5s ease-in-out infinite alternate;
}

.ecosystem-projection::before,
.ecosystem-projection::after {
  content: "";
  position: absolute;
  z-index: 6;
  pointer-events: none;
}

.ecosystem-projection::before {
  inset: 0;
  background: linear-gradient(90deg, rgba(81, 220, 255, .18), transparent 2%, transparent 97%, rgba(251, 63, 172, .12));
}

.ecosystem-projection::after {
  top: -20%;
  left: 0;
  width: 100%;
  width: 1px;
  height: 140%;
  background: rgba(203, 247, 255, .42);
  box-shadow: 0 0 20px rgba(81, 220, 255, .7);
  animation: ecosystem-scan 4.2s linear infinite;
}

.ecosystem-topline {
  position: absolute;
  z-index: 7;
  top: .65rem;
  right: .75rem;
  left: .75rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .55rem;
  align-items: center;
  color: rgba(223, 244, 255, .7);
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.ecosystem-topline i {
  height: 1px;
  background: linear-gradient(90deg, rgba(81, 220, 255, .6), rgba(251, 63, 172, .18));
}

.ecosystem-scenes,
.ecosystem-scene {
  position: absolute;
  inset: 0;
}

.ecosystem-scene {
  overflow: hidden;
  opacity: 0;
  transform: translate3d(12%, 0, 0) scale(.96);
  clip-path: inset(0 0 0 100%);
  transition: opacity .42s ease, transform .65s cubic-bezier(.22, 1, .36, 1), clip-path .65s cubic-bezier(.22, 1, .36, 1);
}

.ecosystem-scene.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  clip-path: inset(0);
}

.ecosystem-scene video,
.ecosystem-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
  filter: saturate(.82) contrast(1.13) brightness(.72);
}

.ecosystem-stream video {
  width: 240%;
  max-width: none;
  object-position: 0 28%;
  transform: translateX(0);
  transform-origin: left center;
}

.ecosystem-stream::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, transparent 48%, rgba(4, 9, 17, .72) 72%, rgba(4, 9, 17, .98) 100%);
  pointer-events: none;
}
.ecosystem-create img { object-position: 50% 28%; }

.ecosystem-scenes::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 9, 17, .96), transparent 54%), linear-gradient(90deg, rgba(4, 9, 17, .46), transparent 50%);
  pointer-events: none;
}

.scene-state {
  position: absolute;
  z-index: 4;
  top: 2.1rem;
  left: .8rem;
  color: rgba(229, 250, 255, .82);
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.stream-crosshair {
  position: absolute;
  z-index: 3;
  top: 31%;
  left: 48%;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(81, 220, 255, .55);
  transform: translate(-50%, -50%);
}

.stream-crosshair::before,
.stream-crosshair::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(81, 220, 255, .65);
  transform: translate(-50%, -50%);
}

.stream-crosshair::before { width: 4.1rem; height: 1px; }
.stream-crosshair::after { width: 1px; height: 4.1rem; }

.stream-meter {
  position: absolute;
  z-index: 3;
  right: .8rem;
  bottom: 4.9rem;
  display: flex;
  align-items: end;
  gap: 3px;
  height: 2.5rem;
}

.stream-meter i {
  width: 3px;
  height: var(--meter-height, 60%);
  background: linear-gradient(var(--pink), var(--cyan));
  animation: meter-pulse .72s ease-in-out infinite alternate;
}

.stream-meter i:nth-child(2) { --meter-height: 90%; animation-delay: -.3s; }
.stream-meter i:nth-child(3) { --meter-height: 48%; animation-delay: -.5s; }
.stream-meter i:nth-child(4) { --meter-height: 76%; animation-delay: -.12s; }
.stream-meter i:nth-child(5) { --meter-height: 38%; animation-delay: -.62s; }
.stream-meter i:nth-child(6) { --meter-height: 67%; animation-delay: -.24s; }

.edit-playhead {
  position: absolute;
  z-index: 3;
  top: 30%;
  bottom: 4rem;
  left: 34%;
  width: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(81, 220, 255, .55);
  animation: edit-playhead 2.4s ease-in-out infinite alternate;
}

.edit-tracks {
  position: absolute;
  z-index: 3;
  right: .8rem;
  bottom: 4.6rem;
  left: .8rem;
  display: grid;
  gap: 4px;
}

.edit-tracks i {
  height: 4px;
  background: linear-gradient(90deg, rgba(81, 220, 255, .7) 0 32%, transparent 32% 35%, rgba(251, 63, 172, .52) 35% 74%, transparent 74%);
}

.ecosystem-consult svg {
  position: absolute;
  inset: 2.4rem .8rem 4.2rem;
  width: calc(100% - 1.6rem);
  height: calc(100% - 6.6rem);
  overflow: visible;
}

.ecosystem-consult path {
  fill: none;
  stroke: rgba(81, 220, 255, .72);
  stroke-width: 2;
  stroke-dasharray: 6 7;
}

.ecosystem-consult circle {
  fill: #07101d;
  stroke: var(--cyan);
  stroke-width: 2;
  filter: drop-shadow(0 0 7px rgba(81, 220, 255, .7));
}

.consult-pulses {
  position: absolute;
  inset: 0;
}

.consult-pulses i {
  position: absolute;
  width: .42rem;
  height: .42rem;
  border: 1px solid var(--pink);
  border-radius: 50%;
  animation: consult-pulse 1.8s ease-out infinite;
}

.consult-pulses i:nth-child(1) { left: 10%; bottom: 25%; }
.consult-pulses i:nth-child(2) { top: 35%; left: 45%; animation-delay: -.6s; }
.consult-pulses i:nth-child(3) { top: 19%; right: 9%; animation-delay: -1.2s; }

.ecosystem-caption {
  position: absolute;
  z-index: 8;
  right: .9rem;
  bottom: .85rem;
  left: .9rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: .16rem;
  align-items: end;
}

.ecosystem-caption span {
  grid-column: 1 / -1;
  color: var(--cyan);
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ecosystem-caption strong {
  margin-top: .2rem;
  font-size: clamp(.95rem, 1.35vw, 1.25rem);
  line-height: 1;
}

.ecosystem-caption small {
  max-width: 13rem;
  color: rgba(233, 241, 252, .62);
  font-size: .56rem;
  line-height: 1.35;
  text-align: left;
}

.ecosystem-orbit {
  position: absolute;
  z-index: 9;
  color: rgba(226, 247, 255, .72);
  font-size: .45rem;
  font-weight: 800;
  letter-spacing: .11em;
  transition: opacity .4s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
}

.ecosystem-orbit span {
  display: block;
  margin-bottom: .3rem;
}

.orbit-obs {
  top: 13%;
  left: -13%;
}

.orbit-obs i {
  display: inline-block;
  width: 3px;
  height: calc(.4rem + var(--bar, 0px));
  margin-right: 2px;
  background: var(--cyan);
  animation: meter-pulse .65s ease-in-out infinite alternate;
}

.orbit-obs i:nth-child(2) { --bar: .35rem; animation-delay: -.25s; }
.orbit-obs i:nth-child(3) { --bar: .16rem; animation-delay: -.48s; }

.orbit-chat {
  top: 37%;
  right: -11%;
}

.orbit-chat b {
  display: block;
  width: 3.6rem;
  height: 2px;
  margin: 4px 0;
  background: linear-gradient(90deg, var(--pink), transparent);
  opacity: .55;
}

.orbit-chat b:nth-child(2) { width: 2.4rem; }
.orbit-chat b:nth-child(3) { width: 3rem; }

.orbit-edit {
  right: 4%;
  bottom: 13%;
}

.orbit-edit i {
  display: block;
  width: 4.2rem;
  height: 2px;
  margin-top: 4px;
  background: linear-gradient(90deg, var(--cyan) 0 28%, transparent 28% 34%, var(--pink) 34% 82%, transparent 82%);
}

.ecosystem-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .3rem;
}

.ecosystem-controls button {
  position: relative;
  min-height: 2.45rem;
  padding: .45rem .2rem .35rem;
  border: 0;
  border-top: 1px solid rgba(220, 241, 255, .18);
  background: transparent;
  color: rgba(223, 235, 249, .46);
  font: inherit;
  font-size: .58rem;
  font-weight: 700;
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease;
}

.ecosystem-controls button::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transform: scaleX(0);
  transition: transform .35s ease;
}

.ecosystem-controls button span {
  margin-right: .25rem;
  color: rgba(81, 220, 255, .56);
  font-size: .48rem;
}

.ecosystem-controls button:is(:hover, :focus-visible, .is-active) {
  color: var(--paper);
  border-color: rgba(81, 220, 255, .42);
}

.ecosystem-controls button:is(:hover, :focus-visible, .is-active)::before {
  transform: scaleX(1);
}

.ecosystem-controls button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.hero-ecosystem[data-active-role="0"] .orbit-obs,
.hero-ecosystem[data-active-role="1"] .orbit-edit,
.hero-ecosystem[data-active-role="2"] .orbit-chat {
  color: var(--paper);
  opacity: 1;
  transform: translate3d(0, -3px, 0);
}

/* Connected Hero signal path */
.hero h1 .hero-headline-line {
  display: block;
  color: rgba(220, 230, 244, .48);
  font-size: 1em;
  font-weight: 800;
  letter-spacing: -.065em;
  -webkit-text-stroke: 0;
  text-shadow: none;
  transition: color .28s ease, opacity .28s ease, text-shadow .28s ease;
}

.hero h1 .hero-headline-help {
  color: rgba(220, 230, 244, .44);
  font-size: .79em;
  font-weight: 650;
  letter-spacing: -.055em;
}

.hero h1 .hero-headline-line.is-active {
  color: #f5f8ff;
  opacity: 1;
}

.hero[data-active-role="0"] .hero-headline-line[data-hero-line="0"] {
  text-shadow: 0 0 25px rgba(81, 220, 255, .13);
}

.hero[data-active-role="1"] .hero-headline-line[data-hero-line="1"] {
  text-shadow: 0 0 25px rgba(251, 63, 172, .13);
}

.hero[data-active-role="2"] .hero-headline-help {
  color: #e4ecf8;
}

.hero-ecosystem {
  top: 30%;
  right: 20%;
  width: clamp(300px, 28vw, 400px);
  height: clamp(250px, 26vw, 350px);
  perspective: none;
}

.hero-signal-map {
  position: absolute;
  inset: 0 0 3rem;
  width: 100%;
  height: calc(100% - 3rem);
  overflow: visible;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .26));
}

.signal-route-group {
  opacity: 0;
  visibility: hidden;
  transform: scale(.985);
  transform-origin: 72% 50%;
  transition:
    opacity .18s ease,
    transform .2s cubic-bezier(.4, 0, 1, 1),
    visibility 0s linear .2s;
}

.signal-route-group.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

.signal-route,
.signal-route-shadow,
.signal-route-flow,
.signal-arrow {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal-route-shadow {
  stroke: rgba(5, 9, 17, .76);
  stroke-width: 7;
  filter: blur(2px);
}

.signal-route {
  stroke-width: 1.6;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.signal-route-cyan { stroke: url("#hero-signal-cyan"); }
.signal-route-magenta { stroke: url("#hero-signal-magenta"); }
.signal-route-balanced { stroke: url("#hero-signal-balanced"); }

.signal-route-flow {
  stroke: rgba(241, 252, 255, .8);
  stroke-width: 2.5;
  stroke-dasharray: .018 .13;
  stroke-dashoffset: .2;
  opacity: 0;
}

.signal-anchor {
  fill: #07101a;
  stroke: rgba(208, 247, 255, .9);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 6px rgba(81, 220, 255, .58));
}

.signal-endpoint {
  fill: #07101a;
  stroke: var(--cyan);
  stroke-width: 1.5;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 7px rgba(81, 220, 255, .7));
}

[data-signal-route="1"] .signal-endpoint {
  stroke: var(--pink);
  filter: drop-shadow(0 0 7px rgba(251, 63, 172, .65));
}

[data-signal-route="2"] .signal-endpoint {
  stroke: #b995ff;
  filter: drop-shadow(0 0 7px rgba(173, 122, 255, .7));
}

.signal-arrow {
  stroke: rgba(224, 248, 255, .82);
  stroke-width: 1.3;
  opacity: 0;
}

.signal-route-group.is-active .signal-route {
  animation: hero-signal-draw .48s cubic-bezier(.22, 1, .36, 1) forwards;
}

.signal-route-group.is-active .signal-route-flow {
  animation: hero-signal-flow .92s .24s linear infinite;
}

.signal-route-group.is-active .signal-endpoint {
  animation: hero-signal-node .22s .36s ease-out forwards;
}

.signal-route-group.is-active .signal-arrow {
  animation: hero-signal-arrow .2s .38s ease-out forwards;
}

.hero-ecosystem.is-changing .signal-route-group.is-active,
.hero-ecosystem.is-changing .signal-label.is-active {
  opacity: 0;
  transform: translate3d(-12px, 0, 0) scale(.98);
  filter: blur(4px);
  transition-duration: .2s;
}

.signal-labels {
  position: absolute;
  inset: 0 0 3rem;
  pointer-events: none;
}

.signal-label {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 2rem auto;
  grid-template-areas:
    "number title"
    "number detail";
  align-items: center;
  min-width: 14rem;
  padding: .48rem 0 .5rem;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(5, 9, 17, .92), rgba(5, 9, 17, .48) 76%, transparent);
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 100% 0 0);
  transform: translate3d(-10px, 0, 0);
  filter: blur(3px);
  transition:
    opacity .18s ease,
    transform .18s ease,
    filter .18s ease,
    visibility 0s linear .18s;
}

.signal-label[data-signal-label="0"] { top: 69%; left: 0; }
.signal-label[data-signal-label="1"] { top: 82%; left: 2%; }
.signal-label[data-signal-label="2"] { top: 9%; left: 6%; }

.signal-label.is-active {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0);
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  animation: hero-signal-label-in .42s .34s cubic-bezier(.16, 1, .3, 1) both;
  transition: visibility 0s;
}

.signal-label::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 0;
  left: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(81, 220, 255, 0));
  opacity: .56;
  transform: scaleX(0);
  transform-origin: left;
}

.signal-label[data-signal-label="1"]::after {
  background: linear-gradient(90deg, var(--pink), rgba(251, 63, 172, 0));
}

.signal-label[data-signal-label="2"]::after {
  background: linear-gradient(90deg, var(--cyan), #b995ff 48%, rgba(251, 63, 172, 0));
}

.signal-label.is-active::after {
  animation: hero-signal-label-rule .38s .5s cubic-bezier(.16, 1, .3, 1) forwards;
}

.signal-label span {
  grid-area: number;
  align-self: stretch;
  padding-top: .18rem;
  border-right: 1px solid rgba(81, 220, 255, .24);
  color: var(--cyan);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.signal-label[data-signal-label="1"] span { color: var(--pink); }
.signal-label[data-signal-label="2"] span { color: #b995ff; }

.signal-label strong {
  grid-area: title;
  padding-left: .78rem;
  color: #f4f8ff;
  font-size: clamp(1.2rem, 1.55vw, 1.5rem);
  line-height: 1;
  letter-spacing: -.025em;
  text-shadow: 0 0 16px rgba(81, 220, 255, .16);
}

.signal-label small {
  grid-area: detail;
  padding: .28rem 0 0 .78rem;
  color: rgba(227, 237, 250, .76);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .045em;
}

.hero-state-announcer {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero[data-active-role="0"] .hero-studio-monitor {
  border-color: rgba(81, 220, 255, .18);
  box-shadow: inset 0 0 36px rgba(81, 220, 255, .045);
}

.hero[data-active-role="1"] .hero-studio-monitor {
  border-color: rgba(251, 63, 172, .2);
  box-shadow: inset 0 0 38px rgba(251, 63, 172, .055);
  transform: perspective(800px) rotateY(4deg) translateY(7px);
}

.hero[data-active-role="2"] .hero-studio-monitor {
  border-color: rgba(173, 122, 255, .2);
  box-shadow: inset 0 0 40px rgba(81, 220, 255, .035);
  transform: perspective(800px) rotateY(10deg) translateY(-6px);
}

@keyframes hero-signal-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes hero-signal-flow {
  0% { opacity: 0; stroke-dashoffset: .25; }
  18%, 82% { opacity: .68; }
  100% { opacity: 0; stroke-dashoffset: -.35; }
}

@keyframes hero-signal-node {
  0% { opacity: 0; transform: scale(.3); }
  70% { opacity: 1; transform: scale(1.35); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes hero-signal-arrow {
  from { opacity: 0; transform: translateX(5px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes hero-signal-label-in {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translate3d(-12px, 0, 0);
    filter: blur(4px);
  }
  55% { opacity: 1; }
  100% {
    opacity: 1;
    clip-path: inset(0);
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes hero-signal-label-rule {
  to { transform: scaleX(1); }
}

.scroll-indicator {
  bottom: 1.5rem;
  left: clamp(1.5rem, 6vw, 6.5rem);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: rgba(240, 245, 255, 0.6);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: none;
}

.hero-next-preview {
  position: absolute;
  right: clamp(1.5rem, 5.5vw, 6.5rem);
  bottom: 1.5rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(241, 246, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.hero-next-preview span {
  color: var(--pink);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-next-preview i {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--pink);
}

@keyframes hero-ambient-cyan {
  from { transform: translate3d(-5%, 2%, 0) scale(.92); }
  to { transform: translate3d(8%, -5%, 0) scale(1.08); }
}

@keyframes hero-ambient-magenta {
  from { transform: translate3d(4%, -3%, 0) scale(1.04); }
  to { transform: translate3d(-9%, 6%, 0) scale(.9); }
}

@keyframes ecosystem-breathe {
  from { transform: rotateY(-7deg) rotateX(1.5deg) translate3d(0, 0, 0); }
  to { transform: rotateY(-5.5deg) rotateX(2deg) translate3d(-3px, -5px, 0); }
}

@keyframes ecosystem-scan {
  from { transform: translateX(-8%); }
  to { transform: translateX(108%); }
}

@keyframes meter-pulse {
  from { transform: scaleY(.45); opacity: .45; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes edit-playhead {
  from { transform: translateX(-35px); }
  to { transform: translateX(135px); }
}

@keyframes consult-pulse {
  from { transform: scale(.6); opacity: .9; }
  to { transform: scale(3.2); opacity: 0; }
}

.scroll-indicator i {
  position: relative;
  display: block;
  width: 34px;
  height: 1px;
  background: var(--cyan);
}

.scroll-indicator i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
  transform: rotate(-45deg);
}

@media (max-width: 980px) {
  .navbar { padding: 0 1.35rem; }
  .nav-panel { margin-left: auto; }
  .nav-links { gap: 0.75rem; }
  .nav-links a { font-size: 0.71rem; }
  .hero-copy { width: min(58vw, 550px); }
  .hero-ecosystem { right: 18%; width: min(32vw, 360px); }
}

@media (max-width: 760px) {
  .site-header { height: 68px; }
  .navbar { padding: 0 1.1rem; }
  .nav-panel {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: grid;
    align-content: center;
    gap: 2rem;
    padding: 5.6rem 1.75rem 2rem;
    background: rgba(5, 7, 13, 0.96);
    backdrop-filter: blur(20px);
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    transition: clip-path 420ms cubic-bezier(0.76, 0, 0.24, 1);
  }
  .nav-panel.open { clip-path: inset(0); pointer-events: auto; }
  .nav-links { display: grid; gap: 0.2rem; }
  .nav-links li { width: auto; text-align: left; }
  .nav-links a { padding: 0.65rem 0; font-size: clamp(1.35rem, 6vw, 2rem); font-weight: 700; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex; margin: 0; width: fit-content; }
  .nav-toggle { position: relative; z-index: 3; display: flex; border-color: rgba(255, 255, 255, 0.18); }
  .nav-toggle.open span { background: var(--cyan); }
  .hero { min-height: max(820px, 100svh); padding-top: 68px; }
  .hero-stage { min-height: max(752px, calc(100svh - 68px)); }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(5, 7, 13, .74) 0%, rgba(5, 7, 13, .2) 36%, rgba(5, 7, 13, .08) 68%, var(--ink) 100%),
      linear-gradient(90deg, rgba(5, 7, 13, .76), rgba(5, 7, 13, .08) 77%);
  }
  .hero-subject { inset: 0; width: 100%; height: 100%; opacity: 1; }
  .hero-subject::after {
    background:
      linear-gradient(180deg, rgba(5, 7, 13, .2), transparent 44%, rgba(5, 7, 13, .8) 100%),
      linear-gradient(90deg, rgba(5, 7, 13, .68), transparent 76%);
  }
  .hero-subject img {
    right: -15%;
    bottom: 0;
    width: auto;
    max-width: none;
    height: 67%;
    object-position: right bottom;
    transform: translate3d(1rem, 2.4rem, 0) scale(.97);
  }
  .hero-subject img.is-active {
    transform: translate3d(0, 2.4rem, 0) scale(1);
  }
  .hero-subject-state[data-hero-subject-state="1"] {
    right: -9%;
    height: 65%;
  }
  .hero-subject-state[data-hero-subject-state="2"] {
    right: -11%;
    height: 69%;
  }
  .hero-studio-environment::before {
    inset: 30% 0 0 16%;
    background-position: 34% center;
    opacity: .58;
  }
  .hero-studio-environment > img {
    top: 10%;
    right: -12%;
    width: 63vw;
    opacity: .16;
  }
  .hero-studio-monitor {
    top: 52%;
    right: 29%;
    width: 48vw;
    height: 34vh;
    opacity: .34;
  }
  .hero-copy { width: min(64vw, 15rem); padding: 5.1rem 0 0 1.25rem; }
  .hero-role-line { margin-bottom: 0.85rem; font-size: 0.62rem; letter-spacing: 0.09em; }
  .hero h1 { max-width: 15rem; font-size: clamp(2rem, 9.5vw, 2.65rem); line-height: 0.96; }
  .hero h1 span { font-size: 0.76em; }
  .hero h1 .hero-headline-line { font-size: 1em; }
  .hero h1 .hero-headline-help { font-size: .76em; }
  .hero h1 em { -webkit-text-stroke: 0.75px rgba(226, 246, 255, 0.85); }
  .hero .tagline { width: min(56vw, 13.5rem); margin: .9rem 0 .8rem; font-size: 0.74rem; line-height: 1.5; }
  .hero-actions { gap: 0.6rem; }
  .hero-actions .btn { padding: 0.7rem 0.85rem; font-size: 0.82rem; }
  .hero-ecosystem {
    top: 61%;
    right: auto;
    left: 1.2rem;
    width: min(49vw, 11.75rem);
    height: 11.75rem;
  }
  .hero-signal-map { bottom: 2.7rem; height: calc(100% - 2.7rem); }
  .signal-route-shadow { stroke-width: 5; }
  .signal-route { stroke-width: 1.25; }
  .signal-route-flow { stroke-width: 1.8; }
  .signal-labels { bottom: 2.7rem; }
  .signal-label {
    min-width: 10.25rem;
    grid-template-columns: 1.45rem auto;
    padding: .34rem 0 .38rem;
    background: linear-gradient(90deg, rgba(5, 9, 17, .7), rgba(5, 9, 17, .12) 86%, transparent);
  }
  .signal-label[data-signal-label="0"] { top: 67%; left: 0; }
  .signal-label[data-signal-label="1"] { top: 78%; left: 1%; }
  .signal-label[data-signal-label="2"] { top: 8%; left: 4%; }
  .signal-label::after { left: 1.45rem; }
  .signal-label span { padding-top: .12rem; font-size: .5rem; }
  .signal-label strong { padding-left: .52rem; font-size: .92rem; }
  .signal-label small { padding: .2rem 0 0 .52rem; font-size: .58rem; }
  .ecosystem-projection { bottom: 2.8rem; transform: rotateY(-4deg); }
  .ecosystem-caption { display: block; }
  .ecosystem-caption small,
  .ecosystem-orbits,
  .ecosystem-signal-rail { display: none; }
  .ecosystem-caption strong { display: block; font-size: .78rem; }
  .ecosystem-controls button { min-height: 2.25rem; font-size: .49rem; }
  .ecosystem-controls button span { display: block; margin: 0 0 .1rem; font-size: .42rem; }
  .scene-state { font-size: .4rem; }
  .hero-next-preview { display: none; }
  .scroll-indicator { bottom: 1.2rem; left: 1.35rem; font-size: 0.57rem; }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .nav-panel,
  .btn,
  .nav-links a,
  .nav-links a::after { transition: none; }
  .hero-light-trail { opacity: 0.38; }
  .hero-ambient,
  .ecosystem-projection,
  .ecosystem-projection::after,
  .stream-meter i,
  .edit-playhead,
  .consult-pulses i { animation: none; }
  .hero-subject img,
  .hero-ecosystem,
  .ecosystem-scene,
  .ecosystem-controls button,
  .ecosystem-controls button::before { transition: none; }
  .hero-subject-state:not(.is-active) { display: none; }
  .signal-route-group.is-active .signal-route,
  .signal-route-group.is-active .signal-route-flow,
  .signal-route-group.is-active .signal-endpoint,
  .signal-route-group.is-active .signal-arrow {
    animation: none;
  }
  .signal-route-group.is-active .signal-route { stroke-dashoffset: 0; }
  .signal-route-group.is-active .signal-route-flow { opacity: .28; }
  .signal-route-group.is-active .signal-endpoint,
  .signal-route-group.is-active .signal-arrow { opacity: 1; }
  .signal-label.is-active,
  .signal-label.is-active::after { animation: none; }
  .signal-label.is-active {
    clip-path: inset(0);
    filter: none;
    transition: none;
  }
  .signal-label.is-active::after { transform: scaleX(1); }
}

/* --------------------------------------------------------------------------
   Phase 2 — hero bridge and editorial About scene
   -------------------------------------------------------------------------- */
.about-scene {
  isolation: isolate;
  max-width: none;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #07111e 0%, #090a13 56%, #150918 100%);
}

.about-scene::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(251, 63, 172, 0.16), transparent 25rem),
    radial-gradient(circle at 32% 78%, rgba(81, 220, 255, 0.12), transparent 33rem),
    linear-gradient(180deg, rgba(5, 7, 13, 0.98), transparent 20%);
}

.about-bridge {
  position: absolute;
  z-index: -2;
  top: -18%;
  right: -6%;
  width: min(46vw, 620px);
  height: 125%;
  overflow: hidden;
  opacity: 0.12;
  mix-blend-mode: screen;
  transform: perspective(1000px) rotateY(-17deg) rotateX(4deg);
  transform-origin: right center;
}

.about-bridge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #07111e, transparent 55%), linear-gradient(0deg, #090a13, transparent 42%);
}

.about-bridge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
}

.about-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(280px, 0.72fr) minmax(270px, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 5.2vw, 7.5rem);
  width: min(100%, 1320px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(7.5rem, 12vh, 10rem) clamp(1.5rem, 6vw, 6.5rem) clamp(5rem, 9vh, 7rem);
}

.scene-label {
  margin-bottom: 1.3rem;
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-intro h2 {
  max-width: 11ch;
  color: var(--paper);
  font-size: clamp(2.45rem, 4.6vw, 5.1rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.about-intro h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(218, 242, 255, 0.82);
}

.about-intro {
  align-self: start;
}

.about-lede {
  max-width: 33rem;
  margin-top: 1.65rem;
  color: #c4ccdb;
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-origin {
  display: grid;
  gap: 0.85rem;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin: 0;
}

.about-origin div {
  display: grid;
  grid-template-columns: 6.9rem 1fr;
  gap: 0.9rem;
  align-items: baseline;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(216, 239, 255, 0.12);
}

.about-origin dt {
  color: var(--cyan);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-origin dd {
  margin: 0;
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 600;
}

.about-portrait-scene {
  position: relative;
  align-self: stretch;
  min-height: 32rem;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 94% 100%, 0 100%);
  background: #121a29;
}

.about-portrait-scene::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.02), rgba(5, 7, 13, 0.78)), linear-gradient(90deg, rgba(81, 220, 255, 0.22), transparent 42%);
  pointer-events: none;
}

.about-portrait-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 20%;
  filter: saturate(0.9) contrast(1.06);
}

.about-scanline {
  position: absolute;
  z-index: 2;
  top: 20%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(81, 220, 255, 0.75);
  box-shadow: 0 0 18px rgba(81, 220, 255, 0.75);
  animation: about-scan 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.about-portrait-scene figcaption {
  position: absolute;
  z-index: 3;
  right: 1.25rem;
  bottom: 1rem;
  color: rgba(240, 246, 255, 0.76);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-track {
  position: relative;
  display: grid;
  gap: clamp(1.4rem, 3.3vw, 2.8rem);
  padding-left: 2rem;
}

.about-track::before {
  content: "";
  position: absolute;
  top: -0.7rem;
  bottom: 0.8rem;
  left: 0.25rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(81, 220, 255, 0.78) 9%, rgba(81, 220, 255, 0.28) 62%, rgba(251, 63, 172, 0.48) 88%, transparent);
}

.about-chapter {
  position: relative;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
}

.about-history {
  grid-template-columns: 2rem clamp(96px, 8vw, 112px) minmax(0, 1fr);
  align-items: center;
}

.about-history-frame {
  position: relative;
  height: clamp(126px, 10.2vw, 146px);
  margin: 0;
  overflow: hidden;
  clip-path: polygon(0 0, 94% 0, 100% 92%, 7% 100%);
  background: #0b1423;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .28);
}

.about-history-frame::before,
.about-history-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.about-history-frame::before {
  inset: 0;
  background:
    linear-gradient(180deg, transparent 44%, rgba(4, 9, 16, .92) 100%),
    linear-gradient(90deg, rgba(81, 220, 255, .14), transparent 42%);
  box-shadow: inset 0 0 0 1px rgba(159, 229, 255, .2);
}

.about-history-frame::after {
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(transparent, var(--cyan) 24%, var(--pink) 78%, transparent);
  box-shadow: 0 0 12px rgba(81, 220, 255, .38);
}

.about-history-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 19%;
  filter: saturate(.72) contrast(1.08) brightness(.86);
}

.about-history-frame figcaption {
  position: absolute;
  z-index: 3;
  right: .52rem;
  bottom: .48rem;
  left: .52rem;
  color: rgba(241, 247, 255, .82);
  font-size: .43rem;
  font-weight: 650;
  letter-spacing: .025em;
  line-height: 1.25;
}

.about-history-frame figcaption span {
  display: block;
  margin-bottom: .13rem;
  color: var(--cyan);
  font-size: .39rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.chapter-index {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(81, 220, 255, 0.48);
  border-radius: 50%;
  background: #0b1423;
  color: var(--cyan);
  font-size: 0.6rem;
  font-weight: 700;
}

.about-chapter h3 {
  margin: 0 0 0.3rem;
  color: var(--paper);
  font-size: 1.05rem;
  line-height: 1.18;
}

.about-chapter p,
.about-consult-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.about-aj {
  grid-template-columns: 2rem 70px 1fr;
  align-items: center;
}

.about-aj img {
  width: 70px;
  height: 118px;
  padding: 2px;
  border: 1px solid rgba(81, 220, 255, 0.42);
  background: rgba(6, 12, 25, 0.72);
  box-shadow: 0 0 0 1px rgba(251, 63, 172, 0.12), 0 10px 20px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.9);
}

.about-consult-note {
  max-width: 23rem;
  margin-top: 0.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(251, 63, 172, 0.35);
  color: #d1bad1;
}

@media (min-width: 1021px) {
  .about-intro {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  .about-origin {
    grid-column: 1;
    grid-row: 1;
  }

  .about-portrait-scene {
    grid-column: 2;
    grid-row: 1;
  }

  .about-track {
    grid-column: 3;
    grid-row: 1;
  }
}

/* Cinematic studio finale */
.contact-scene {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: clip;
  background:
    radial-gradient(circle at 78% 34%, rgba(81, 220, 255, .1), transparent 27rem),
    radial-gradient(circle at 70% 72%, rgba(251, 63, 172, .1), transparent 30rem),
    linear-gradient(145deg, #090d16 0%, #060810 54%, #0b0711 100%);
}

.contact-scene::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 11, 27, .9), transparent 15rem),
    linear-gradient(90deg, rgba(4, 7, 13, .96) 0%, rgba(4, 7, 13, .78) 42%, rgba(4, 7, 13, .1) 72%),
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(81, 220, 255, .018) 90px);
  pointer-events: none;
}

.contact-scene::after {
  content: "";
  position: absolute;
  z-index: 6;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 3%, rgba(251, 63, 172, .38) 25%, rgba(81, 220, 255, .65) 64%, transparent 96%);
  box-shadow: 0 0 22px rgba(81, 220, 255, .16);
  pointer-events: none;
}

.connect-studio {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.connect-studio::before,
.connect-studio::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(81, 220, 255, .12);
  background:
    linear-gradient(150deg, rgba(29, 46, 67, .38), rgba(5, 8, 15, .8)),
    repeating-linear-gradient(0deg, transparent 0 16px, rgba(81, 220, 255, .035) 17px);
  box-shadow: inset 0 0 45px rgba(81, 220, 255, .055), 0 28px 60px rgba(0, 0, 0, .32);
  transform: perspective(850px) rotateY(-12deg);
}

.connect-studio::before {
  top: 20%;
  left: 44%;
  width: 24%;
  height: 32%;
}

.connect-studio::after {
  display: none;
}

.connect-studio > img {
  position: absolute;
  top: 10%;
  right: 4%;
  width: clamp(20rem, 36vw, 38rem);
  height: auto;
  opacity: .14;
  filter: saturate(.82) brightness(.78) drop-shadow(0 0 30px rgba(81, 220, 255, .12));
  transform: rotate(-1.5deg);
}

.connect-edge-light {
  position: absolute;
  top: -18%;
  right: 5%;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  background: conic-gradient(from 210deg, transparent, rgba(81, 220, 255, .18), transparent 36%, rgba(251, 63, 172, .12), transparent 68%);
  filter: blur(34px);
  opacity: .42;
  animation: connect-light-drift 14s ease-in-out infinite alternate;
}

.connect-monitor {
  position: absolute;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(81, 220, 255, .6), transparent);
  box-shadow: 0 0 14px rgba(81, 220, 255, .2);
}

.connect-monitor-stream {
  top: 37%;
  left: 47%;
  width: 18%;
  transform: rotate(-3deg);
}

.connect-monitor-edit {
  right: 7%;
  bottom: 29%;
  width: 23%;
  background: linear-gradient(90deg, transparent, rgba(251, 63, 172, .55), transparent);
}

.connect-composition {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(370px, 1fr) minmax(450px, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  width: min(100%, 1480px);
  min-height: 100svh;
  margin: auto;
  padding: 6.5rem clamp(1.5rem, 6vw, 6.5rem) 8rem;
}

.connect-copy {
  position: relative;
  z-index: 5;
  max-width: 42rem;
  text-align: left;
}

.connect-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -4rem -7rem -4rem -5rem;
  background: radial-gradient(ellipse at 38% 50%, rgba(4, 7, 13, .86), rgba(4, 7, 13, .45) 50%, transparent 72%);
  pointer-events: none;
}

.connect-copy h2 {
  margin: 1rem 0 1.4rem;
  color: var(--paper);
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 850;
  line-height: .9;
  letter-spacing: -.065em;
}

.connect-copy h2 > span {
  display: block;
  white-space: nowrap;
}

.connect-copy h2 .connect-title-solid {
  color: var(--paper);
}

.connect-copy h2 .connect-title-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(218, 242, 255, .76);
}

.connect-copy > p {
  max-width: 35rem;
  margin: 0 0 2rem;
  color: rgba(214, 224, 240, .76);
  font-size: clamp(.96rem, 1.2vw, 1.1rem);
  line-height: 1.75;
}

.connect-copy .contact-actions {
  justify-content: flex-start;
}

.connect-primary {
  position: relative;
}

.connect-primary::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: -1px;
  left: 1rem;
  height: 1px;
  background: rgba(255, 255, 255, .72);
  transform: scaleX(0);
  transform-origin: left;
}

.connect-subject {
  position: relative;
  align-self: end;
  justify-self: end;
  width: min(100%, 46rem);
  height: min(88svh, 55rem);
  margin: 0;
  pointer-events: none;
}

.connect-subject::before {
  display: none;
}

.connect-subject img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(-18px 30px 34px rgba(0, 0, 0, .46))
    drop-shadow(-3px 0 7px rgba(81, 220, 255, .12))
    drop-shadow(4px 0 6px rgba(251, 63, 172, .1));
}

.connect-signal-line {
  position: absolute;
  z-index: 4;
  top: 58%;
  right: 5%;
  left: 4%;
  height: 1px;
  overflow: visible;
  background: linear-gradient(90deg, transparent, rgba(81, 220, 255, .72) 26%, rgba(251, 63, 172, .5) 72%, transparent);
  box-shadow: 0 0 15px rgba(81, 220, 255, .16);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.connect-signal-line i {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e9fcff;
  box-shadow: 0 0 0 5px rgba(81, 220, 255, .08), 0 0 18px rgba(81, 220, 255, .58);
}

.connect-broadcast-dock {
  position: absolute;
  z-index: 7;
  right: clamp(1.5rem, 6vw, 6.5rem);
  bottom: 2rem;
  left: clamp(1.5rem, 6vw, 6.5rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.connect-broadcast-dock::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: min(34%, 24rem);
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(251, 63, 172, .45), transparent);
}

.connect-broadcast-dock > span {
  margin-right: auto;
  color: rgba(194, 210, 231, .55);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.connect-broadcast-dock a {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  padding: .35rem 0;
  color: rgba(235, 242, 252, .68);
  font-size: .72rem;
  font-weight: 650;
  transition: color .2s ease, transform .2s ease;
}

.connect-broadcast-dock svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.connect-broadcast-dock a:first-of-type svg,
.connect-broadcast-dock a:last-of-type svg {
  fill: currentColor;
  stroke: none;
}

.connect-broadcast-dock a:hover,
.connect-broadcast-dock a:focus-visible {
  color: var(--cyan);
  transform: translateY(-2px);
}

.connect-broadcast-dock a:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.contact-scene.is-ready .connect-subject {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(2rem, 1.25rem, 0) scale(.985);
}

.contact-scene.is-ready .connect-copy {
  opacity: 0;
  transform: translate3d(0, 1.2rem, 0);
}

.contact-scene.is-ready .connect-broadcast-dock {
  opacity: 0;
}

.contact-scene.is-active .connect-subject {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition: opacity .8s .15s ease, filter .8s .15s ease, transform 1s .15s cubic-bezier(.22, 1, .36, 1);
}

.contact-scene.is-active .connect-copy {
  opacity: 1;
  transform: none;
  transition: opacity .65s .62s ease, transform .78s .62s cubic-bezier(.22, 1, .36, 1);
}

.contact-scene.is-active .connect-signal-line {
  animation: connect-signal-arrival 1.1s .42s cubic-bezier(.22, 1, .36, 1) forwards;
}

.contact-scene.is-active .connect-primary::after {
  animation: connect-cta-activate .7s 1.12s ease forwards;
}

.contact-scene.is-active .connect-broadcast-dock {
  opacity: 1;
  transition: opacity .55s 1.05s ease;
}

.contact-scene:not(.is-visible) .connect-edge-light,
body.is-page-hidden .connect-edge-light {
  animation-play-state: paused;
}

.site-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
  padding: 1rem clamp(1.5rem, 6vw, 6.5rem);
  border: 0;
  background: linear-gradient(90deg, #060912, #090811 68%, #0c0710);
  color: rgba(194, 210, 231, .58);
  font-size: .76rem;
  text-align: left;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(1.5rem, 6vw, 6.5rem);
  left: clamp(1.5rem, 6vw, 6.5rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(81, 220, 255, .54), rgba(251, 63, 172, .3) 48%, transparent 90%);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(235, 242, 252, .86);
  font-weight: 700;
  transition: color .2s ease, text-shadow .2s ease;
}

.site-footer a:hover {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(81, 220, 255, .3);
}

.footer-separator {
  color: rgba(81, 220, 255, .45);
}

@keyframes connect-signal-arrival {
  to { transform: scaleX(1); }
}

@keyframes connect-cta-activate {
  to { transform: scaleX(1); }
}

@keyframes connect-light-drift {
  0% { opacity: .3; transform: translate3d(-1.5rem, 0, 0) rotate(-4deg); }
  100% { opacity: .52; transform: translate3d(1.5rem, 1rem, 0) rotate(4deg); }
}

@media (max-width: 900px) {
  .connect-composition {
    grid-template-columns: minmax(280px, .9fr) minmax(360px, 1.1fr);
  }
  .connect-copy h2 {
    font-size: clamp(3rem, 6.5vw, 4.8rem);
  }
}

@media (max-width: 700px) {
  .contact-scene {
    min-height: 0;
  }
  .contact-scene::before {
    background:
      linear-gradient(180deg, rgba(18, 11, 27, .88), transparent 12rem),
      linear-gradient(180deg, rgba(4, 7, 13, .95) 0%, rgba(4, 7, 13, .72) 48%, rgba(4, 7, 13, .18) 76%),
      repeating-linear-gradient(90deg, transparent 0 59px, rgba(81, 220, 255, .018) 60px);
  }
  .connect-composition {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 6.5rem 1.35rem 1rem;
  }
  .connect-copy {
    max-width: 100%;
  }
  .connect-copy::before {
    inset: -2rem -1rem;
    background: radial-gradient(ellipse at 28% 40%, rgba(4, 7, 13, .9), rgba(4, 7, 13, .35) 65%, transparent);
  }
  .connect-copy h2 {
    font-size: clamp(2.85rem, 13vw, 4.25rem);
    line-height: .92;
  }
  .connect-copy h2 > span {
    white-space: normal;
  }
  .connect-copy > p {
    max-width: 24rem;
    font-size: .95rem;
    line-height: 1.65;
  }
  .connect-copy .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 22rem);
  }
  .connect-copy .btn {
    width: 100%;
    justify-content: space-between;
  }
  .connect-subject {
    justify-self: center;
    width: min(118%, 31rem);
    height: 34rem;
    margin-top: -1rem;
    transform-origin: center bottom;
  }
  .contact-scene.is-ready .connect-subject {
    transform: translate3d(.75rem, 1rem, 0) scale(.99);
  }
  .connect-studio > img {
    top: 48%;
    right: -28%;
    width: 28rem;
    opacity: .1;
  }
  .connect-studio::before {
    top: 51%;
    left: -12%;
    width: 70%;
    height: 24%;
  }
  .connect-studio::after {
    right: -28%;
    bottom: 13%;
    width: 78%;
    height: 22%;
  }
  .connect-edge-light {
    top: 35%;
    right: -80%;
  }
  .connect-signal-line {
    top: 64%;
    right: 0;
    left: 0;
  }
  .connect-broadcast-dock {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: .7rem 1.35rem;
    margin: 0 1.35rem 1.8rem;
    padding-top: 1rem;
  }
  .connect-broadcast-dock > span {
    flex: 0 0 100%;
  }
  .connect-broadcast-dock::before {
    width: 58%;
  }
  .connect-broadcast-dock a {
    min-height: 44px;
  }
  .site-footer {
    flex-wrap: wrap;
    justify-content: center;
    gap: .35rem .65rem;
    padding: 1.35rem;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-scene.is-ready .connect-subject,
  .contact-scene.is-ready .connect-copy,
  .contact-scene.is-ready .connect-broadcast-dock {
    opacity: 1;
    filter: none;
    transform: none;
  }
  .contact-scene.is-active .connect-subject,
  .contact-scene.is-active .connect-copy,
  .contact-scene.is-active .connect-broadcast-dock {
    transition: none;
  }
  .connect-signal-line {
    transform: scaleX(1);
  }
  .contact-scene.is-active .connect-signal-line,
  .contact-scene.is-active .connect-primary::after,
  .connect-edge-light {
    animation: none;
  }
  .connect-primary::after {
    transform: scaleX(1);
  }
}

@media (max-width: 1020px) {
  .about-stage { grid-template-columns: minmax(240px, 0.9fr) minmax(255px, 0.82fr); gap: clamp(2rem, 6vw, 4rem); }
  .about-origin { grid-column: 1; grid-row: 1; }
  .about-track { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-track::before { top: 1.15rem; right: 0; bottom: auto; width: auto; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); }
  .about-consult-note { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .about-scene { min-height: auto; }
  .about-bridge { top: -11%; right: -35%; width: 94vw; height: 48%; opacity: 0.12; }
  .about-stage { display: grid; grid-template-columns: 1fr; gap: 2.3rem; min-height: auto; padding: 6rem 1.35rem 4.5rem; }
  .about-intro h2 { max-width: 12ch; font-size: clamp(2.5rem, 12vw, 4rem); }
  .about-lede { margin-top: 1.15rem; font-size: 0.9rem; }
  .about-origin { grid-column: auto; grid-row: auto; align-self: auto; margin: 0; }
  .about-origin div { grid-template-columns: 6rem 1fr; }
  .about-portrait-scene { min-height: 29rem; max-height: 36rem; clip-path: polygon(7% 0, 100% 0, 94% 100%, 0 100%); }
  .about-portrait-scene img { object-position: 52% 20%; }
  .about-track { grid-column: auto; display: grid; grid-template-columns: 1fr; gap: 1.7rem; padding-left: 1.65rem; }
  .about-track::before { top: -0.7rem; right: auto; bottom: 0.8rem; left: 0.2rem; width: 1px; height: auto; background: linear-gradient(180deg, transparent, rgba(81, 220, 255, 0.78) 9%, rgba(81, 220, 255, 0.28) 62%, rgba(251, 63, 172, 0.48) 88%, transparent); }
  .about-consult-note { grid-column: auto; }
  .about-history { grid-template-columns: 2rem 104px minmax(0, 1fr); gap: .65rem; }
  .about-history-frame { height: 136px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-scanline { animation: none; }
  .about-history-frame { transition: none; }
}

@keyframes about-scan {
  from { top: 11%; opacity: 0; }
  30% { opacity: 0.9; }
  to { top: 20%; opacity: 1; }
}

/* Phase 3 — live show and creator process */
.live-scene,.create-scene{max-width:none;margin:0;padding:0;overflow:hidden}.live-scene{background:#080b12}.live-shell{display:grid;grid-template-columns:.8fr 1.2fr;gap:clamp(2rem,7vw,9rem);align-items:center;min-height:100svh;max-width:1320px;margin:auto;padding:8rem clamp(1.5rem,6vw,6.5rem)}.live-copy h2,.create-head h2{font-size:clamp(2.7rem,5vw,5.2rem);line-height:.94;letter-spacing:-.065em}.live-copy h2 span,.create-head h2 span{color:transparent;-webkit-text-stroke:1px rgba(218,242,255,.8)}.live-copy>p:not(.scene-label){color:var(--muted);max-width:30rem;margin:1.5rem 0 2rem}.live-media{position:relative;justify-self:center;width:min(100%,700px);height:clamp(410px,65vh,650px);background:linear-gradient(135deg,#13233d,#090a12);overflow:hidden}.live-feature-image{width:100%;height:100%;object-fit:cover;object-position:50% 28%;filter:contrast(1.06) saturate(.9)}.live-media:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,7,13,.3),transparent 45%),linear-gradient(0deg,rgba(5,7,13,.6),transparent 35%);pointer-events:none}.live-state{position:absolute;z-index:2;top:1rem;left:1rem;color:#fff;font-size:.65rem;text-transform:uppercase;letter-spacing:.11em}.live-state i{display:inline-block;width:7px;height:7px;background:var(--pink);border-radius:50%;margin-right:.35rem}.live-reaction-rail{position:absolute;z-index:3;right:1rem;bottom:1rem;left:1rem;display:flex;gap:.6rem}.live-thumb{width:58px;height:76px;padding:0;border:1px solid rgba(255,255,255,.2);background:#07101f;cursor:pointer;opacity:.62}.live-thumb.is-active{border-color:var(--cyan);opacity:1}.live-thumb img{width:100%;height:100%;object-fit:cover}.catchphrase-layer{position:absolute;z-index:4;inset:0;pointer-events:none}.stream-phrase{position:absolute;right:8%;top:18%;color:#fff;font-family:Tahoma,Arial,sans-serif;font-size:clamp(1.45rem,3.2vw,3.2rem);font-weight:700;text-shadow:0 8px 20px rgba(0,0,0,.35);animation:phrase-in 1.55s both}.stream-phrase.phrase-1{color:#fff;animation-name:phrase-shake}.stream-phrase.phrase-2{color:var(--cyan);animation-name:phrase-slide}.stream-phrase.phrase-3{color:#fff;animation-name:phrase-rotate}.stream-phrase.phrase-4{color:#ffb8e4;animation-name:phrase-impact}@keyframes phrase-in{0%{opacity:0}20%,70%{opacity:1}100%{opacity:0}}@keyframes phrase-shake{0%{opacity:0;transform:scale(.5)}20%{opacity:1;transform:scale(1.08) rotate(2deg)}35%{transform:translateX(-5px) rotate(-2deg)}50%,70%{transform:translateX(0)}100%{opacity:0;transform:scale(.95)}}@keyframes phrase-slide{0%{opacity:0;transform:translateX(40px)}28%,70%{opacity:1;transform:translateX(-5px)}100%{opacity:0;transform:translateX(0)}}@keyframes phrase-rotate{0%{opacity:0;transform:rotate(-8deg) scale(.8)}25%,70%{opacity:1;transform:rotate(1deg)}100%{opacity:0}}@keyframes phrase-impact{0%{opacity:0;transform:scale(.6)}22%,65%{opacity:1;transform:scale(1.12)}100%{opacity:0;transform:scale(1.35);filter:blur(3px)}}.create-scene{position:relative;min-height:85svh;padding:8rem clamp(1.5rem,6vw,6.5rem);background:linear-gradient(125deg,#0b101a,#161022)}.create-head{max-width:1320px;margin:auto}.create-path{display:flex;gap:0;margin:4rem auto 0;padding:0;max-width:1320px;list-style:none;border-top:1px solid rgba(81,220,255,.35)}.create-path li{flex:1;padding:1.2rem 1rem 0;border-left:1px solid rgba(255,255,255,.12)}.create-path b{color:var(--cyan);font-size:.62rem}.create-path strong,.create-path span{display:block}.create-path strong{margin-top:1rem;font-size:1.05rem}.create-path span{margin-top:.3rem;color:var(--muted);font-size:.78rem}.create-aj{position:absolute;right:8%;bottom:0;width:clamp(100px,11vw,160px);margin:0}.create-aj img{width:100%;display:block}.create-aj figcaption{padding:.5rem;background:#0a0d16;color:var(--paper);font-size:.62rem;text-transform:uppercase;letter-spacing:.08em}@media(max-width:700px){.live-shell{grid-template-columns:1fr;gap:2rem;min-height:auto;padding:6rem 1.35rem 4.5rem}.live-media{width:100%;height:500px}.live-copy h2,.create-head h2{font-size:clamp(2.6rem,12vw,4rem)}.create-scene{min-height:auto;padding:6rem 1.35rem}.create-path{display:grid;grid-template-columns:1fr 1fr;margin-top:2.5rem}.create-path li{padding:.9rem;border-bottom:1px solid rgba(255,255,255,.12)}.create-aj{right:1.35rem;width:105px}.stream-phrase{right:7%;top:16%;font-size:1.65rem}}@media(prefers-reduced-motion:reduce){.stream-phrase{animation:phrase-in 1.2s both}.create-path{transition:none}}

/* About compact correction */
.about-scene{height:clamp(760px,120svh,1080px);min-height:0}.about-stage{height:100%;min-height:0;grid-template-columns:minmax(290px,.95fr) minmax(260px,.72fr) minmax(290px,.9fr);gap:clamp(1.8rem,4vw,4.5rem);padding:7.5rem clamp(1.5rem,6vw,6.5rem) 4rem}.about-intro{align-self:center}.about-origin{align-self:end;margin:0 0 .25rem}.about-portrait-scene{align-self:center;min-height:0;height:min(68vh,620px)}.about-track{align-self:center;gap:1.35rem}.about-bridge{opacity:.06}@media(max-width:700px){.about-scene{height:auto}.about-stage{height:auto;min-height:0}.about-portrait-scene{height:auto;min-height:29rem}.about-origin{align-self:auto}}
@media (min-width: 1021px) {
  .about-stage {
    grid-template-rows: auto auto;
    row-gap: clamp(1.35rem, 2.6vh, 2rem);
    align-content: start;
  }

  .about-stage .about-intro {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
  }

  .about-stage .about-origin {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin: 0;
  }

  .about-stage .about-portrait-scene {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .about-stage .about-track {
    grid-column: 3;
    grid-row: 1 / 3;
  }
}

@media (min-width: 1021px) and (max-height: 820px) {
  .about-stage {
    row-gap: 1rem;
    padding-top: 6rem;
    padding-bottom: 2.75rem;
  }

  .about-intro h2 {
    font-size: clamp(2.45rem, 4.25vw, 4.75rem);
  }

  .about-lede {
    margin-top: 1.25rem;
    line-height: 1.65;
  }

  .about-personality {
    margin-top: .9rem;
  }

  .about-origin {
    gap: .62rem;
  }
}
@media(max-width:700px){.about-scene .about-stage{grid-template-columns:1fr;gap:2.3rem;padding:6rem 1.35rem 4.5rem}}

/* Keep the About profile facts in their own row on tablet layouts. */
@media (min-width: 701px) and (max-width: 1020px) {
  .about-scene {
    height: auto;
    min-height: 100svh;
  }

  .about-stage {
    grid-template-columns: minmax(0, .9fr) minmax(255px, .82fr);
    grid-template-rows: auto auto auto;
    min-height: 100svh;
    height: auto;
  }

  .about-intro {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
  }

  .about-portrait-scene {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .about-origin {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin: 0;
  }

  .about-track {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@media (max-width: 700px) {
  .about-personality {
    display: flex;
    flex-wrap: wrap;
    gap: .42rem 1.15rem;
    margin: 1rem 0 0;
    padding-bottom: .2rem;
    line-height: 1.45;
  }

  .about-personality li {
    flex: 1 1 12rem;
    min-width: 0;
  }

  .about-intro,
  .about-portrait-scene,
  .about-origin,
  .about-track {
    grid-column: 1;
  }

  .about-intro { grid-row: 1; }
  .about-portrait-scene { grid-row: 2; }
  .about-origin { grid-row: 3; }
  .about-track { grid-row: 4; }
}
/* Media inventory hold: do not present compressed captures as hero media. */
.live-media.is-media-pending{background:radial-gradient(circle at 70% 25%,rgba(81,220,255,.14),transparent 25rem),linear-gradient(145deg,#0d1728,#080a10)}.live-media.is-media-pending .live-feature-image{display:none}.live-media-pending{position:absolute;z-index:2;inset:0;display:grid;place-content:center;gap:.45rem;padding:2rem;text-align:center;background:linear-gradient(90deg,rgba(5,7,13,.28),rgba(5,7,13,.05))}.live-media-pending span{color:var(--paper);font-size:clamp(1rem,2vw,1.4rem);font-weight:700}.live-media-pending small{color:var(--muted);font-size:.78rem}.live-media.is-media-pending .live-thumb{opacity:.28;pointer-events:none;filter:grayscale(1)}
/* Connected Create workflow */
.create-scene{min-height:0;padding:0;background:linear-gradient(125deg,#0b101a,#161022)}.create-workflow{display:grid;grid-template-columns:minmax(270px,.75fr) minmax(420px,1.25fr);gap:clamp(2rem,8vw,9rem);align-items:center;max-width:1320px;min-height:clamp(720px,100svh,900px);margin:auto;padding:7rem clamp(1.5rem,6vw,6.5rem)}.create-control>p:not(.scene-label){margin:1.4rem 0 2rem;color:var(--muted);max-width:26rem}.create-nav{display:grid;border-left:1px solid rgba(81,220,255,.35)}.create-nav button{display:flex;gap:.8rem;align-items:center;padding:.7rem 1rem;border:0;background:transparent;color:var(--muted);font:inherit;text-align:left;cursor:pointer}.create-nav button[aria-selected=true]{color:var(--paper);background:rgba(81,220,255,.08)}.create-nav b,.create-progress{color:var(--cyan);font-size:.65rem}.create-stage{display:grid;grid-template-columns:minmax(260px,1fr) minmax(180px,.6fr);gap:2rem;align-items:center}.create-frame{position:relative;height:clamp(420px,63vh,620px);overflow:hidden;background:#070a12;box-shadow:0 30px 80px rgba(0,0,0,.38)}.create-media-stack{position:absolute;inset:0}.create-stage-media{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:50% 42%;opacity:0;visibility:hidden;transform:scale(1.045) translateX(2%);filter:blur(8px) saturate(.8);transition:opacity .55s ease,visibility .55s ease,transform .75s cubic-bezier(.22,1,.36,1),filter .55s ease}.create-stage-media.is-active{z-index:1;opacity:1;visibility:visible;transform:scale(1) translateX(0);filter:none}.frame-record,.frame-timeline,.frame-publish-signal,.frame-signals{position:absolute;z-index:3;opacity:0;transition:opacity .4s ease,transform .5s ease}.frame-record{top:1rem;left:1rem;color:#fff;font-size:.65rem;letter-spacing:.18em}.frame-record::before{content:"";display:inline-block;width:.45rem;height:.45rem;margin-right:.45rem;border-radius:50%;background:#ff3f73;box-shadow:0 0 12px #ff3f73}.frame-timeline{right:1rem;bottom:1rem;left:1rem;height:45px;border-top:1px solid var(--cyan);border-bottom:1px solid rgba(255,255,255,.2);transform:translateY(10px)}.frame-timeline::after{content:"";position:absolute;top:10px;left:9%;width:54%;height:2px;background:linear-gradient(90deg,var(--cyan),var(--pink));box-shadow:0 10px 0 rgba(255,255,255,.12),0 20px 0 rgba(81,220,255,.2)}.frame-publish-signal{top:1rem;right:1rem;width:2.2rem;height:2.2rem;border-top:1px solid var(--cyan);border-right:1px solid var(--pink);transform:translateY(8px)}.frame-signals{right:1rem;bottom:1rem;color:var(--pink);letter-spacing:.55rem;transform:translateY(8px)}.create-workflow[data-stage=record] .frame-record,.create-workflow[data-stage=edit] .frame-timeline,.create-workflow[data-stage=publish] .frame-publish-signal,.create-workflow[data-stage=engage] .frame-signals{opacity:1;transform:translateY(0)}.create-stage-copy h3{font-size:clamp(1.5rem,2.5vw,2.4rem);margin:.8rem 0}.create-stage-copy p{color:var(--muted)}@media(max-width:700px){.create-workflow{grid-template-columns:1fr;min-height:0;padding:6rem 1.35rem}.create-stage{grid-template-columns:1fr;gap:1.2rem}.create-frame{height:500px}.create-nav{grid-template-columns:1fr 1fr}.create-nav button{font-size:.82rem}.create-stage-copy{order:-1}}
/* Phases 5–7: Multiverse wall, final studio return, QA states */
.art-gallery{max-width:none;padding:8rem clamp(1.5rem,6vw,6.5rem);background:linear-gradient(145deg,#090b12,#120b1b)}.art-gallery .section-heading{max-width:1320px;margin:0 auto 3rem;text-align:left}.multiverse-wall{grid-template-columns:1.4fr .8fr .8fr;max-width:1320px;margin:auto;align-items:end}.multiverse-wall .art-card{aspect-ratio:auto;border-radius:0}.multiverse-wall .art-card:first-child{height:560px}.multiverse-wall .art-card:nth-child(2){height:380px}.multiverse-wall .art-card:nth-child(3){height:270px;justify-self:end;width:min(100%,260px)}.multiverse-wall .art-card::after{content:"View artwork";font-size:.72rem;letter-spacing:.1em;text-transform:uppercase}@media(max-width:700px){.multiverse-wall{grid-template-columns:1fr 1fr}.multiverse-wall .art-card:first-child{grid-column:1/-1;height:420px}.multiverse-wall .art-card:nth-child(2),.multiverse-wall .art-card:nth-child(3){height:220px;width:100%}}

/* Cinematic continuity recovery */
main>section{position:relative;isolation:isolate;scroll-margin-top:5.5rem}
main>section:not(.hero)::before{content:"";position:absolute;z-index:-1;top:0;left:clamp(1.35rem,4vw,4rem);width:min(26vw,18rem);height:1px;background:linear-gradient(90deg,rgba(81,220,255,.85),rgba(251,63,172,.25),transparent);box-shadow:0 0 18px rgba(81,220,255,.2);transform:scaleX(var(--scene-edge,1));transform-origin:left}
.consulting-scene{max-width:none;min-height:100svh;padding:8rem clamp(1.5rem,6vw,6.5rem);overflow:clip;background:linear-gradient(135deg,#080d17,#11101c)}.consulting-scene .section-heading{max-width:1320px;margin:0 auto 3.5rem;text-align:left}
.consulting-system{display:grid;grid-template-columns:minmax(360px,1.2fr) minmax(280px,.8fr);grid-template-areas:"visual copy" "nav nav";gap:clamp(2rem,5vw,5rem);align-items:center;width:min(100%,1320px);margin:auto}
.strategy-visual{grid-area:visual;position:relative;min-height:clamp(330px,48vw,560px);display:grid;place-items:center;background:radial-gradient(circle at 50% 48%,rgba(81,220,255,.1),transparent 35%),linear-gradient(145deg,rgba(19,33,57,.45),rgba(7,9,15,.18));clip-path:polygon(5% 0,100% 0,95% 100%,0 100%)}
.strategy-visual::before,.strategy-visual::after{content:"";position:absolute;inset:14%;border:1px solid rgba(81,220,255,.2);transform:rotate(-7deg)}
.strategy-visual::after{inset:24%;border-color:rgba(251,63,172,.2);transform:rotate(9deg)}
.strategy-visual svg{position:relative;z-index:2;width:82%;overflow:visible}
.strategy-visual path{fill:none;stroke:var(--cyan);stroke-width:3;stroke-linecap:round;filter:drop-shadow(0 0 9px rgba(81,220,255,.28))}
.strategy-visual circle{fill:#080d17;stroke:rgba(81,220,255,.8);stroke-width:3;transform-origin:center;transition:fill .35s ease,stroke .35s ease,transform .35s ease}
.strategy-visual span{position:absolute;z-index:3;bottom:1.25rem;left:1.5rem;color:rgba(220,236,249,.56);font-size:.62rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase}
.consulting-system[data-stage=foundation] circle:nth-of-type(1),.consulting-system[data-stage=content] circle:nth-of-type(2),.consulting-system[data-stage=personality] circle:nth-of-type(3),.consulting-system[data-stage=community] circle:nth-of-type(4){fill:var(--pink);stroke:#fff;transform:scale(1.45)}
.strategy-copy{grid-area:copy;max-width:31rem}.strategy-copy>span{color:var(--cyan);font-size:.68rem;font-weight:700;letter-spacing:.14em}.strategy-copy h3{margin:.9rem 0 1rem;color:var(--paper);font-size:clamp(2.35rem,5vw,5rem);line-height:.95;letter-spacing:-.055em}.strategy-copy p{min-height:5.3rem;color:var(--muted);line-height:1.75}.strategy-copy a{display:inline-block;margin-top:1.5rem;padding-bottom:.35rem;border-bottom:1px solid var(--pink);color:var(--paper);font-size:.75rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase}
.strategy-nav{grid-area:nav;display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid rgba(81,220,255,.28)}
.strategy-nav button{position:relative;padding:1rem;border:0;border-right:1px solid rgba(255,255,255,.1);background:transparent;color:var(--muted);font:inherit;font-size:.8rem;text-align:left;cursor:pointer}
.strategy-nav button::before{content:"";position:absolute;top:-4px;left:1rem;width:7px;height:7px;border-radius:50%;background:rgba(129,145,169,.75)}
.strategy-nav button[aria-selected=true]{color:var(--paper);background:linear-gradient(180deg,rgba(81,220,255,.09),transparent)}.strategy-nav button[aria-selected=true]::before{background:var(--cyan);box-shadow:0 0 14px rgba(81,220,255,.75)}
.live-reaction-rail{display:grid;grid-template-columns:repeat(4,1fr);gap:0;right:0;bottom:0;left:0;background:rgba(5,8,14,.82);backdrop-filter:blur(12px)}
.live-moment{min-width:0;min-height:4.8rem;padding:.75rem;border:0;border-top:1px solid rgba(255,255,255,.1);border-right:1px solid rgba(255,255,255,.08);background:transparent;color:var(--muted);text-align:left;cursor:pointer}.live-moment b,.live-moment span{display:block}.live-moment b{color:var(--paper);font-family:Tahoma,Arial,sans-serif;font-size:1rem;text-align:right}.live-moment span{margin-top:.35rem;font-size:.58rem;letter-spacing:.04em;text-transform:uppercase}.live-moment.is-active{border-top-color:var(--cyan);background:rgba(81,220,255,.08)}
.community-scene{max-width:none;min-height:100svh;padding:8rem clamp(1.5rem,6vw,6.5rem);overflow:hidden;background:radial-gradient(circle at 50% 50%,rgba(81,220,255,.12),transparent 25rem),#070a11}.community-scene .section-heading{max-width:1320px;margin:auto;text-align:left}.community-network{position:relative;width:min(100%,1120px);min-height:34rem;margin:2rem auto 0}.network-paths{position:absolute;inset:0;width:100%;height:100%;overflow:visible}.network-paths path{fill:none;stroke:rgba(81,220,255,.32);stroke-width:1.5;stroke-dasharray:5 9}
.network-core{position:absolute;z-index:2;top:50%;left:50%;width:clamp(11rem,15vw,14rem);aspect-ratio:1528/866;margin:0;transform:translate(-50%,-50%);overflow:visible}.network-core::before,.network-core::after{content:"";position:absolute;z-index:-1;top:50%;left:50%;border:1px solid rgba(81,220,255,.2);border-radius:50%;transform:translate(-50%,-50%);pointer-events:none}.network-core::before{width:8rem;height:8rem;box-shadow:0 0 55px rgba(81,220,255,.14)}.network-core::after{width:11rem;height:11rem;border-color:rgba(251,63,172,.1)}.network-core img{display:block;width:100%;height:100%;object-fit:contain;filter:drop-shadow(0 0 18px rgba(81,220,255,.2));animation:community-logo-signal 5.5s ease-in-out infinite}
@keyframes community-logo-signal{0%,100%{transform:translate3d(0,0,0) scale(.98);filter:drop-shadow(0 0 12px rgba(81,220,255,.16))}50%{transform:translate3d(0,-3px,0) scale(1.02);filter:drop-shadow(0 0 24px rgba(81,220,255,.3))}}
.community-nodes{position:absolute;inset:0}.community-node{position:absolute;z-index:2;display:grid;grid-template-columns:2.3rem 1fr;grid-template-areas:"icon number" "icon label";align-items:center;width:clamp(11.5rem,17vw,15rem);padding:1rem 0;color:var(--paper);border-bottom:1px solid rgba(255,255,255,.13)}
.community-node svg{grid-area:icon;width:1.4rem;height:1.4rem;fill:none;stroke:var(--cyan);stroke-width:1.5}.community-node.node-kick svg,.community-node.node-facebook svg{fill:var(--cyan);stroke:none}.community-node .stat-number{grid-area:number;color:var(--paper);font-size:clamp(1.45rem,2.8vw,2.6rem);line-height:1}.community-node .stat-label{grid-area:label;margin-top:.25rem;color:var(--muted);font-size:.68rem;text-transform:uppercase;letter-spacing:.08em}
.node-kick{top:7%;left:2%}.node-instagram{top:10%;right:0}.node-facebook{bottom:6%;left:1%}.node-shared{right:0;bottom:8%}
.create-mobile-sequence{display:none}
.multiverse-wall{position:relative;display:grid;gap:clamp(1rem,2vw,2rem)}.multiverse-wall .art-card{position:relative;overflow:hidden;padding:0;border:0;background:#090c14;cursor:zoom-in}.multiverse-wall .art-card img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease,filter .55s ease}.multiverse-wall .art-card>span{position:absolute;z-index:2;right:1rem;bottom:1rem;left:1rem;color:var(--paper);font-size:.7rem;font-weight:700;letter-spacing:.1em;text-align:left;text-transform:uppercase}.multiverse-wall .art-card::after{display:none}.multiverse-wall .art-card:hover img,.multiverse-wall .art-card:focus-visible img{transform:scale(1.025);filter:saturate(1.08) contrast(1.04)}
.broadcast-dock{position:absolute;z-index:3;top:1.5rem;right:clamp(1.35rem,6vw,6.5rem);left:clamp(1.35rem,6vw,6.5rem);display:flex;justify-content:flex-end;gap:1.4rem;padding-bottom:.75rem;border-bottom:1px solid rgba(255,255,255,.15)}.broadcast-dock span{margin-right:auto;color:var(--muted);font-size:.62rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase}.broadcast-dock a{color:var(--paper);font-size:.7rem}
.lightbox button:focus-visible,.strategy-nav button:focus-visible,.live-moment:focus-visible,.community-node:focus-visible,.broadcast-dock a:focus-visible{outline:2px solid var(--cyan);outline-offset:4px}
@media(max-width:900px){.consulting-system{grid-template-columns:1fr;grid-template-areas:"copy" "visual" "nav"}.strategy-visual{min-height:390px}.community-network{min-height:40rem}}
@media(max-width:700px){main>section:not(.hero)::before{left:1.35rem;width:42vw}.consulting-scene,.community-scene{min-height:0;padding:6rem 1.35rem}.consulting-system{display:flex;flex-direction:column;align-items:stretch}.strategy-copy{order:1}.strategy-visual{order:2;min-height:300px}.strategy-nav{order:3;grid-template-columns:1fr 1fr}.strategy-copy p{min-height:0}.live-reaction-rail{grid-template-columns:1fr 1fr}.live-moment{min-height:4.2rem}.create-nav,.create-stage{display:none}.create-mobile-sequence{display:grid;gap:2.8rem;margin:2rem 0 0;padding:0;list-style:none}.create-mobile-sequence li{display:grid;grid-template-columns:2.3rem 1fr;gap:.8rem;position:relative}.create-mobile-sequence img{grid-column:1/-1;width:100%;height:18rem;object-fit:cover;object-position:50% 28%;filter:saturate(.82)}.create-mobile-sequence li:nth-child(4) img,.create-mobile-sequence li:nth-child(5) img{object-position:50% 42%}.create-mobile-sequence li>span{color:var(--cyan);font-size:.68rem;font-weight:700}.create-mobile-sequence h3{margin:0;color:var(--paper)}.create-mobile-sequence p{margin:.4rem 0 0;color:var(--muted);font-size:.82rem;line-height:1.6}.community-network{min-height:43rem;margin-top:2.5rem}.network-paths{left:2rem;width:1px;background:linear-gradient(var(--cyan),rgba(251,63,172,.4))}.network-paths path{display:none}.network-core{top:0;left:4.2rem;width:7rem;transform:translate(-50%,0)}.network-core::before{width:5rem;height:5rem}.network-core::after{width:7rem;height:7rem}.community-nodes{top:7rem;left:3.5rem;display:grid;align-content:start;gap:2.15rem}.community-node{position:static;width:min(100%,17rem)}.broadcast-dock{position:relative;top:auto;right:auto;left:auto;flex-wrap:wrap;justify-content:flex-start;margin-bottom:4rem}.broadcast-dock span{flex:0 0 100%}}
@media(prefers-reduced-motion:reduce){.strategy-visual circle,.multiverse-wall .art-card img{transition:none}.network-core img{animation:none;transform:none;filter:drop-shadow(0 0 16px rgba(81,220,255,.2))}main>section:not(.hero)::before{transform:none!important}}

/* Live broadcast chamber */
.live-scene {
  min-height: 100svh;
  max-width: none;
  margin: 0;
  overflow: clip;
  background:
    radial-gradient(circle at 72% 46%, rgba(81, 220, 255, .11), transparent 29rem),
    radial-gradient(circle at 18% 70%, rgba(251, 63, 172, .09), transparent 25rem),
    #080b12;
}

.live-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(560px, 1.28fr);
  gap: clamp(3rem, 7vw, 8.5rem);
  align-items: center;
  width: min(100%, 1380px);
  min-height: clamp(720px, 108svh, 1040px);
  margin: auto;
  padding: 7rem clamp(1.5rem, 5vw, 5rem) 5rem;
}

.live-copy {
  position: relative;
  z-index: 3;
  max-width: 35rem;
  text-align: left;
}

.live-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -4rem -8rem -4rem -30vw;
  background: radial-gradient(ellipse at 70% 50%, rgba(5, 8, 15, .84), rgba(5, 8, 15, .35) 55%, transparent 74%);
  pointer-events: none;
}

.live-copy h2 {
  max-width: none;
  margin: 0;
  color: #f6f8ff;
  font-family: "Changa", Tahoma, Arial, sans-serif;
  font-size: clamp(3.2rem, 4.45vw, 5.35rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .92;
  text-align: right;
  text-wrap: balance;
}

.live-copy h2 span {
  display: block;
  color: #f6f8ff;
  white-space: nowrap;
  -webkit-text-stroke: 0;
}

.live-support {
  margin: 1.5rem 0 2rem;
  color: #d0d8e8;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 500;
}

.live-phrase-field {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-phrase {
  position: absolute;
  font-family: "Changa", Tahoma, Arial, sans-serif;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, .035);
  opacity: .34;
  -webkit-text-stroke: 1.5px var(--phrase-led, var(--cyan));
  paint-order: stroke fill;
  text-shadow:
    0 0 5px color-mix(in srgb, var(--phrase-led, var(--cyan)) 62%, transparent),
    0 0 15px color-mix(in srgb, var(--phrase-led, var(--cyan)) 34%, transparent);
  filter: brightness(.92);
  will-change: transform;
  transition: color .2s ease, opacity .2s ease, text-shadow .2s ease, filter .2s ease;
}

.phrase-ozak {
  --phrase-led: var(--cyan);
  --phrase-angle: -5deg;
  top: 12%;
  right: -2%;
  font-size: clamp(5rem, 11vw, 11rem);
  transform: rotate(var(--phrase-angle));
}

.phrase-shu {
  --phrase-led: rgba(242, 249, 255, .94);
  --phrase-angle: 7deg;
  top: 33%;
  left: -6%;
  font-size: clamp(4rem, 8vw, 8.5rem);
  transform: rotate(var(--phrase-angle));
}

.phrase-laah {
  --phrase-led: var(--pink);
  --phrase-angle: 4deg;
  right: 20%;
  bottom: 4%;
  font-size: clamp(5rem, 10vw, 10rem);
  transform: rotate(var(--phrase-angle));
}

.phrase-fatabil {
  --phrase-led: #82e9ff;
  --phrase-angle: -8deg;
  bottom: 20%;
  left: -4%;
  font-size: clamp(3.8rem, 7vw, 7.5rem);
  transform: rotate(var(--phrase-angle));
}

.ambient-phrase.is-highlighted {
  color: rgba(255, 255, 255, .14);
  opacity: .78;
  -webkit-text-stroke-width: 2px;
  filter: brightness(1.16);
  text-shadow:
    0 0 4px var(--phrase-led, var(--cyan)),
    0 0 12px color-mix(in srgb, var(--phrase-led, var(--cyan)) 78%, transparent),
    0 0 28px color-mix(in srgb, var(--phrase-led, var(--cyan)) 48%, transparent);
}

.live-showcase {
  position: relative;
  z-index: 3;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .45));
}

.live-showcase::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -4rem;
  background: radial-gradient(circle, rgba(81, 220, 255, .15), transparent 65%);
  pointer-events: none;
}

.live-slides {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #070b12;
  clip-path: polygon(2.2% 0, 100% 0, 97.8% 100%, 0 100%);
}

.live-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(7%) scale(.97);
  filter: blur(5px);
  visibility: hidden;
  transition: opacity .46s ease, transform .54s cubic-bezier(.22, 1, .36, 1), filter .4s ease, visibility 0s linear .54s;
}

.live-slide::before {
  content: "";
  position: absolute;
  inset: -2rem;
  background: center / cover no-repeat;
  filter: blur(24px) saturate(.7) brightness(.42);
  transform: scale(1.15);
}

.live-slide:nth-child(1)::before { background-image: url("../assets/img/live-reactions/hajji-batata.webp"); }
.live-slide:nth-child(2)::before { background-image: url("../assets/img/live-reactions/chaos-shu-el-wade3.webp"); }
.live-slide:nth-child(3)::before { background-image: url("../assets/img/live-reactions/shocked-lak-laah.webp"); }
.live-slide:nth-child(4)::before { background-image: url("../assets/img/live-reactions/angry-fatabil.webp"); }

.live-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  visibility: visible;
  transition-delay: 0s;
}

.live-slide img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(.92) contrast(1.06);
}

.live-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3, 5, 10, .9));
  pointer-events: none;
}

.live-slide figcaption {
  position: absolute;
  z-index: 3;
  right: clamp(1.3rem, 3vw, 2.4rem);
  bottom: clamp(1.2rem, 3vw, 2rem);
  left: clamp(1.3rem, 3vw, 2.4rem);
}

.live-slide figcaption span,
.live-slide figcaption strong {
  display: block;
}

.live-slide figcaption span {
  margin-bottom: .3rem;
  color: var(--cyan);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.live-slide figcaption strong {
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.75rem);
}

.live-controls {
  display: grid;
  grid-template-columns: 3rem 1fr 3rem;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.live-arrow {
  width: 3rem;
  height: 3rem;
  border: 0;
  border-bottom: 1px solid rgba(81, 220, 255, .45);
  background: transparent;
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.live-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .45rem;
}

.live-progress button {
  position: relative;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.live-progress button::before,
.live-progress button::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  height: 1px;
  background: rgba(194, 210, 231, .25);
}

.live-progress button::after {
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transition: width .35s ease;
}

.live-progress button.is-active::after {
  width: 100%;
}

.live-arrow:focus-visible,
.live-progress button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

@keyframes live-drift-one {
  to { transform: translate(-2.5rem, 1.2rem) rotate(-3deg) scale(1.025); }
}
@keyframes live-drift-two {
  to { transform: translate(3.2rem, -1.4rem) rotate(5deg) scale(.98); }
}
@keyframes live-drift-three {
  to { transform: translate(2rem, -2rem) rotate(2deg) scale(1.035); }
}
@keyframes live-drift-four {
  to { transform: translate(-1.4rem, 1.8rem) rotate(-5deg) scale(1.02); }
}
@keyframes phrase-highlight {
  0% { transform: scale(.96) rotate(var(--phrase-angle, 0deg)); }
  42% { transform: scale(1.055) rotate(var(--phrase-angle, 0deg)); }
  100% { transform: scale(1) rotate(var(--phrase-angle, 0deg)); }
}

@media (max-width: 900px) {
  .live-shell {
    grid-template-columns: minmax(240px, .7fr) minmax(400px, 1.3fr);
    gap: 2rem;
  }
  .live-copy h2 { font-size: clamp(3rem, 6.5vw, 4.8rem); }
}

@media (max-width: 700px) {
  .live-scene { min-height: 0; }
  .live-shell {
    grid-template-columns: 1fr;
    gap: 2.6rem;
    min-height: 0;
    padding: 6rem 1.35rem 4.5rem;
  }
  .live-copy h2 {
    max-width: none;
    font-size: clamp(2.65rem, 12.2vw, 3.55rem);
  }
  .live-copy::before { inset: -2rem -1rem; }
  .live-support { margin: 1rem 0 1.5rem; font-size: .98rem; }
  .live-slides { aspect-ratio: 4 / 5; }
  .live-showcase { width: calc(100% + .7rem); margin-left: -.35rem; }
  .live-controls { grid-template-columns: 2.7rem 1fr 2.7rem; }
  .live-arrow { width: 2.7rem; height: 2.7rem; }
  .ambient-phrase {
    opacity: .24;
    -webkit-text-stroke-width: 1px;
    text-shadow:
      0 0 4px color-mix(in srgb, var(--phrase-led, var(--cyan)) 54%, transparent),
      0 0 10px color-mix(in srgb, var(--phrase-led, var(--cyan)) 28%, transparent);
  }
  .phrase-ozak { top: 6%; right: -19%; font-size: 5.2rem; }
  .phrase-laah { right: -16%; bottom: 7%; font-size: 5.5rem; }
  .phrase-shu,.phrase-fatabil { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-phrase,
  .ambient-phrase.is-highlighted {
    animation: none;
    will-change: auto;
    transform: rotate(var(--phrase-angle, 0deg));
  }
  .live-slide {
    transform: none;
    filter: none;
    transition: opacity .01s linear, visibility .01s linear;
  }
  .live-progress button::after { transition: none; }
}

/* Embedded signal-spine header */
.site-header {
  --header-surface: 0;
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 96px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background-color .32s ease, box-shadow .32s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 8, 15, calc(.18 + var(--header-surface) * .64)) 0%, rgba(5, 8, 15, calc(.04 + var(--header-surface) * .7)) 58%, rgba(14, 10, 23, calc(.12 + var(--header-surface) * .66))),
    linear-gradient(90deg, rgba(81, 220, 255, .05), transparent 38%, rgba(251, 63, 172, .05));
  opacity: calc(.64 + var(--header-surface) * .36);
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 4%, rgba(81, 220, 255, .28) 28%, rgba(251, 63, 172, .18) 72%, transparent 96%);
  opacity: calc(.28 + var(--header-surface) * .58);
}

.site-header.is-scrolled {
  --header-surface: 1;
  background-color: rgba(5, 8, 15, .68);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .24);
  backdrop-filter: blur(15px);
}

.navbar {
  position: relative;
  display: grid;
  grid-template-columns: clamp(154px, 13.5vw, 194px) minmax(0, 1fr) clamp(120px, 9.5vw, 142px);
  align-items: center;
  width: min(100%, 1480px);
  height: 96px;
  margin: auto;
  padding: 0 clamp(1.5rem, 4.5vw, 4.5rem);
  transition: transform .32s ease;
}

.site-header.is-scrolled .navbar {
  transform: translateY(-5px);
}

.logo {
  position: relative;
  z-index: 6;
  align-self: start;
  width: clamp(144px, 11.5vw, 168px);
  margin-top: 7px;
  transform-origin: 8% 10%;
  transition: transform .36s cubic-bezier(.22, 1, .36, 1), filter .28s ease;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .34));
}

.logo::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 15% 8% 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 40%, rgba(81, 220, 255, .5), transparent 48%),
    radial-gradient(circle at 70% 62%, rgba(251, 63, 172, .42), transparent 54%);
  filter: blur(16px);
  opacity: .42;
  pointer-events: none;
  animation: header-logo-aura 3.4s ease-in-out infinite;
}

.logo:hover,
.logo:focus-visible {
  filter: drop-shadow(0 0 17px rgba(81, 220, 255, .34));
}

.logo-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  mix-blend-mode: normal;
  object-fit: contain;
  filter:
    brightness(1.08)
    drop-shadow(0 0 4px rgba(104, 225, 255, .72))
    drop-shadow(0 0 11px rgba(81, 220, 255, .34))
    drop-shadow(0 0 8px rgba(251, 63, 172, .28));
  animation: header-logo-neon 3.4s ease-in-out infinite;
  transition: filter .24s ease;
}

.logo:hover .logo-img,
.logo:focus-visible .logo-img {
  filter:
    brightness(1.18)
    drop-shadow(0 0 5px rgba(202, 250, 255, .9))
    drop-shadow(0 0 16px rgba(81, 220, 255, .58))
    drop-shadow(0 0 13px rgba(251, 63, 172, .48));
}

.site-header.is-scrolled .logo {
  transform: translate3d(0, 1px, 0) scale(.73);
}

.studio-spine {
  position: absolute;
  z-index: 0;
  top: 54px;
  right: clamp(8.5rem, 11.5vw, 10.8rem);
  left: clamp(10.7rem, 15.2vw, 14rem);
  height: 1px;
  overflow: visible;
  background: linear-gradient(90deg, rgba(81, 220, 255, .08), rgba(81, 220, 255, .44) 18%, rgba(147, 126, 255, .28) 70%, rgba(251, 63, 172, .5));
  box-shadow: 0 0 16px rgba(81, 220, 255, .12);
  transform: rotate(-.75deg);
  transform-origin: left;
  opacity: .86;
}

.studio-spine::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 0;
  width: 4.5rem;
  height: 24px;
  border-top: 1px solid rgba(251, 63, 172, .18);
  transform: skewX(-38deg);
}

.studio-spine i {
  position: absolute;
  top: -2px;
  left: 0;
  width: 22%;
  height: 5px;
  background: linear-gradient(90deg, transparent, rgba(81, 220, 255, .55), transparent);
  filter: blur(2px);
  animation: spine-signal 7s ease-in-out infinite;
}

.site-header.is-scrolled .studio-spine {
  opacity: .58;
  transform: rotate(-.35deg) scaleX(.97);
}

.nav-panel {
  position: relative;
  z-index: 3;
  min-width: 0;
  margin: 0;
}

.nav-links {
  --signal-x: 0px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(.68rem, 1.05vw, 1.12rem);
  margin: 0;
  padding: 0 clamp(.65rem, 1.2vw, 1.15rem);
}

.nav-links li:nth-child(2),
.nav-links li:nth-child(5) {
  transform: translateY(-3px);
}

.nav-links li:nth-child(3),
.nav-links li:nth-child(6) {
  transform: translateY(2px);
}

.nav-links::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 52%;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(235, 250, 255, .92);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 0 0 2px rgba(81, 220, 255, .07), 0 0 8px rgba(81, 220, 255, .5);
  transform: translate3d(calc(var(--signal-x) - 3px), -50%, 0);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.nav-links a {
  position: relative;
  display: block;
  padding: .82rem .12rem;
  color: rgba(231, 237, 249, .78);
  font-size: clamp(.64rem, .71vw, .72rem);
  font-weight: 650;
  letter-spacing: .025em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
  transition: color .2s ease, transform .2s ease;
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: #fff;
  transform: translateY(-2px);
}

.nav-links a:focus-visible {
  outline: 1px solid var(--cyan);
  outline-offset: 5px;
}

.broadcast-cta {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: .55rem;
  align-items: center;
  min-height: 44px;
  padding: .46rem .76rem .46rem .84rem;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  background: linear-gradient(110deg, rgba(81, 220, 255, .9), rgba(117, 213, 255, .84) 62%, rgba(251, 63, 172, .7));
  color: #071019;
  font-size: .7rem;
  font-weight: 800;
  box-shadow: 0 7px 20px rgba(81, 220, 255, .08);
  transition: transform .2s ease, filter .2s ease;
}

.broadcast-cta i,
.mobile-live-signal i {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(7, 16, 25, .52);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .2);
}

.broadcast-cta span,
.broadcast-cta small {
  display: block;
}

.broadcast-cta small {
  margin-bottom: 1px;
  font-size: .46rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .65;
}

.broadcast-cta b {
  font-size: .86rem;
}

.broadcast-cta:hover,
.broadcast-cta:focus-visible {
  color: #071019;
  filter: brightness(1.06) drop-shadow(0 0 8px rgba(81, 220, 255, .2));
  transform: translate3d(2px, -2px, 0);
}

.broadcast-cta:focus-visible,
.mobile-live-signal:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.panel-broadcast,
.mobile-live-signal,
.nav-toggle {
  display: none;
}

@keyframes spine-signal {
  0%, 100% { opacity: .18; transform: translateX(0); }
  48% { opacity: .74; }
  65% { opacity: .34; transform: translateX(340%); }
}

@keyframes header-logo-neon {
  0%, 100% {
    filter:
      brightness(1.04)
      drop-shadow(0 0 3px rgba(104, 225, 255, .58))
      drop-shadow(0 0 8px rgba(81, 220, 255, .25))
      drop-shadow(0 0 6px rgba(251, 63, 172, .2));
  }
  46% {
    filter:
      brightness(1.2)
      drop-shadow(0 0 6px rgba(202, 250, 255, .88))
      drop-shadow(0 0 17px rgba(81, 220, 255, .5))
      drop-shadow(0 0 13px rgba(251, 63, 172, .42));
  }
  54% {
    filter:
      brightness(1.13)
      drop-shadow(0 0 5px rgba(202, 250, 255, .74))
      drop-shadow(0 0 13px rgba(81, 220, 255, .4))
      drop-shadow(0 0 10px rgba(251, 63, 172, .34));
  }
}

@keyframes header-logo-aura {
  0%, 100% { opacity: .28; transform: scale(.94); }
  50% { opacity: .62; transform: scale(1.08); }
}

@media (max-width: 1180px) and (min-width: 701px) {
  .navbar {
    grid-template-columns: 140px minmax(0, 1fr) 118px;
    padding-inline: 1.4rem;
  }
  .logo { width: 136px; }
  .nav-links { gap: .62rem; padding-inline: .4rem; }
  .nav-links a { font-size: .62rem; }
  .broadcast-cta { min-height: 41px; padding-inline: .62rem; }
  .broadcast-cta small { display: none; }
  .studio-spine { left: 9.6rem; right: 7.4rem; }
}

@media (max-width: 700px) {
  .site-header {
    height: 76px;
  }
  .site-header::before {
    background: linear-gradient(180deg, rgba(5, 8, 15, .76), rgba(5, 8, 15, .2));
  }
  .site-header.is-scrolled {
    background-color: rgba(5, 8, 15, .78);
  }
  .navbar {
    display: flex;
    height: 76px;
    padding: 0 1.1rem;
    transform: none !important;
  }
  .logo {
    position: absolute;
    top: 3px;
    left: 1rem;
    width: 116px;
    margin: 0;
  }
  .site-header.is-scrolled .logo {
    transform: translate3d(0, 1px, 0) scale(.75);
  }
  .studio-spine {
    top: 48px;
    right: 1rem;
    left: 7rem;
    opacity: .58;
  }
  .studio-spine i { animation-duration: 5.5s; }
  .desktop-broadcast { display: none; }
  .mobile-live-signal {
    position: absolute;
    z-index: 7;
    top: 21px;
    right: 4.35rem;
    display: flex;
    gap: .4rem;
    align-items: center;
    color: #eafaff;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .mobile-live-signal i {
    width: 6px;
    height: 6px;
    border-color: rgba(81, 220, 255, .5);
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(81, 220, 255, .42);
  }
  .nav-toggle {
    position: absolute;
    z-index: 8;
    top: 18px;
    right: 1.05rem;
    display: flex;
    width: 38px;
    height: 32px;
    padding: 6px 3px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .nav-toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    width: 1.25rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan));
  }
  .nav-toggle span {
    height: 2px;
    margin-left: auto;
    background: #eafaff;
    transform-origin: center;
  }
  .nav-toggle span:nth-child(1) { width: 100%; }
  .nav-toggle span:nth-child(2) { width: 72%; background: var(--cyan); }
  .nav-toggle span:nth-child(3) { width: 48%; background: var(--pink); }
  .nav-toggle.open span:nth-child(1) { width: 100%; transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { width: 100%; transform: translateY(-7px) rotate(-45deg); }
  .nav-panel {
    position: fixed;
    z-index: 5;
    inset: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    min-height: 100svh;
    padding: 7rem 1.5rem 2rem;
    overflow-y: auto;
    background:
      linear-gradient(90deg, rgba(5, 8, 15, .98) 0%, rgba(5, 8, 15, .92) 63%, rgba(5, 8, 15, .68)),
      url("../assets/img/hero-cinematic.webp") 72% center / auto 100% no-repeat;
    clip-path: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -1.25rem, 0);
    transition: opacity .28s ease, transform .36s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .36s;
  }
  .nav-panel::before {
    content: "ENTER THE STUDIO";
    position: absolute;
    top: 6.8rem;
    left: 1.5rem;
    color: var(--pink);
    font-size: .57rem;
    font-weight: 800;
    letter-spacing: .14em;
  }
  .nav-panel.open {
    clip-path: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }
  .nav-links {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: grid;
    flex-direction: initial;
    justify-content: stretch;
    align-content: center;
    gap: 0;
    width: 100%;
    max-height: none;
    margin-top: 2rem;
    padding: 0 0 0 2rem;
    border-left: 1px solid rgba(81, 220, 255, .35);
    border-right: 0;
    border-bottom: 0;
    background: transparent;
    overflow: visible;
  }
  .nav-links::after {
    top: var(--mobile-signal-y, 1.7rem);
    left: 0;
    transform: translate3d(-3px, -50%, 0);
    transition: top .35s cubic-bezier(.22, 1, .36, 1);
  }
  .nav-links li,
  .nav-links li:nth-child(n) {
    width: auto;
    transform: none;
    text-align: left;
  }
  .nav-links a {
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    align-items: baseline;
    padding: .63rem 0;
    color: rgba(237, 243, 253, .7);
    font-size: clamp(1.55rem, 7vw, 2.15rem);
    font-weight: 750;
    line-height: 1.12;
  }
  .nav-links a::before {
    content: attr(data-index);
    color: var(--cyan);
    font-size: .57rem;
    font-weight: 800;
    letter-spacing: .1em;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a[aria-current=page] {
    color: #fff;
    transform: translateX(.4rem);
  }
  .panel-broadcast {
    display: grid;
    width: min(100%, 22rem);
    margin: 1.5rem 0 0 2rem;
  }
  body.menu-open {
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .navbar,
  .logo,
  .studio-spine,
  .nav-panel,
  .nav-links::after {
    transition: none;
  }
  .studio-spine i {
    animation: none;
    opacity: .35;
    transform: translateX(180%);
  }
  .logo::before,
  .logo-img {
    animation: none;
  }
  .logo::before {
    opacity: .42;
    transform: none;
  }
  .logo-img {
    filter:
      brightness(1.12)
      drop-shadow(0 0 5px rgba(104, 225, 255, .72))
      drop-shadow(0 0 12px rgba(81, 220, 255, .34))
      drop-shadow(0 0 9px rgba(251, 63, 172, .3));
  }
}

/* Final cascade: production polish over the approved section implementations. */
.hero-subject-state {
  backface-visibility: hidden;
  will-change: opacity, transform;
  transition:
    opacity .66s var(--ease-cinematic),
    visibility 0s linear .72s,
    transform .82s var(--ease-cinematic),
    filter .66s ease;
}

.hero-subject-state:not(.is-active) {
  transform: translate3d(calc(1.1rem + var(--hero-depth-x, 0px) * -.18), calc(.3rem + var(--hero-depth-y, 0px) * -.12), 0) scale(.99);
}

.hero-subject-state.is-active {
  transition-delay: .1s, 0s, .1s, .1s;
}

.hero.is-role-changing .hero-subject-state.is-active {
  opacity: .28;
  transform: translate3d(calc(-.7rem + var(--hero-depth-x, 0px) * -.18), calc(var(--hero-depth-y, 0px) * -.12), 0) scale(.995);
}

.signal-route-group {
  transition: opacity .28s ease, transform .36s var(--ease-cinematic), visibility 0s linear .36s;
}

.signal-route-group.is-active .signal-route {
  animation-duration: .56s;
  animation-timing-function: var(--ease-settle);
}

.signal-route-group.is-active .signal-route-flow { animation-delay: .34s; }
.signal-route-group.is-active .signal-endpoint,
.signal-route-group.is-active .signal-arrow { animation-delay: .48s; }

.signal-label {
  border-radius: 0 5px 5px 0;
  box-shadow: 0 0 0 rgba(81, 220, 255, 0);
  transition:
    opacity .28s ease,
    transform .34s var(--ease-cinematic),
    filter .28s ease,
    visibility 0s linear .34s;
}

.signal-label::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
  box-shadow: 0 0 8px rgba(81, 220, 255, .45);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
}

.signal-label[data-signal-label="1"]::before {
  background: linear-gradient(90deg, transparent, var(--pink));
}

.signal-label[data-signal-label="2"]::before {
  background: linear-gradient(90deg, var(--cyan), #b995ff);
}

.signal-label.is-active {
  animation:
    hero-signal-label-in .42s .5s var(--ease-settle) both,
    signal-surface-pulse .65s .9s ease-out both;
}

.signal-label.is-active::before {
  animation: signal-title-connector .28s .68s var(--ease-settle) forwards;
}

.signal-label.is-active::after { animation-delay: .78s; }

.hero-ecosystem.is-changing .signal-route-group.is-active,
.hero-ecosystem.is-changing .signal-label.is-active {
  opacity: 0;
  transform: translate3d(-16px, 0, 0) scale(.985);
  filter: blur(3px);
  transition-duration: .28s;
}

.live-slide {
  backface-visibility: hidden;
  will-change: opacity, transform;
  transition:
    opacity .58s var(--ease-cinematic),
    transform .7s var(--ease-cinematic),
    filter .52s ease,
    visibility 0s linear .7s;
}

.live-slide:not(.is-active) {
  transform: translate3d(5%, 0, 0) scale(.985);
}

.live-slide img { transform: translateZ(0); }

.connect-subject {
  align-self: center;
  width: min(100%, 43rem);
  height: min(76svh, 44rem);
}

.connect-subject::after {
  content: "";
  position: absolute;
  inset: 9% 2% 4% 5%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(81, 220, 255, .13), rgba(251, 63, 172, .07) 48%, transparent 72%);
  filter: blur(24px);
}

.connect-subject img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 29%;
  border-radius: 50%;
  opacity: .96;
  -webkit-mask-image: radial-gradient(ellipse 70% 72% at 52% 43%, #000 45%, rgba(0, 0, 0, .9) 58%, transparent 82%);
  mask-image: radial-gradient(ellipse 70% 72% at 52% 43%, #000 45%, rgba(0, 0, 0, .9) 58%, transparent 82%);
  filter: saturate(.92) contrast(1.03) brightness(.9) drop-shadow(-10px 20px 30px rgba(0, 0, 0, .42));
}

.contact-scene:not(.is-visible) .connect-particles,
body.is-page-hidden .connect-particles {
  animation-play-state: paused;
}

.live-platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.live-platform-actions .btn {
  min-width: 10.5rem;
}

.community-node.node-tiktok {
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
}

.community-node.node-tiktok svg {
  fill: var(--pink);
  stroke: none;
}

.community-node .social-handle {
  font-size: clamp(.92rem, 1.55vw, 1.25rem);
  letter-spacing: -.02em;
}

@media (max-width: 700px) {
  .live-platform-actions {
    display: grid;
    width: min(100%, 22rem);
    margin-top: 1.25rem;
  }

  .live-platform-actions .btn {
    width: 100%;
    justify-content: space-between;
  }

  .community-node.node-tiktok {
    transform: none;
  }

  .connect-subject {
    width: min(116%, 29rem);
    height: 27rem;
    margin-top: -.5rem;
  }

  .connect-subject img { object-position: 50% 27%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero.is-role-changing .hero-subject-state.is-active {
    opacity: 1;
    transform: none;
  }
}
/* Consultation channel */
[hidden] {
  display: none !important;
}

body.consultation-open {
  overflow: hidden;
}

.consultation-trigger {
  cursor: pointer;
  font: inherit;
}

.consultation-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.consultation-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.consultation-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 75% 35%, rgba(0, 229, 255, 0.12), transparent 38%),
    radial-gradient(circle at 20% 80%, rgba(255, 32, 172, 0.12), transparent 42%),
    rgba(2, 5, 12, 0.88);
  backdrop-filter: blur(10px);
  cursor: default;
}

.consultation-dialog {
  position: relative;
  width: min(780px, 100%);
  max-height: min(860px, calc(100svh - 2rem));
  overflow: auto;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  color: #f7fbff;
  background:
    linear-gradient(135deg, rgba(9, 17, 31, 0.98), rgba(5, 8, 18, 0.98)),
    #060a12;
  border: 1px solid rgba(68, 220, 255, 0.2);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.62), -18px 0 70px rgba(240, 33, 180, 0.08), 18px 0 70px rgba(0, 224, 255, 0.08);
  transform: translate3d(0, 26px, 0) scale(0.985);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 224, 255, 0.55) transparent;
}

.consultation-modal.is-open .consultation-dialog {
  transform: translate3d(0, 0, 0) scale(1);
}

.consultation-dialog::before,
.consultation-dialog::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  pointer-events: none;
}

.consultation-dialog::before {
  top: 0;
  left: 0;
  border-top: 2px solid #20d9ff;
  border-left: 2px solid #20d9ff;
}

.consultation-dialog::after {
  right: 0;
  bottom: 0;
  border-right: 2px solid #ff37b8;
  border-bottom: 2px solid #ff37b8;
}

.consultation-signal {
  position: absolute;
  top: 0;
  left: 74px;
  right: 74px;
  height: 2px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(32, 217, 255, 0.8), rgba(255, 55, 184, 0.8));
}

.consultation-signal span {
  position: absolute;
  inset: -4px auto auto -12%;
  width: 16%;
  height: 10px;
  background: #fff;
  filter: blur(4px);
  animation: consultation-signal-travel 3.6s ease-in-out infinite;
}

.consultation-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: rgba(240, 249, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  font: 300 1.8rem/1 Poppins, sans-serif;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.consultation-close:hover,
.consultation-close:focus-visible {
  color: #fff;
  background: rgba(0, 224, 255, 0.13);
  transform: rotate(5deg);
}

.consultation-form-state > .eyebrow,
.consultation-success > .eyebrow {
  color: #55e6ff;
}

.consultation-form-state h2,
.consultation-success h2 {
  max-width: 640px;
  margin: 0.35rem 3rem 0.65rem 0;
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.consultation-form-state > p,
.consultation-success > p {
  max-width: 590px;
  margin: 0 0 1.8rem;
  color: rgba(226, 238, 248, 0.7);
  line-height: 1.7;
}

.consultation-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.consultation-field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
  color: rgba(239, 247, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.consultation-field-wide {
  grid-column: 1 / -1;
}

.consultation-field em {
  color: rgba(219, 232, 243, 0.42);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 500;
}

.consultation-field input,
.consultation-field select,
.consultation-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(126, 205, 229, 0.24);
  border-radius: 0;
  padding: 0.82rem 0.1rem;
  color: #fff;
  background: transparent;
  font: 500 0.98rem/1.45 Poppins, sans-serif;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.consultation-select-wrap {
  position: relative;
  display: block;
  min-width: 0;
}

.consultation-select-wrap::before {
  content: "";
  position: absolute;
  inset: 1px 0 1px auto;
  width: 3.1rem;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(7, 16, 30, 0.92) 42%);
}

.consultation-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.35rem;
  width: 0.52rem;
  height: 0.52rem;
  border-right: 2px solid #42e5ff;
  border-bottom: 2px solid #ff58bb;
  pointer-events: none;
  transform: translateY(-68%) rotate(45deg);
  transition: transform 180ms ease, filter 180ms ease;
}

.consultation-select-wrap:focus-within::after {
  filter: drop-shadow(0 0 5px rgba(50, 221, 255, 0.8));
  transform: translateY(-32%) rotate(225deg);
}

.consultation-field select {
  min-height: 3.15rem;
  padding-right: 3rem;
  color-scheme: dark;
  background-color: #07101e;
  background-image: linear-gradient(90deg, rgba(50, 221, 255, 0.06), rgba(255, 88, 187, 0.035));
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.consultation-field select option {
  color: #eef9ff;
  background: #07101e;
  font: 500 0.98rem/1.45 Poppins, sans-serif;
}

.consultation-field select option:checked {
  color: #06111e;
  background: #42e5ff;
}

.consultation-field textarea {
  min-height: 126px;
  resize: vertical;
}

.consultation-field input:focus,
.consultation-field select:focus,
.consultation-field textarea:focus {
  border-color: #32ddff;
  box-shadow: 0 8px 16px -14px rgba(50, 221, 255, 0.85);
}

.consultation-field [aria-invalid="true"] {
  border-color: #ff58bb;
}

.consultation-field small,
.consultation-consent-error,
.consultation-turnstile-error {
  min-height: 1em;
  color: #ff7dc7;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.consultation-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1.15rem;
  color: rgba(222, 235, 246, 0.68);
  font-size: 0.82rem;
  line-height: 1.5;
}

.consultation-consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  accent-color: #27dfff;
}

.consultation-submit-row {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}

.consultation-submit[aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
}

.consultation-status {
  margin: 0;
  color: rgba(229, 242, 250, 0.72);
  font-size: 0.82rem;
}

.consultation-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.consultation-success {
  min-height: 390px;
  align-content: center;
  padding-block: clamp(3rem, 8vw, 6rem);
  outline: none;
}

.consultation-reference {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  font-family: Poppins, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.consultation-reference strong {
  color: #50e5ff;
}

@keyframes consultation-signal-travel {
  0%, 12% { transform: translate3d(-30%, 0, 0); opacity: 0; }
  26% { opacity: 0.8; }
  72% { opacity: 0.8; }
  88%, 100% { transform: translate3d(760%, 0, 0); opacity: 0; }
}

@media (max-width: 680px) {
  .consultation-modal {
    align-items: end;
    padding: 0;
  }

  .consultation-dialog {
    width: 100%;
    max-height: calc(100svh - 0.75rem);
    padding: 2.25rem 1.15rem 1.5rem;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    transform: translate3d(0, 40px, 0);
  }

  .consultation-fields {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.72rem;
  }

  .consultation-field-wide {
    grid-column: auto;
  }

  .consultation-form-state h2,
  .consultation-success h2 {
    margin-right: 2.6rem;
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .consultation-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .consultation-submit-row .btn {
    justify-content: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .consultation-modal,
  .consultation-dialog,
  .consultation-close {
    transition: none !important;
  }

  .consultation-signal span {
    animation: none !important;
    opacity: 0.35;
    transform: none;
  }
}

/* Whish Money — cinematic support chapter */
.whish-support {
  position: relative;
  isolation: isolate;
  max-width: none;
  min-height: 112svh;
  margin: 0;
  overflow: clip;
  background:
    radial-gradient(circle at 76% 30%, rgba(81, 220, 255, .12), transparent 25rem),
    radial-gradient(circle at 83% 72%, rgba(251, 63, 172, .1), transparent 30rem),
    linear-gradient(148deg, #070d17 0%, #050810 54%, #0b0711 100%);
}

.whish-support::after {
  content: "";
  position: absolute;
  z-index: 5;
  right: clamp(1.5rem, 6vw, 6.5rem);
  bottom: 0;
  left: clamp(1.5rem, 6vw, 6.5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(81, 220, 255, .54) 22%, rgba(251, 63, 172, .34) 76%, transparent);
  box-shadow: 0 0 18px rgba(81, 220, 255, .13);
}

.whish-background-type {
  position: absolute;
  z-index: -1;
  right: -2vw;
  bottom: 1%;
  width: 112%;
  margin: 0;
  color: transparent;
  font-family: Changa, sans-serif;
  font-size: clamp(5.5rem, 12vw, 12rem);
  font-weight: 800;
  line-height: .82;
  text-align: center;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(178, 225, 245, .085);
  text-shadow: 0 0 24px rgba(81, 220, 255, .035);
  opacity: .9;
  transform: rotate(-2deg);
  pointer-events: none;
}

.whish-ambient,
.whish-ambient::before,
.whish-ambient::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.whish-ambient::before,
.whish-ambient::after {
  content: "";
}

.whish-ambient::before {
  background: repeating-linear-gradient(90deg, transparent 0 109px, rgba(81, 220, 255, .018) 110px);
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000 85%, transparent);
}

.whish-ambient::after {
  top: 12%;
  right: 5%;
  bottom: auto;
  left: auto;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background: conic-gradient(from 210deg, transparent, rgba(81, 220, 255, .08), transparent 36%, rgba(251, 63, 172, .07), transparent 70%);
  filter: blur(30px);
  animation: whish-ambient-drift 14s ease-in-out infinite alternate;
}

.whish-ambient > span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(210, 246, 255, .55);
  box-shadow: 0 0 9px rgba(81, 220, 255, .45);
  animation: whish-particle-drift 9s ease-in-out infinite alternate;
}

.whish-ambient > span:nth-child(1) { top: 24%; left: 9%; }
.whish-ambient > span:nth-child(2) { top: 67%; left: 47%; animation-delay: -3s; }
.whish-ambient > span:nth-child(3) { top: 35%; right: 9%; animation-delay: -6s; }

.whish-support-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, .88fr) minmax(520px, 1.12fr);
  grid-template-rows: auto auto auto;
  gap: clamp(1.5rem, 3.5vw, 3.5rem) clamp(3rem, 7vw, 8rem);
  align-content: center;
  width: min(100%, 1480px);
  min-height: 112svh;
  margin: 0 auto;
  padding: clamp(7.5rem, 12vh, 10rem) clamp(1.5rem, 6vw, 6.5rem) clamp(6rem, 10vh, 8rem);
}

.whish-support-intro {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  max-width: 41rem;
}

.whish-brand {
  display: block;
  width: clamp(8rem, 11vw, 10.5rem);
  height: auto;
  margin-bottom: 1.6rem;
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(235, 0, 69, .12));
}

.whish-support-intro .eyebrow {
  color: var(--cyan);
}

.whish-support-intro h2 {
  max-width: 8.5ch;
  margin: .7rem 0 1.35rem;
  color: var(--paper);
  font-size: clamp(3.65rem, 6vw, 6.5rem);
  font-weight: 850;
  letter-spacing: -.07em;
  line-height: .86;
}

.whish-support-intro h2 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(218, 242, 255, .78);
}

.whish-support-intro > p {
  max-width: 36rem;
  margin: 0;
  color: rgba(214, 224, 240, .74);
  font-size: clamp(.94rem, 1.15vw, 1.08rem);
  line-height: 1.78;
}

.whish-steps {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 0 0 2.8rem;
  list-style: none;
}

.whish-steps::before {
  content: "";
  position: absolute;
  top: .75rem;
  bottom: .75rem;
  left: .6rem;
  width: 1px;
  background: linear-gradient(180deg, var(--cyan), rgba(81, 220, 255, .28) 54%, rgba(251, 63, 172, .64));
  box-shadow: 0 0 13px rgba(81, 220, 255, .2);
  transform: scaleY(0);
  transform-origin: top;
}

.whish-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: baseline;
  gap: .9rem;
  padding: .75rem 0 1.1rem;
  opacity: 0;
  transform: translate3d(0, .6rem, 0);
}

.whish-steps li::before {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: -2.55rem;
  width: .55rem;
  height: .55rem;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  background: #07101a;
  box-shadow: 0 0 0 5px rgba(81, 220, 255, .05), 0 0 12px rgba(81, 220, 255, .28);
}

.whish-steps li:last-child::before {
  border-color: var(--pink);
  box-shadow: 0 0 0 5px rgba(251, 63, 172, .05), 0 0 12px rgba(251, 63, 172, .28);
}

.whish-steps span {
  color: rgba(81, 220, 255, .72);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.whish-steps strong {
  color: rgba(244, 249, 255, .9);
  font-size: clamp(1rem, 1.55vw, 1.3rem);
  font-weight: 650;
  letter-spacing: -.02em;
}

.whish-support-note {
  grid-column: 1;
  grid-row: 3;
  align-self: start;
  max-width: 37rem;
}

.whish-support-note > p {
  margin: 0 0 1.5rem;
  color: rgba(190, 205, 225, .62);
  font-size: .86rem;
  line-height: 1.72;
}

.whish-help-trigger {
  min-width: 10.5rem;
  cursor: pointer;
  font: inherit;
}

.whish-phone {
  position: relative;
  z-index: 3;
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
  justify-self: start;
  width: min(29vw, 22rem);
  margin: 0 0 0 clamp(1rem, 4vw, 4.5rem);
  transform: rotate(2.4deg) translate3d(0, 0, 0);
  transform-origin: 50% 70%;
  opacity: 0;
}

.whish-phone-shell {
  position: relative;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(172, 232, 250, .42);
  border-radius: clamp(1.9rem, 3vw, 2.7rem);
  background: linear-gradient(145deg, #273242, #080b10 34%, #161d27 72%, #364150);
  box-shadow:
    -16px 34px 62px rgba(0, 0, 0, .55),
    -6px 0 25px rgba(81, 220, 255, .14),
    7px 0 22px rgba(251, 63, 172, .09),
    inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.whish-phone-shell > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(1.45rem, 2.5vw, 2.2rem);
}

.whish-scan-target {
  position: absolute;
  z-index: 5;
  bottom: .65%;
  left: 50%;
  width: 19%;
  aspect-ratio: 1;
  border: 2px solid rgba(81, 220, 255, .92);
  border-radius: 50%;
  box-shadow:
    0 0 0 5px rgba(81, 220, 255, .09),
    0 0 18px rgba(81, 220, 255, .48),
    0 0 28px rgba(251, 63, 172, .16);
  transform: translateX(-50%);
  pointer-events: none;
  animation: whish-scan-target-pulse 3.2s ease-in-out infinite;
}

.whish-scan-target::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(251, 63, 172, .48);
  border-radius: inherit;
  opacity: .62;
}

.whish-scan-callout {
  position: absolute;
  z-index: 6;
  bottom: 10.5%;
  left: 50%;
  display: grid;
  justify-items: center;
  color: #ecfbff;
  transform: translateX(-50%);
  pointer-events: none;
}

.whish-scan-callout b {
  padding: .42rem .7rem;
  border: 1px solid rgba(81, 220, 255, .36);
  background: rgba(4, 12, 22, .88);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .32), 0 0 14px rgba(81, 220, 255, .12);
  font-size: clamp(.6rem, .72vw, .72rem);
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.whish-scan-callout i {
  position: relative;
  width: 2px;
  height: clamp(2.35rem, 4vw, 3.15rem);
  background: linear-gradient(180deg, var(--cyan), rgba(81, 220, 255, .16));
  box-shadow: 0 0 8px rgba(81, 220, 255, .48);
  animation: whish-scan-guide-travel 2.4s ease-in-out infinite;
}

.whish-scan-callout i::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  width: .48rem;
  height: .48rem;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: translateX(50%) rotate(45deg);
}

.whish-phone-speaker {
  position: absolute;
  z-index: 3;
  top: 1.05rem;
  left: 50%;
  width: 26%;
  height: .32rem;
  border-radius: 1rem;
  background: rgba(4, 7, 10, .72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .12);
  transform: translateX(-50%);
}

.whish-phone-reflection {
  position: absolute;
  z-index: 2;
  top: -18%;
  bottom: -18%;
  left: -50%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
  filter: blur(5px);
  transform: skewX(-18deg);
  animation: whish-phone-reflection 7s ease-in-out infinite;
  pointer-events: none;
}

.whish-phone figcaption {
  margin-top: .85rem;
  color: rgba(194, 210, 231, .45);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.whish-qr-panel {
  position: relative;
  z-index: 4;
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: end;
  justify-self: end;
  width: min(24vw, 20rem);
  margin: 0;
  padding: .8rem .8rem 1rem 1.1rem;
  border: 1px solid rgba(145, 224, 246, .25);
  background: linear-gradient(145deg, rgba(16, 27, 40, .94), rgba(8, 12, 20, .9));
  box-shadow: 0 24px 60px rgba(0, 0, 0, .48), 0 0 38px rgba(81, 220, 255, .07);
  opacity: 0;
  transform: translate3d(1rem, 1rem, 0) rotate(-1.3deg);
}

.whish-qr-panel::before,
.whish-qr-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.whish-qr-panel::before {
  inset: -1px;
  border: 1px solid transparent;
  background: linear-gradient(115deg, rgba(81, 220, 255, .5), transparent 30%, transparent 70%, rgba(251, 63, 172, .42)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: .48;
  animation: whish-qr-frame-pulse 5.5s ease-in-out infinite;
}

.whish-qr-panel::after {
  inset: 15% 10%;
  z-index: -1;
  background: rgba(81, 220, 255, .1);
  filter: blur(30px);
}

.whish-qr-image {
  position: relative;
  overflow: hidden;
  background: #2d2d2d;
}

.whish-qr-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.whish-qr-rail {
  position: absolute;
  z-index: 3;
  top: .8rem;
  bottom: 3.6rem;
  left: .35rem;
  width: 2px;
  overflow: hidden;
  background: rgba(81, 220, 255, .12);
}

.whish-qr-rail i {
  position: absolute;
  top: -12%;
  left: 0;
  width: 100%;
  height: 18%;
  background: linear-gradient(180deg, transparent, #e8fcff, transparent);
  box-shadow: 0 0 8px rgba(81, 220, 255, .8);
  animation: whish-qr-scan 4.8s ease-in-out infinite;
}

.whish-qr-panel figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding-top: .8rem;
}

.whish-qr-panel figcaption img {
  width: 5.8rem;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .82;
}

.whish-qr-panel figcaption span {
  color: rgba(214, 228, 242, .58);
  font-size: .55rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: right;
}

.whish-signal-path {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.whish-signal-path path {
  fill: none;
  stroke-linecap: round;
}

.whish-signal-shadow {
  stroke: rgba(81, 220, 255, .08);
  stroke-width: 8;
  filter: blur(6px);
}

.whish-signal-line {
  stroke: url(#whishSignalGradient);
  stroke-width: 1.5;
  stroke-dasharray: 8 12;
  stroke-dashoffset: 150;
}

.whish-signal-path circle {
  fill: #f4fdff;
  opacity: 0;
  filter: drop-shadow(0 0 7px rgba(81, 220, 255, .8));
}

.whish-support.is-active .whish-phone {
  opacity: 1;
  animation: whish-phone-arrive .9s .12s cubic-bezier(.22, 1, .36, 1) both, whish-phone-float 6s 1.1s ease-in-out infinite alternate;
}

.whish-support.is-active .whish-qr-panel {
  opacity: 1;
  animation: whish-qr-arrive .75s .48s cubic-bezier(.22, 1, .36, 1) both;
}

.whish-support.is-active .whish-steps::before {
  transform: scaleY(1);
  transition: transform .75s .42s cubic-bezier(.22, 1, .36, 1);
}

.whish-support.is-active .whish-steps li {
  opacity: 1;
  transform: none;
  transition: opacity .45s ease, transform .58s cubic-bezier(.22, 1, .36, 1);
}

.whish-support.is-active .whish-steps li:nth-child(1) { transition-delay: .48s; }
.whish-support.is-active .whish-steps li:nth-child(2) { transition-delay: .62s; }
.whish-support.is-active .whish-steps li:nth-child(3) { transition-delay: .76s; }

.whish-support.is-active .whish-signal-line {
  animation: whish-signal-travel 4.2s .7s linear infinite;
}

.whish-support.is-active .whish-signal-path circle {
  animation: whish-endpoint-pulse 4.2s 1.45s ease-in-out infinite;
}

.whish-support:not(.is-visible) .whish-phone-reflection,
.whish-support:not(.is-visible) .whish-scan-target,
.whish-support:not(.is-visible) .whish-scan-callout i,
.whish-support:not(.is-visible) .whish-ambient::after,
.whish-support:not(.is-visible) .whish-ambient > span,
.whish-support:not(.is-visible) .whish-qr-rail i,
.whish-support:not(.is-visible) .whish-qr-panel::before,
.whish-support:not(.is-visible) .whish-signal-line,
body.is-page-hidden .whish-phone-reflection,
body.is-page-hidden .whish-scan-target,
body.is-page-hidden .whish-scan-callout i,
body.is-page-hidden .whish-ambient::after,
body.is-page-hidden .whish-ambient > span,
body.is-page-hidden .whish-qr-rail i,
body.is-page-hidden .whish-qr-panel::before,
body.is-page-hidden .whish-signal-line {
  animation-play-state: paused;
}

body.whish-help-open {
  overflow: hidden;
}

.whish-help-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
}

.whish-help-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.whish-help-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 68% 32%, rgba(81, 220, 255, .1), transparent 32%),
    radial-gradient(circle at 28% 76%, rgba(251, 63, 172, .1), transparent 38%),
    rgba(2, 5, 12, .91);
  backdrop-filter: blur(10px);
}

.whish-help-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  width: min(980px, 100%);
  max-height: calc(100svh - 2rem);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  overflow: auto;
  border: 1px solid rgba(107, 224, 251, .22);
  background: linear-gradient(135deg, rgba(9, 17, 31, .98), rgba(5, 8, 18, .99));
  box-shadow: 0 34px 100px rgba(0, 0, 0, .65), -12px 0 55px rgba(251, 63, 172, .07), 12px 0 55px rgba(81, 220, 255, .08);
  transform: translate3d(0, 1.4rem, 0) scale(.985);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}

.whish-help-modal.is-open .whish-help-dialog {
  transform: none;
}

.whish-help-dialog::before,
.whish-help-dialog::after {
  content: "";
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  pointer-events: none;
}

.whish-help-dialog::before {
  top: 0;
  left: 0;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.whish-help-dialog::after {
  right: 0;
  bottom: 0;
  border-right: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
}

.whish-help-close {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  color: rgba(240, 249, 255, .78);
  background: rgba(255, 255, 255, .045);
  font: 300 1.8rem/1 Poppins, sans-serif;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, transform .18s ease;
}

.whish-help-close:hover,
.whish-help-close:focus-visible {
  color: #fff;
  border-color: rgba(81, 220, 255, .5);
  transform: rotate(5deg);
}

.whish-help-media {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(100%, 18rem);
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(81, 220, 255, .25);
  border-radius: 2rem;
  background: #131923;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .42), -5px 0 20px rgba(81, 220, 255, .09);
}

.whish-help-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.65rem;
}

.whish-help-media .whish-scan-callout {
  bottom: 10%;
}

.whish-help-copy {
  align-self: center;
  padding: 2rem 2rem 2rem 0;
}

.whish-help-copy > img {
  display: block;
  width: 9rem;
  height: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.whish-help-copy .eyebrow { color: var(--cyan); }

.whish-help-copy h2 {
  margin: .55rem 2rem .75rem 0;
  color: var(--paper);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 850;
  letter-spacing: -.06em;
  line-height: .92;
}

.whish-help-copy > p {
  max-width: 32rem;
  margin: 0 0 1.5rem;
  color: rgba(214, 224, 240, .68);
  line-height: 1.65;
}

.whish-help-copy ol {
  display: grid;
  gap: .4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.whish-help-copy li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  align-items: baseline;
  gap: .8rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: rgba(244, 249, 255, .86);
  font-size: .92rem;
  font-weight: 600;
}

.whish-help-copy li span {
  color: var(--cyan);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.whish-help-copy .whish-help-thanks {
  margin: 1.5rem 0 0;
  color: rgba(225, 196, 218, .72);
  font-size: .82rem;
}

@keyframes whish-phone-arrive {
  from { opacity: 0; transform: translate3d(1.2rem, 2rem, 0) rotate(4deg) scale(.98); filter: blur(4px); }
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(2.4deg) scale(1); filter: blur(0); }
}

@keyframes whish-phone-float {
  from { transform: translate3d(0, 0, 0) rotate(2.4deg); }
  to { transform: translate3d(0, -.75rem, 0) rotate(1.5deg); }
}

@keyframes whish-qr-arrive {
  from { opacity: 0; transform: translate3d(1rem, 1rem, 0) rotate(-1.3deg) scale(.98); }
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(-1.3deg) scale(1); }
}

@keyframes whish-phone-reflection {
  0%, 18% { transform: translate3d(-30%, 0, 0) skewX(-18deg); opacity: 0; }
  42%, 58% { opacity: .48; }
  82%, 100% { transform: translate3d(560%, 0, 0) skewX(-18deg); opacity: 0; }
}

@keyframes whish-scan-target-pulse {
  0%, 72%, 100% { border-color: rgba(81, 220, 255, .72); transform: translateX(-50%) scale(1); }
  84% { border-color: #f5fdff; transform: translateX(-50%) scale(1.08); }
}

@keyframes whish-scan-guide-travel {
  0%, 25%, 100% { opacity: .5; transform: scaleY(.72); transform-origin: top; }
  48%, 76% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@keyframes whish-qr-scan {
  0%, 18% { transform: translateY(-30%); opacity: 0; }
  36%, 65% { opacity: .8; }
  84%, 100% { transform: translateY(620%); opacity: 0; }
}

@keyframes whish-qr-frame-pulse {
  0%, 70%, 100% { opacity: .38; filter: drop-shadow(0 0 0 rgba(81, 220, 255, 0)); }
  82% { opacity: .72; filter: drop-shadow(0 0 9px rgba(81, 220, 255, .2)); }
}

@keyframes whish-signal-travel {
  to { stroke-dashoffset: 0; }
}

@keyframes whish-endpoint-pulse {
  0%, 65%, 100% { opacity: .18; transform: scale(.8); transform-origin: 330px 665px; }
  76% { opacity: 1; transform: scale(1.45); transform-origin: 330px 665px; }
}

@keyframes whish-ambient-drift {
  from { opacity: .42; transform: translate3d(-1rem, 0, 0) rotate(-3deg); }
  to { opacity: .66; transform: translate3d(1.2rem, .75rem, 0) rotate(3deg); }
}

@keyframes whish-particle-drift {
  from { transform: translate3d(0, .4rem, 0); opacity: .22; }
  to { transform: translate3d(.7rem, -.6rem, 0); opacity: .62; }
}

@media (max-width: 1020px) {
  .whish-support-layout {
    grid-template-columns: minmax(300px, .85fr) minmax(420px, 1.15fr);
    column-gap: 3rem;
  }

  .whish-phone {
    width: min(31vw, 19rem);
    margin-left: 0;
  }

  .whish-qr-panel {
    width: min(25vw, 17rem);
  }
}

@media (max-width: 700px) {
  .whish-support {
    min-height: 0;
  }

  .whish-support-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 2.2rem;
    min-height: 0;
    padding: 6.5rem 1.35rem 5.5rem;
  }

  .whish-phone,
  .whish-qr-panel,
  .whish-support-intro,
  .whish-steps,
  .whish-support-note {
    grid-column: 1;
  }

  .whish-phone {
    grid-row: 1;
    justify-self: center;
    width: min(76vw, 18rem);
    margin: 0;
  }

  .whish-qr-panel {
    grid-row: 2;
    align-self: auto;
    justify-self: center;
    width: min(78vw, 18.5rem);
  }

  .whish-support-intro {
    grid-row: 3;
    text-align: center;
  }

  .whish-brand {
    margin-right: auto;
    margin-left: auto;
  }

  .whish-support-intro h2 {
    max-width: 7.8ch;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(3.2rem, 16vw, 5.1rem);
  }

  .whish-support-intro > p {
    max-width: 31rem;
    margin-right: auto;
    margin-left: auto;
    font-size: .93rem;
  }

  .whish-steps {
    grid-row: 4;
    width: min(100%, 25rem);
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .whish-steps::before,
  .whish-steps li,
  .whish-support.is-active .whish-steps::before,
  .whish-support.is-active .whish-steps li {
    transition: none;
  }

  .whish-steps::before,
  .whish-support.is-active .whish-steps::before {
    transform: scaleY(1);
  }

  .whish-steps li,
  .whish-support.is-active .whish-steps li {
    opacity: 1;
    transform: none;
  }

  .whish-support-note {
    grid-row: 5;
    justify-self: center;
    text-align: center;
  }

  .whish-help-trigger {
    width: min(100%, 22rem);
    justify-content: space-between;
  }

  .whish-signal-path {
    display: none;
  }

  .whish-background-type {
    right: -38%;
    bottom: 18%;
    width: 176%;
    font-size: 5.4rem;
    white-space: normal;
    -webkit-text-stroke-color: rgba(178, 225, 245, .14);
    text-shadow: 0 0 20px rgba(81, 220, 255, .055);
  }

  .whish-help-modal {
    align-items: end;
    padding: 0;
  }

  .whish-help-dialog {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    width: 100%;
    max-height: calc(100svh - .75rem);
    padding: 3.25rem 1.15rem 1.5rem;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    transform: translate3d(0, 2.5rem, 0);
  }

  .whish-help-media {
    width: min(55vw, 12rem);
  }

  .whish-help-copy {
    padding: 0;
    text-align: center;
  }

  .whish-help-copy > img {
    margin-right: auto;
    margin-left: auto;
  }

  .whish-help-copy h2 {
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .whish-help-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .whish-help-copy li {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whish-phone,
  .whish-qr-panel,
  .whish-steps li {
    opacity: 1;
    transform: none;
  }

  .whish-steps::before {
    transform: scaleY(1);
  }

  .whish-phone,
  .whish-qr-panel,
  .whish-phone-reflection,
  .whish-scan-target,
  .whish-scan-callout i,
  .whish-qr-rail i,
  .whish-qr-panel::before,
  .whish-signal-line,
  .whish-signal-path circle,
  .whish-ambient::after,
  .whish-ambient > span,
  .whish-help-modal,
  .whish-help-dialog,
  .whish-help-close {
    animation: none !important;
    transition: none !important;
  }

  .whish-signal-line {
    stroke-dashoffset: 0;
  }

  .whish-signal-path circle {
    opacity: .65;
  }
}
