﻿:root {
  --ink: #f9fbff;
  --muted: #a9b8c7;
  --paper: #0a0d12;
  --panel: rgba(12, 19, 29, 0.78);
  --line: rgba(255, 255, 255, 0.15);
  --cyan: #00e7ff;
  --pink: #ff2e9a;
  --lime: #b6ff3b;
  --amber: #ffb347;
  --mode-accent: #00e7ff;
  --mode-accent-2: #ff2e9a;
  --path-accent: #00e7ff;
  --path-accent-2: #ff2e9a;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.45);
  --scroll-shift: 0px;
  --scroll-shift-mid: 0px;
  --scroll-shift-soft: 0px;
  --scroll-shift-up: 0px;
  --scroll-shift-content: 0px;
  --reactor-scroll: 0px;
  --pointer-x: 0;
  --pointer-y: 0;
  --pointer-x-10: 0px;
  --pointer-x-18: 0px;
  --pointer-x-38: 0px;
  --pointer-x-neg-26: 0px;
  --pointer-y-18: 0px;
  --pointer-y-neg-8: 0px;
  --pointer-y-neg-12: 0px;
  --pointer-y-neg-24: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
canvas {
  display: block;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 13, 18, 0) 0%, #0a0d12 720px),
    radial-gradient(circle at 12% 42%, rgba(255, 46, 154, 0.18), transparent 26%),
    radial-gradient(circle at 82% 30%, rgba(0, 231, 255, 0.14), transparent 28%),
    #0a0d12;
}

.topbar {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 52px);
  background: rgba(7, 10, 16, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 150px;
}

.brand-mark {
  font-family: Anton, Impact, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

nav a {
  color: #dce8f5;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 11px;
  border-radius: 8px;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.motion-sound-toggle {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(141, 220, 255, 0.32);
  border-radius: 8px;
  background: rgba(5, 12, 22, 0.78);
  color: #8ddcff;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.motion-sound-toggle:hover,
.motion-sound-toggle:focus-visible {
  border-color: rgba(182, 255, 59, 0.72);
  color: #b6ff3b;
  background: rgba(12, 24, 31, 0.94);
}

.motion-sound-toggle[aria-pressed="true"] {
  border-color: rgba(182, 255, 59, 0.72);
  color: #b6ff3b;
}

.motion-sound-toggle .sound-icon {
  width: 17px;
  height: 17px;
}

.motion-sound-toggle .sound-icon-on,
.motion-sound-toggle[aria-pressed="true"] .sound-icon-off {
  display: none;
}

.motion-sound-toggle[aria-pressed="true"] .sound-icon-on {
  display: block;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: clamp(22px, 4vw, 48px);
  padding: 104px clamp(18px, 4vw, 56px) 54px;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 78px;
  right: clamp(18px, 4vw, 56px);
  width: min(24vw, 330px);
  aspect-ratio: 2.3 / 1;
  background: radial-gradient(circle, rgba(7, 10, 16, 0.05) 32%, rgba(7, 10, 16, 0.82) 74%), url("assets/gsp/guy-stephens-productions-crest.png") center / contain no-repeat;
  opacity: 0.42;
  mix-blend-mode: lighten;
  pointer-events: none;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.hero-content,
.hero-panel,
.hero-reactor {
  z-index: 1;
}

.hero h1 {
  max-width: 830px;
  line-height: 0.86;
}

#visualizer-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 9, 14, 0.94) 0%, rgba(6, 9, 14, 0.55) 48%, rgba(6, 9, 14, 0.12) 100%),
    linear-gradient(0deg, #0a0d12 0%, rgba(10, 13, 18, 0.1) 38%);
}

.hero-content,
.hero-panel,
.hero-reactor {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 920px;
  pointer-events: none;
  transform: translateY(var(--scroll-shift-content));
}

.hero-actions a {
  pointer-events: auto;
}

.hero-reactor {
  position: absolute;
  right: clamp(360px, 32vw, 540px);
  top: clamp(112px, 16vh, 164px);
  width: clamp(236px, 21vw, 300px);
  aspect-ratio: 1 / 1.12;
  display: grid;
  place-items: center;
  isolation: isolate;
  transform:
    translate3d(calc(var(--pointer-x) * 12px), calc(var(--reactor-scroll) + var(--pointer-y) * -10px), 0)
    perspective(920px)
    rotateX(calc(var(--pointer-y) * -7deg))
    rotateY(calc(var(--pointer-x) * 10deg));
  transform-style: preserve-3d;
  transition: filter 180ms ease;
}

.hero-reactor::before,
.hero-reactor::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  pointer-events: none;
}

.hero-reactor::before {
  inset: 10%;
  z-index: -2;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--reactor-a, var(--cyan)) 30%, transparent), color-mix(in srgb, var(--reactor-b, var(--pink)) 20%, transparent)),
    rgba(8, 13, 20, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    0 0 54px color-mix(in srgb, var(--reactor-a, var(--cyan)) 26%, transparent);
  transform: translateZ(-34px) rotateZ(-4deg);
}

.hero-reactor::after {
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, transparent, color-mix(in srgb, var(--reactor-a, var(--cyan)) 34%, transparent), transparent),
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--reactor-b, var(--pink)) 22%, transparent) 0 2px, transparent 2px 26px);
  opacity: 0.54;
  transform: translateZ(-72px) rotateX(68deg) translateY(42%);
  filter: blur(0.5px);
}

.reactor-platter {
  position: absolute;
  inset: 11% 9% auto auto;
  width: 64%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #101823 0 18%, transparent 19%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 13px),
    radial-gradient(circle at 36% 30%, color-mix(in srgb, var(--reactor-a, var(--cyan)) 34%, transparent), transparent 44%),
    #05080d;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.06),
    0 0 46px color-mix(in srgb, var(--reactor-a, var(--cyan)) 22%, transparent);
  transform: translateZ(30px);
  animation: platterSpin 9s linear infinite;
}

.reactor-platter i {
  position: absolute;
  inset: 18%;
  border: 1px solid color-mix(in srgb, var(--reactor-a, var(--cyan)) 46%, transparent);
  border-radius: 50%;
}

.reactor-platter i:nth-child(2) {
  inset: 31%;
  border-color: color-mix(in srgb, var(--reactor-b, var(--pink)) 50%, transparent);
}

.reactor-platter i:nth-child(3) {
  inset: 44%;
  border-color: rgba(182, 255, 59, 0.45);
}

.reactor-logo {
  position: relative;
  z-index: 2;
  width: 72%;
  min-height: 42%;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 6px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(5, 9, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
  transform: translate3d(-18%, 2%, 68px) rotateZ(-3deg);
}

.reactor-logo span {
  color: #f9fbff;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(58px, 6.2vw, 94px);
  line-height: 0.82;
  text-shadow:
    calc(var(--pointer-x) * 9px) 0 color-mix(in srgb, var(--reactor-a, var(--cyan)) 72%, transparent),
    calc(var(--pointer-x) * -9px) 0 color-mix(in srgb, var(--reactor-b, var(--pink)) 72%, transparent);
}

.reactor-logo b {
  color: var(--lime);
  font-size: 11px;
  line-height: 1.1;
  text-transform: uppercase;
}

.reactor-controls {
  position: absolute;
  left: 15%;
  right: 12%;
  bottom: 17%;
  z-index: 3;
  display: flex;
  align-items: end;
  gap: 6px;
  height: 44px;
  transform: translateZ(52px) rotateZ(-2deg);
}

.reactor-controls i {
  flex: 1;
  min-width: 8px;
  height: calc(18px + var(--level, 0.4) * 34px);
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--lime), var(--reactor-a, var(--cyan)) 58%, var(--reactor-b, var(--pink)));
  box-shadow: 0 0 16px color-mix(in srgb, var(--reactor-a, var(--cyan)) 35%, transparent);
  animation: reactorBars 720ms steps(4) infinite;
}

.reactor-controls i:nth-child(1) { --level: 0.28; animation-delay: -120ms; }
.reactor-controls i:nth-child(2) { --level: 0.74; animation-delay: -280ms; }
.reactor-controls i:nth-child(3) { --level: 0.46; animation-delay: -420ms; }
.reactor-controls i:nth-child(4) { --level: 0.88; animation-delay: -180ms; }
.reactor-controls i:nth-child(5) { --level: 0.36; animation-delay: -340ms; }

.reactor-chips {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  transform: translateZ(86px);
}

.reactor-chip {
  min-height: 34px;
  padding: 7px 5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #eef8ff;
  font: inherit;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.reactor-chip.is-active,
.reactor-chip:hover,
.reactor-chip:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--reactor-a, var(--cyan)) 62%, white 10%);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--reactor-a, var(--cyan)) 26%, transparent), color-mix(in srgb, var(--reactor-b, var(--pink)) 18%, transparent)),
    rgba(255, 255, 255, 0.1);
}

.hero-reactor[data-reactor-mode="book"] { --reactor-a: var(--cyan); --reactor-b: var(--pink); }
.hero-reactor[data-reactor-mode="afterparty"] { --reactor-a: var(--pink); --reactor-b: var(--amber); }
.hero-reactor[data-reactor-mode="vjplay"] { --reactor-a: #8ddcff; --reactor-b: var(--lime); }
.hero-reactor[data-reactor-mode="scorer"] { --reactor-a: var(--lime); --reactor-b: var(--cyan); }
.hero-reactor[data-reactor-mode="photography"] { --reactor-a: #ff6fbd; --reactor-b: var(--amber); }

@keyframes platterSpin {
  to { transform: translateZ(30px) rotateZ(360deg); }
}

@keyframes reactorBars {
  50% { height: calc(22px + var(--level, 0.4) * 42px); filter: hue-rotate(28deg); }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(72px, 13.5vw, 190px);
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 0 0 40px rgba(0, 231, 255, 0.18);
}

h2 {
  font-size: clamp(29px, 3.8vw, 54px);
  line-height: 0.96;
  letter-spacing: 0;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  line-height: 1.06;
  margin-bottom: 12px;
}

.hero-lede {
  max-width: 640px;
  color: #e5f1fc;
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.36;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 900;
  border: 1px solid var(--line);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  color: #061015;
  border-color: transparent;
}

.hero-actions .button.primary,
.brief-actions .button.primary,
.button.primary.path-aware {
  background: linear-gradient(135deg, var(--path-accent), var(--path-accent-2));
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.path-filtering :is(.project-card, .live-media-card, .rate-grid article, .contact-actions .button)[data-paths] {
  opacity: 0.52;
  filter: saturate(0.68) contrast(0.92);
  transition:
    opacity 180ms ease,
    filter 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.path-filtering :is(.project-card, .live-media-card, .rate-grid article, .contact-actions .button).is-path-active {
  opacity: 1;
  filter: saturate(1.18) contrast(1.04);
  border-color: color-mix(in srgb, var(--path-accent) 66%, white 12%);
  box-shadow:
    0 22px 70px color-mix(in srgb, var(--path-accent) 18%, transparent),
    0 0 0 1px color-mix(in srgb, var(--path-accent-2) 28%, transparent);
}

.path-filtering .project-card.is-path-active,
.path-filtering .live-media-card.is-path-active {
  transform: perspective(1100px) translateY(-4px) rotateX(1deg);
}

.path-filtering .rate-grid article.is-path-active {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--path-accent) 12%, white), color-mix(in srgb, var(--path-accent-2) 8%, white)),
    #ffffff;
}

.hero-panel {
  display: grid;
  gap: 12px;
}

.hero-panel div {
  background: rgba(7, 12, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-panel span {
  display: block;
  color: var(--cyan);
  font-family: Anton, Impact, sans-serif;
  font-size: 42px;
  line-height: 1;
}

.hero-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.32;
}

.intro-band {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #101823;
  overflow: hidden;
}

.brand-house-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.5fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  color: #fffdf8;
  background:
    linear-gradient(135deg, rgba(3, 6, 10, 0.98), rgba(10, 13, 18, 0.96)),
    #03060a;
  border-top: 1px solid rgba(238, 194, 95, 0.24);
  border-bottom: 1px solid rgba(238, 194, 95, 0.18);
}

.brand-house-copy {
  grid-column: 1;
}

.brand-house-copy .eyebrow {
  color: #efc56b;
}

.brand-house-copy h2 {
  max-width: 690px;
}

.brand-house-copy p:not(.eyebrow) {
  max-width: 670px;
  color: #b9c1cc;
  font-size: 16px;
  line-height: 1.6;
}

.brand-house-mark {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  place-items: center;
  min-height: 240px;
}

.brand-house-mark::before {
  content: "";
  position: absolute;
  inset: 15% 4%;
  border: 1px solid rgba(239, 197, 107, 0.42);
  transform: rotate(-4deg);
}

.brand-house-mark img {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.55));
}

.brand-house-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.brand-house-grid a {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  color: #fffdf8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.brand-house-grid a:hover,
.brand-house-grid a:focus-visible {
  border-color: #efc56b;
  background: linear-gradient(145deg, rgba(239, 197, 107, 0.18), rgba(255, 255, 255, 0.06));
  transform: translateY(-4px);
}

.brand-house-grid span {
  color: #efc56b;
  font-family: Anton, Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.brand-house-grid b {
  font-size: 14px;
  line-height: 1.2;
}

.brand-house-grid small {
  color: #b9c1cc;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.42;
}

.mode-router-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(0, 231, 255, 0.08), rgba(255, 46, 154, 0.08)),
    linear-gradient(180deg, #091017, #101823);
  border-bottom: 1px solid var(--line);
  padding-top: clamp(28px, 3.2vw, 42px);
  padding-bottom: clamp(28px, 3.2vw, 42px);
}

.mode-router-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 84px 84px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 78%, transparent);
  transform: translateY(var(--scroll-shift-soft));
}

#mode-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  pointer-events: none;
  mix-blend-mode: screen;
}

.mode-router-section .section-heading,
.mode-router {
  position: relative;
  z-index: 2;
}

.mode-router-section .section-heading p {
  color: #c7d8e8;
}

.mode-router {
  --local-accent: var(--mode-accent);
  --local-accent-2: var(--mode-accent-2);
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.mode-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  align-content: start;
}

.mode-button {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 7px;
  min-height: 43px;
  padding: 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.mode-button svg {
  width: 16px;
  height: 16px;
  color: var(--local-accent);
}

.mode-button:hover,
.mode-button.is-active {
  transform: translateX(4px);
  border-color: color-mix(in srgb, var(--local-accent) 58%, white 18%);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--local-accent) 18%, transparent), color-mix(in srgb, var(--local-accent-2) 14%, transparent)),
    rgba(255, 255, 255, 0.08);
}

.mode-preview {
  position: relative;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(14px, 2.2vw, 22px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--local-accent) 19%, transparent), color-mix(in srgb, var(--local-accent-2) 17%, transparent)),
    rgba(7, 12, 18, 0.78);
  box-shadow: var(--shadow);
}

.mode-preview::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid color-mix(in srgb, var(--local-accent) 34%, transparent);
  border-radius: 8px;
  transform:
    translate3d(var(--pointer-x-10), var(--pointer-y-neg-8), 0)
    skewX(-8deg);
  opacity: 0.7;
}

.mode-preview::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 42%;
  background:
    linear-gradient(to top, color-mix(in srgb, var(--local-accent) 76%, transparent) 38%, transparent 38%) 0 100% / 18px 100%,
    linear-gradient(to top, color-mix(in srgb, var(--local-accent-2) 76%, transparent) 62%, transparent 62%) 26px 100% / 18px 100%;
  background-repeat: repeat-x;
  opacity: 0.14;
  transform: translateY(var(--scroll-shift-up));
  animation: equalizerDrift 900ms steps(5) infinite;
}

.mode-preview > * {
  position: relative;
  z-index: 1;
}

.mode-kicker {
  margin-bottom: 7px;
  padding: 5px 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--local-accent);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.mode-preview h3 {
  max-width: 600px;
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 0.98;
}

.mode-preview p {
  max-width: 610px;
  color: #d9e7f5;
  font-size: 13px;
  line-height: 1.42;
}

.mode-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 6px 0 10px;
}

.mode-meta span {
  padding: 5px 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #eff9ff;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.marquee {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 14px 0;
  animation: slide 22s linear infinite;
}

.marquee span {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(26px, 3.6vw, 52px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.44);
  white-space: nowrap;
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(48px, 6.5vw, 88px) clamp(18px, 4vw, 56px);
}

.section.mode-router-section {
  padding-top: clamp(28px, 3.2vw, 42px);
  padding-bottom: clamp(28px, 3.2vw, 42px);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.event-tags b {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #dffaff;
  font-size: 12px;
  text-transform: uppercase;
}

.section-copy,
.section-heading,
.proof-copy,
.contact-section > div {
  max-width: 860px;
}

.section-copy p,
.section-heading p,
.proof-copy p,
.contact-section p,
.rate-note {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 231, 255, 0.12), rgba(255, 46, 154, 0.1) 48%, rgba(182, 255, 59, 0.08)),
    #0c1119;
  border-bottom: 1px solid var(--line);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 12% -12% auto 45%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 231, 255, 0.55), rgba(255, 46, 154, 0.45), transparent);
  transform: rotate(-13deg);
  opacity: 0.7;
}

.about-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.about-copy p:not(.eyebrow) {
  color: #cbd7e5;
  font-size: 17px;
  line-height: 1.68;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-orbit-panel {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

#about-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-badge {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(72%, 360px);
  min-height: 190px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(6, 10, 16, 0.58);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%) perspective(900px) rotateX(calc(var(--pointer-y) * -5deg)) rotateY(calc(var(--pointer-x) * 7deg));
  backdrop-filter: blur(14px);
}

.about-founder-photo {
  position: absolute;
  z-index: 1;
  top: 8%;
  right: 3%;
  width: min(40%, 230px);
  margin: 0;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(216, 178, 255, 0.54);
  border-radius: 6px;
  background: #090d18;
  box-shadow: 14px 18px 44px rgba(0, 0, 0, 0.42), -5px -5px 24px rgba(0, 231, 255, 0.1);
  transform: perspective(900px) rotateY(-7deg) rotateZ(3deg);
}

.about-founder-photo::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.about-founder-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.about-founder-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 11px;
  left: 12px;
  color: #eff9ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-shadow: 0 2px 8px #000;
  text-transform: uppercase;
}

.about-badge span {
  color: #f9fbff;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(72px, 12vw, 136px);
  line-height: 0.84;
  text-shadow:
    calc(var(--pointer-x) * 10px) 0 rgba(0, 231, 255, 0.48),
    calc(var(--pointer-x) * -10px) 0 rgba(255, 46, 154, 0.48);
}

.about-badge b {
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-stats {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 10px;
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.about-stats article {
  min-height: 124px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.about-stats span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-stats p {
  margin: 0;
  color: #c6d5e4;
  font-size: 13px;
  line-height: 1.38;
}

.book-listen-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(330px, 1.06fr) minmax(360px, 1.12fr);
  align-items: start;
  gap: clamp(18px, 2.6vw, 34px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(105deg, rgba(9, 16, 32, 0.94), rgba(19, 11, 42, 0.84));
}

.book-listen-heading h2 {
  margin-bottom: 12px;
}

.book-listen-heading > p:not(.eyebrow) {
  max-width: 33ch;
  margin: 0 0 18px;
  color: #c9d7e9;
  font-size: 14px;
  line-height: 1.55;
}

.book-service-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin: 0 0 14px;
}

.book-service-rail span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 30px;
  padding: 5px;
  border: 1px solid rgba(155, 202, 255, 0.2);
  border-radius: 5px;
  color: #e9faff;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.book-service-rail svg {
  width: 13px;
  height: 13px;
  color: var(--cyan);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #baf7ff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: #fff;
}

.text-link svg {
  width: 15px;
  height: 15px;
}

.book-listen-rates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.book-listen-rates article {
  min-height: 138px;
  padding: 14px;
  border: 1px solid rgba(155, 202, 255, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
}

.book-listen-rates .rate {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-family: Anton, Impact, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.book-listen-rates h3 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 14px;
}

.book-listen-rates p {
  margin: 0;
  color: #becae2;
  font-size: 11px;
  line-height: 1.43;
}

.book-listen-mixes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.book-listen-mix-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.book-listen-mix-heading .eyebrow {
  margin: 0;
}

.compact-mix-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(179, 161, 255, 0.24);
  border-radius: 7px;
  background: rgba(4, 8, 20, 0.52);
}

.compact-mix-card > div {
  padding: 10px 12px 0;
}

.compact-mix-card p {
  margin: 0 0 3px;
  color: #a7eaff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compact-mix-card h3 {
  margin: 0;
  color: #fff;
  font-size: 13px;
}

.compact-mix-card iframe {
  display: block;
  width: 100%;
  height: 138px;
  margin-top: 8px;
  border: 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.service-list,
.rate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-list article,
.rate-grid article {
  position: relative;
  min-height: 190px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.service-list article::after,
.rate-grid article::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--lime));
  opacity: 0;
  transform: scaleX(0.42);
  transform-origin: left;
  transition: opacity 170ms ease, transform 170ms ease;
}

.service-list article:hover::after,
.rate-grid article:hover::after {
  opacity: 0.82;
  transform: scaleX(1);
}

.service-list svg {
  width: 28px;
  height: 28px;
  color: var(--cyan);
  margin-bottom: 22px;
}

.service-list p,
.rate-grid p,
.project-card span {
  color: var(--muted);
  line-height: 1.52;
}

.project-section {
  background: #dbe8f2;
  color: #091017;
}

.project-section .eyebrow,
.rates-section .eyebrow {
  color: #0b7282;
}

.project-section .section-heading p,
.project-card span {
  color: #38495a;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.project-card {
  grid-column: span 3;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(9, 16, 23, 0.18);
  border: 1px solid rgba(8, 18, 26, 0.1);
  transform: perspective(1100px) rotateX(0) rotateY(0);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.project-card:nth-child(n + 4) {
  grid-column: span 3;
  min-height: 286px;
}

.project-card.wedding-card {
  grid-column: span 3;
  min-height: 286px;
  border-color: rgba(185, 133, 38, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 251, 241, 0.98), rgba(248, 242, 226, 0.98));
}

.project-card.wedding-card p {
  color: #0b2a17;
}

.project-card.wedding-card h3 {
  color: #092515;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
}

.project-card.wedding-card .project-media {
  object-fit: cover;
  object-position: center;
  background: #fbf7ee;
}

.project-card:hover {
  transform: perspective(1100px) translateY(-5px) rotateX(1.2deg) rotateY(-1.4deg);
  box-shadow: 0 24px 64px rgba(9, 16, 23, 0.24);
}

.project-card img,
.project-card video,
.project-media {
  width: 100%;
  height: 155px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(8, 18, 26, 0.1);
}

.project-card:nth-child(n + 4) :is(img, video, .project-media),
.project-card:nth-child(n + 4) :is(.score-stack, .freeai-grid, .solar-orbit) {
  height: 132px;
  min-height: 132px;
}

.project-card.wedding-card .project-media {
  height: 132px;
  min-height: 132px;
}

.project-card video {
  background: #091017;
}

.project-card.loud .project-media {
  object-position: center 44%;
}

.project-card > div:last-child {
  padding: 16px;
}

.forbidden-fruit-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  min-height: 620px;
  overflow: hidden;
  background: #050710;
}

.forbidden-fruit-video,
.forbidden-fruit-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.forbidden-fruit-video {
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(1.08) contrast(1.06);
}

.forbidden-fruit-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 6, 18, 0.98) 0%, rgba(4, 6, 18, 0.84) 38%, rgba(4, 6, 18, 0.42) 100%),
    linear-gradient(180deg, rgba(118, 49, 255, 0.12), rgba(0, 0, 0, 0.52));
}

.forbidden-fruit-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.forbidden-fruit-copy .eyebrow {
  color: #cda5ff;
}

.forbidden-fruit-copy h2 {
  max-width: 560px;
}

.forbidden-fruit-copy p:not(.eyebrow) {
  color: #d0d9f0;
  font-size: 16px;
  line-height: 1.58;
}

.forbidden-fruit-launches {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.game-transition {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.game-transition-in {
  height: clamp(118px, 12vw, 158px);
  background: #07101a;
  border-top: 1px solid rgba(0, 231, 255, 0.16);
}

.game-transition-in::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #050710;
  transform: scaleX(var(--entry-progress, 0));
  transform-origin: left;
  box-shadow: 18px 0 38px rgba(255, 46, 154, 0.2);
}

.game-transition-in::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 22%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff2e9a 28%, #00e7ff 70%, transparent);
  box-shadow: 0 0 16px rgba(0, 231, 255, 0.64);
}

.scene-fighter-flyby {
  position: absolute;
  z-index: 4;
  left: 0;
  top: -22%;
  width: clamp(230px, 26vw, 360px);
  aspect-ratio: 45 / 32;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.scene-fighter-flyby img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 53, 203, 0.95)) drop-shadow(0 0 28px rgba(120, 226, 255, 0.78));
}

.scene-fighter-fx {
  position: absolute;
  z-index: 1;
  border: 2px solid rgba(255, 104, 222, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(255, 46, 154, 0.9), inset 0 0 18px rgba(0, 231, 255, 0.68);
}

.scene-fighter-fx-a {
  width: 34%;
  aspect-ratio: 1;
  right: 9%;
  top: 31%;
}

.scene-fighter-fx-b {
  width: 54%;
  height: 5px;
  right: 2%;
  top: 48%;
  border-width: 0 0 2px;
  border-radius: 100%;
  transform: rotate(-8deg);
}

.game-transition-in.is-active .scene-fighter-fx-a {
  animation: sceneFighterPulse 1.2s ease-in-out infinite;
}

.game-transition-in.is-active .scene-fighter-fx-b {
  animation: sceneFighterBeam 1.2s ease-out infinite;
}

@keyframes sceneFighterPulse {
  0%, 100% { opacity: 0.18; transform: scale(0.62); }
  50% { opacity: 1; transform: scale(1.28); }
}

@keyframes sceneFighterBeam {
  0%, 100% { opacity: 0.2; transform: rotate(-8deg) scaleX(0.24); transform-origin: right; }
  50% { opacity: 1; transform: rotate(-8deg) scaleX(1); transform-origin: right; }
}

.game-transition-streak {
  position: absolute;
  z-index: 2;
  left: -12%;
  width: 42%;
  height: 2px;
  opacity: 0.48;
  background: linear-gradient(90deg, transparent, #8be8ff);
  transform: translateX(calc(var(--entry-progress, 0) * 280%)) skewX(-22deg);
}

.game-transition-streak-a {
  top: 28%;
}

.game-transition-streak-b {
  top: 67%;
  width: 31%;
  background: linear-gradient(90deg, transparent, #b6ff3b);
}

.solar-skate-transit {
  position: relative;
  height: clamp(132px, 14vw, 184px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, #050710 0%, #07121a 74%, #09151b 100%);
  border-top: 1px solid rgba(0, 231, 255, 0.16);
  border-bottom: 1px solid rgba(182, 255, 59, 0.18);
}

.solar-skate-transit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(0, 231, 255, 0.07) 8.2%, transparent 8.5% 91%, rgba(255, 46, 154, 0.07) 91.2%, transparent 91.5%),
    repeating-linear-gradient(90deg, transparent 0 9vw, rgba(255, 255, 255, 0.035) 9vw calc(9vw + 1px));
  pointer-events: none;
}

.solar-skate-transit::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(5, 7, 16, 0.68);
  transform: scaleX(var(--skate-progress, 0));
  transform-origin: right;
  box-shadow: -18px 0 38px rgba(182, 255, 59, 0.12);
}

#solar-skater-canvas {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.solar-skate-rail {
  position: absolute;
  left: -3%;
  width: 106%;
  height: 5px;
  border-radius: 999px;
  transform: rotate(-1.2deg);
}

.solar-skate-rail-main {
  z-index: 2;
  bottom: 26%;
  background: linear-gradient(90deg, #8be8ff, #f5ffff 42%, #b6ff3b 75%, #00e7ff);
  box-shadow: 0 0 8px rgba(0, 231, 255, 0.8), 0 0 22px rgba(182, 255, 59, 0.34);
}

.solar-skate-rail-shadow {
  z-index: 1;
  bottom: calc(26% - 13px);
  height: 2px;
  opacity: 0.46;
  background: #ff2e9a;
  box-shadow: 0 0 14px rgba(255, 46, 154, 0.7);
}

.solar-skate-spark {
  position: absolute;
  z-index: 4;
  bottom: calc(26% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 10px #fff, 0 0 18px #b6ff3b;
}

.solar-skate-transit.is-active .solar-skate-spark-a {
  animation: solarSpark 920ms ease-out infinite;
}

.solar-skate-transit.is-active .solar-skate-spark-b {
  animation: solarSpark 920ms ease-out 460ms infinite;
}

@keyframes solarSpark {
  0% { left: calc(var(--skate-position, 1) * 100%); opacity: 0; transform: translate(0, 0) scale(0.4); }
  28% { opacity: 1; }
  100% { left: calc(var(--skate-position, 1) * 100%); opacity: 0; transform: translate(34px, -28px) scale(0); }
}

@media (max-width: 680px) {
  .game-transition-in {
    height: 112px;
  }

  .scene-fighter-flyby {
    top: -24%;
    width: clamp(164px, 48vw, 190px);
  }
}

.launch-card {
  position: relative;
  min-height: 258px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(180, 197, 255, 0.28);
  border-radius: 8px;
  background: rgba(8, 15, 34, 0.72);
  color: #f7f8ff;
  backdrop-filter: blur(12px);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.launch-card-media,
.launch-card-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.launch-card-media {
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(1.1) contrast(1.06);
  transition: opacity 170ms ease, transform 260ms ease;
}

.launch-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 22, 0.14) 0%, rgba(5, 10, 22, 0.58) 52%, rgba(5, 10, 22, 0.94) 100%);
  pointer-events: none;
}

.launch-card:hover .launch-card-media,
.launch-card:focus-visible .launch-card-media {
  opacity: 0.6;
  transform: scale(1.035);
}

.collision-circuit-card {
  border-color: rgba(69, 243, 255, 0.5);
  background: rgba(10, 8, 32, 0.8);
}

.collision-circuit-card .launch-card-media {
  object-position: center;
  opacity: 0.52;
  filter: saturate(1.2) contrast(1.12);
}

.collision-circuit-card::after {
  background:
    linear-gradient(115deg, rgba(36, 8, 74, 0.16), rgba(0, 202, 255, 0.14)),
    linear-gradient(180deg, rgba(5, 6, 20, 0.06) 0%, rgba(5, 6, 20, 0.58) 52%, rgba(5, 6, 20, 0.96) 100%);
}

.launch-card-art {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(24, 7, 54, 0.22), rgba(5, 25, 48, 0.82)),
    repeating-linear-gradient(120deg, transparent 0 24px, rgba(116, 236, 255, 0.12) 24px 26px, transparent 26px 54px);
}

.scene-fighter-art svg:first-child {
  width: 126px;
  height: 126px;
  color: #f7d2ff;
  filter: drop-shadow(0 0 20px rgba(220, 92, 255, 0.78));
  transform: rotate(-16deg);
}

.scene-fighter-art svg:last-child {
  position: absolute;
  top: 22%;
  right: 19%;
  width: 34px;
  height: 34px;
  color: #7aeaff;
  filter: drop-shadow(0 0 12px rgba(0, 231, 255, 0.9));
}

.launch-card::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -46px;
  bottom: -48px;
  border: 1px solid rgba(151, 119, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(69, 124, 255, 0.1), 0 0 0 36px rgba(217, 98, 255, 0.08);
  transform: rotateX(68deg) rotateZ(-20deg);
  z-index: 1;
}

.launch-card:hover,
.launch-card:focus-visible {
  border-color: #d9a8ff;
  background: rgba(21, 22, 63, 0.82);
  transform: translateY(-5px) perspective(900px) rotateX(1deg) rotateY(-1deg);
}

.launch-card-pending {
  cursor: default;
}

.launch-card-pending:hover {
  border-color: rgba(180, 197, 255, 0.28);
  background: rgba(8, 15, 34, 0.72);
  transform: none;
}

.launch-card span {
  position: relative;
  z-index: 2;
  color: #a9e7ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-card.is-live span {
  color: #b6ff9f;
}

.launch-card b {
  position: relative;
  z-index: 2;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 0.96;
}

.launch-card small {
  position: relative;
  z-index: 2;
  color: #c7d1ea;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.48;
}

.launch-card svg {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 20px;
  margin-top: auto;
  color: #d9a8ff;
}

.project-card p {
  margin-bottom: 10px;
  color: #0b7282;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.app-card {
  position: relative;
  background: #091017;
  color: var(--ink);
}

.app-card span {
  color: #b9c9d8;
}

.app-orbit,
.score-stack {
  min-height: 155px;
  display: grid;
  place-items: center;
  background:
    repeating-radial-gradient(circle at 50% 50%, rgba(0, 231, 255, 0.2), rgba(0, 231, 255, 0.2) 2px, transparent 3px, transparent 18px),
    linear-gradient(135deg, rgba(255, 46, 154, 0.24), rgba(0, 231, 255, 0.18));
}

.app-orbit::before {
  content: "";
  width: 94px;
  height: 94px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(0, 231, 255, 0.54), inset 0 0 30px rgba(255, 46, 154, 0.28);
  animation: pulse 2.2s ease-in-out infinite;
}

.score-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.score-stack b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 70px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--lime);
  font-size: 23px;
  transform: rotate(-4deg);
}

.score-stack b:nth-child(2) {
  color: var(--cyan);
  transform: translateY(-12px) rotate(5deg);
}

.score-stack b:nth-child(3) {
  color: var(--pink);
  transform: rotate(3deg);
}

.freeai-card {
  background:
    radial-gradient(circle at 20% 18%, rgba(0, 231, 255, 0.18), transparent 32%),
    radial-gradient(circle at 82% 22%, rgba(255, 46, 154, 0.18), transparent 30%),
    #081017;
}

.freeai-grid {
  position: relative;
  min-height: 155px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 231, 255, 0.2), rgba(255, 46, 154, 0.12)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px);
}

.freeai-grid b {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 18px;
  background: rgba(6, 10, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 38px rgba(0, 231, 255, 0.4);
  color: var(--lime);
  font-size: 30px;
  font-weight: 900;
}

.freeai-grid i {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(0, 231, 255, 0.5);
  border-radius: 22px;
  transform: rotate(18deg);
  animation: freeaiFloat 4s ease-in-out infinite;
}

.freeai-grid i:nth-child(2) { left: 18%; top: 18%; border-color: rgba(255, 46, 154, 0.56); }
.freeai-grid i:nth-child(3) { right: 18%; top: 24%; animation-delay: -0.8s; }
.freeai-grid i:nth-child(4) { left: 24%; bottom: 18%; border-color: rgba(182, 255, 59, 0.48); animation-delay: -1.6s; }
.freeai-grid i:nth-child(5) { right: 22%; bottom: 16%; border-color: rgba(255, 179, 71, 0.54); animation-delay: -2.4s; }

.solar-card {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 224, 102, 0.22), transparent 18%),
    radial-gradient(circle at 18% 24%, rgba(0, 231, 255, 0.18), transparent 30%),
    radial-gradient(circle at 82% 68%, rgba(255, 46, 154, 0.18), transparent 32%),
    #080914;
}

.solar-orbit {
  position: relative;
  min-height: 155px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 224, 102, 0.9) 0 13px, transparent 14px),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 24px, rgba(174, 243, 255, 0.28) 25px 27px),
    linear-gradient(135deg, rgba(20, 16, 60, 0.95), rgba(6, 10, 22, 0.95));
}

.solar-orbit b {
  position: relative;
  z-index: 2;
  padding: 10px 13px;
  border-radius: 8px;
  background: rgba(4, 3, 10, 0.72);
  border: 1px solid rgba(174, 243, 255, 0.32);
  color: #dffaff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 0 28px rgba(90, 220, 255, 0.22);
}

.solar-orbit i,
.solar-mini i {
  position: absolute;
  border-radius: 999px;
  border: 2px solid rgba(174, 243, 255, 0.42);
  transform: rotate(-18deg);
  animation: solarDrift 5s linear infinite;
}

.solar-orbit i:nth-child(2) { width: 132px; height: 52px; border-color: rgba(0, 231, 255, 0.54); }
.solar-orbit i:nth-child(3) { width: 190px; height: 78px; border-color: rgba(255, 46, 154, 0.44); animation-delay: -1.8s; }
.solar-orbit i:nth-child(4) { width: 250px; height: 104px; border-color: rgba(182, 255, 59, 0.34); animation-delay: -3.1s; }

.solar-mini {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 224, 102, 0.82) 0 22px, transparent 23px),
    radial-gradient(circle at 25% 20%, rgba(0, 231, 255, 0.16), transparent 36%),
    radial-gradient(circle at 80% 72%, rgba(255, 46, 154, 0.16), transparent 34%),
    #070814;
}

.solar-mini b {
  position: relative;
  z-index: 2;
  color: #f4fbff;
  font-family: Anton, Impact, sans-serif;
  font-size: 34px;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(90, 220, 255, 0.45);
}

.solar-mini i:nth-child(2) { width: 210px; height: 82px; border-color: rgba(0, 231, 255, 0.48); }
.solar-mini i:nth-child(3) { width: 300px; height: 126px; border-color: rgba(255, 46, 154, 0.42); animation-delay: -2.2s; }

@keyframes solarDrift {
  to { transform: rotate(342deg); }
}

@keyframes freeaiFloat {
  50% { transform: translateY(-8px) rotate(31deg) scale(1.06); }
}

@keyframes pulse {
  50% { transform: scale(1.08) rotate(12deg); }
}

.rates-section {
  background: #f7fbff;
  color: #08121b;
}

.section-heading.compact {
  max-width: 780px;
}

.rate-grid {
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rate-grid article {
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(8, 18, 27, 0.08);
}

.rate {
  display: block;
  margin-bottom: 22px;
  font-family: Anton, Impact, sans-serif;
  font-size: 48px;
  line-height: 1;
  color: #d31767;
}

.rate-note {
  margin: 26px 0 0;
  max-width: 820px;
  color: #435365;
}

.mixes-section {
  background: #0d131c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mixes-section .section-heading p {
  color: #bfd0e2;
}

.mix-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.mix-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mix-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 46px 18px;
  height: 42px;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(0, 231, 255, 0.7) 24%, transparent 24%) 0 100% / 10px 100%,
    linear-gradient(to top, rgba(255, 46, 154, 0.7) 56%, transparent 56%) 16px 100% / 10px 100%,
    linear-gradient(to top, rgba(182, 255, 59, 0.7) 38%, transparent 38%) 32px 100% / 10px 100%;
  background-repeat: repeat-x;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mix-card:hover::before {
  opacity: 0.58;
  transform: translateY(0);
  animation: equalizerDrift 680ms steps(4) infinite;
}

.mix-card.feature {
  background:
    linear-gradient(135deg, rgba(0, 231, 255, 0.16), rgba(255, 46, 154, 0.12)),
    rgba(255, 255, 255, 0.075);
}

.mix-card > div {
  padding: 18px 18px 0;
}

.mix-card p {
  margin-bottom: 9px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mix-card h3 {
  min-height: 52px;
  margin-bottom: 16px;
}

.mix-card iframe {
  width: 100%;
  height: 300px;
  flex: 1;
  border: 0;
}

.mix-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #dffaff;
  font-weight: 900;
}

.soundcloud-button {
  width: fit-content;
  margin-top: 20px;
}

.live-media-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14, 21, 31, 0.96), rgba(8, 13, 20, 0.98)),
    #0b1018;
  border-bottom: 1px solid var(--line);
}

#media-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.54;
  pointer-events: none;
  mix-blend-mode: screen;
}

.live-media-section .section-heading,
.live-media-grid {
  position: relative;
  z-index: 2;
}

.live-media-section .section-heading p {
  color: #bfd0e2;
}

.live-media-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
  margin-top: 28px;
}

.live-media-card {
  position: relative;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  background: #101823;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 170ms ease, border-color 170ms ease;
}

.live-media-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-5px);
  border-color: rgba(0, 231, 255, 0.44);
}

.live-media-card.feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 472px;
}

.live-media-card img,
.live-media-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 220ms ease;
}

.live-media-card:hover img,
.live-media-card:hover video {
  transform: scale(1.04);
}

.live-media-card.feature img,
.live-media-card.feature video {
  image-rendering: auto;
  object-fit: cover;
}

.live-media-card video {
  object-fit: cover;
}

.live-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 16, 0) 0%, rgba(7, 10, 16, 0.18) 46%, rgba(7, 10, 16, 0.88) 100%),
    linear-gradient(135deg, rgba(0, 231, 255, 0.06), rgba(255, 46, 154, 0.08));
}

.live-media-card > div {
  position: relative;
  z-index: 2;
  padding: 16px;
}

.live-media-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-media-card h3 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.08;
}

.live-media-card p {
  max-width: 560px;
  margin: 9px 0 0;
  color: #d6e6f4;
  font-size: 13px;
  line-height: 1.45;
}

.solar-portal-card {
  cursor: default;
}

.portal-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.portal-link-list a {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2fbff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-link-list a:hover,
.portal-link-list a:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--path-accent, var(--cyan)) 68%, white 12%);
  background: color-mix(in srgb, var(--path-accent, var(--cyan)) 22%, transparent);
  color: #ffffff;
}

.proof-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(8, 13, 20, 0.96), rgba(14, 22, 31, 0.82)),
    #0b1119;
}

#proof-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.48;
  pointer-events: none;
  mix-blend-mode: screen;
}

.proof-copy,
.career-proof {
  position: relative;
  z-index: 2;
}

.proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.proof-links a {
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--ink);
  font-weight: 800;
}

.career-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.proof-card {
  min-height: 156px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  transform: translate3d(var(--pointer-x-10), var(--pointer-y-neg-8), 0);
}

.proof-card:nth-child(3n + 2) {
  transform: translate3d(var(--pointer-x-neg-26), var(--pointer-y-neg-12), 0);
}

.proof-card:nth-child(3n) {
  transform: translate3d(var(--pointer-x-18), var(--pointer-y-18), 0);
}

.proof-card.feature {
  background:
    linear-gradient(135deg, rgba(0, 231, 255, 0.18), rgba(255, 46, 154, 0.14)),
    rgba(255, 255, 255, 0.08);
}

.proof-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-card h3 {
  font-size: 15px;
  line-height: 1.12;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.past-rooms-card {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 179, 71, 0.16), rgba(255, 46, 154, 0.1) 48%, rgba(0, 231, 255, 0.1)),
    rgba(255, 255, 255, 0.07);
}

.venue-logo-collage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 4px 0 9px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(5, 8, 13, 0.9), rgba(17, 23, 33, 0.72));
  transform: perspective(460px) rotateX(calc(var(--pointer-y) * -1.4deg)) rotateY(calc(var(--pointer-x) * 1.8deg));
}

.venue-logo-card,
.venue-history-count {
  display: grid;
  min-height: 70px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: #0b1118;
}

.venue-logo-card img {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
}

.waterland-logo-card { background: #222; }
.airport-logo-card { background: linear-gradient(145deg, #0f2025, #132a32); }
.pono-logo-card { background: #f4efe6; }

.venue-history-count {
  align-content: center;
  gap: 2px;
  padding: 6px;
  background: linear-gradient(145deg, rgba(255, 183, 77, 0.24), rgba(255, 46, 154, 0.25));
  color: #fff;
  text-align: center;
}

.venue-history-count b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  line-height: 1;
}

.venue-history-count span {
  max-width: 58px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 7px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .venue-logo-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venue-logo-card,
  .venue-history-count {
    min-height: 92px;
  }
}

.proof-card.video-proof-card {
  min-height: 260px;
  padding: 10px;
}

.proof-card.video-proof-card h3 {
  min-height: 34px;
}

.proof-card.video-proof-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: #05080d;
}

.venue-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.venue-strip span {
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(0, 231, 255, 0.1);
  border: 1px solid rgba(0, 231, 255, 0.24);
  color: #dffaff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
}

.deck-section {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.68fr);
  align-items: center;
  gap: clamp(22px, 5vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 10, 16, 0.95), rgba(7, 10, 16, 0.42)),
    #091017;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deck-section::after {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  bottom: 42px;
  height: 50px;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(0, 231, 255, 0.72) 46%, transparent 46%) 0 100% / 18px 100%,
    linear-gradient(to top, rgba(255, 46, 154, 0.72) 70%, transparent 70%) 28px 100% / 18px 100%,
    linear-gradient(to top, rgba(182, 255, 59, 0.72) 34%, transparent 34%) 56px 100% / 18px 100%;
  background-repeat: repeat-x;
  opacity: 0.28;
  mix-blend-mode: screen;
  animation: equalizerDrift 920ms steps(5) infinite;
}

#deck-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.deck-copy,
.deck-readout {
  position: relative;
  z-index: 2;
}

.deck-copy {
  max-width: 720px;
}

.deck-copy p {
  color: #c7d8e8;
  font-size: 16px;
  line-height: 1.62;
}

.deck-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.brief-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  max-width: 650px;
}

.brief-option {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  min-height: 48px;
  padding: 12px 13px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.075);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.brief-option svg {
  width: 18px;
  height: 18px;
  color: var(--path-accent);
}

.brief-option:hover,
.brief-option:focus-visible,
.brief-option.is-active {
  outline: none;
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--path-accent) 62%, white 12%);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--path-accent) 22%, transparent), color-mix(in srgb, var(--path-accent-2) 16%, transparent)),
    rgba(255, 255, 255, 0.08);
}

.deck-readout {
  display: grid;
  gap: 12px;
  width: min(100%, 470px);
  justify-self: end;
}

.deck-readout.brief-output {
  width: min(100%, 520px);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--path-accent) 38%, rgba(255, 255, 255, 0.16));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--path-accent) 16%, transparent), color-mix(in srgb, var(--path-accent-2) 12%, transparent)),
    rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.deck-readout > span {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  min-height: 78px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.deck-readout > span b {
  color: var(--lime);
  font-size: 13px;
}

.deck-readout > span small {
  grid-column: 2;
  color: #bfd0e2;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

.deck-readout > span::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  box-shadow: 0 0 18px rgba(0, 231, 255, 0.42);
  opacity: 0.65;
}

.deck-readout.brief-output .brief-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 0;
  margin-bottom: 4px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid color-mix(in srgb, var(--path-accent) 36%, transparent);
  color: var(--path-accent);
  box-shadow: none;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: none;
}

.deck-readout.brief-output .brief-kicker::after {
  display: none;
}

.brief-output h3 {
  margin-bottom: 6px;
  font-size: clamp(26px, 3vw, 40px);
}

.brief-output p {
  margin-bottom: 10px;
  color: #d8e8f7;
  font-size: 15px;
  line-height: 1.5;
}

#booking-brief-output {
  width: 100%;
  min-height: 156px;
  resize: vertical;
  padding: 13px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 9, 15, 0.78);
  color: #eff9ff;
  font: 700 13px/1.45 Inter, system-ui, sans-serif;
  outline: none;
}

#booking-brief-output:focus {
  border-color: color-mix(in srgb, var(--path-accent) 58%, white 10%);
}

.brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.76fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
  min-height: 640px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(7, 10, 16, 0.92), rgba(18, 26, 38, 0.68)),
    #0a1017;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  pointer-events: none;
  background:
    linear-gradient(to right, transparent, rgba(182, 255, 59, 0.2), transparent),
    repeating-linear-gradient(90deg, rgba(0, 231, 255, 0.22) 0 2px, transparent 2px 28px);
  opacity: 0.42;
}

#support-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.support-copy,
.support-grid {
  position: relative;
  z-index: 2;
}

.support-copy {
  max-width: 760px;
}

.support-copy p {
  color: #c7d8e8;
  font-size: 16px;
  line-height: 1.65;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.support-grid {
  display: grid;
  gap: 12px;
}

.support-grid article {
  position: relative;
  padding: 16px 16px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  transform: translate3d(var(--pointer-x-10), var(--pointer-y-neg-8), 0);
}

.support-grid article:nth-child(2) {
  transform: translate3d(var(--pointer-x-neg-26), var(--pointer-y-neg-12), 0);
}

.support-grid article:nth-child(3) {
  transform: translate3d(var(--pointer-x-18), var(--pointer-y-18), 0);
}

.support-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(182, 255, 59, 0.14);
  border: 1px solid rgba(182, 255, 59, 0.38);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.support-grid h3 {
  margin: 13px 0 8px;
  font-size: 17px;
  text-transform: uppercase;
}

.support-grid p {
  margin: 0;
  color: #bfd0e2;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 231, 255, 0.16), rgba(255, 46, 154, 0.12)),
    #121a26;
  border-top: 1px solid var(--line);
}

.contact-actions {
  justify-content: flex-end;
  min-width: 320px;
}

.wedding-page {
  --wedding-ink: #082313;
  --wedding-muted: #65715f;
  --wedding-cream: #fbf7ee;
  --wedding-paper: #fffdf8;
  --wedding-gold: #b98526;
  --wedding-sage: #9fb39a;
  --wedding-line: rgba(185, 133, 38, 0.34);
  background:
    radial-gradient(circle at 12% 14%, rgba(159, 179, 154, 0.28), transparent 26%),
    radial-gradient(circle at 88% 22%, rgba(185, 133, 38, 0.16), transparent 24%),
    linear-gradient(180deg, #fffdf8, #f8f0df 62%, #fffaf0);
  color: var(--wedding-ink);
  font-family: Inter, system-ui, sans-serif;
}

.wedding-page::before,
.wedding-page::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  width: min(32vw, 360px);
  aspect-ratio: 1;
  opacity: 0.24;
  background:
    radial-gradient(ellipse at 42% 36%, rgba(255, 255, 255, 0.7) 0 12%, transparent 13%),
    radial-gradient(ellipse at 38% 48%, rgba(159, 179, 154, 0.72) 0 5%, transparent 6%),
    radial-gradient(ellipse at 52% 42%, rgba(159, 179, 154, 0.58) 0 6%, transparent 7%),
    radial-gradient(ellipse at 60% 56%, rgba(159, 179, 154, 0.52) 0 5%, transparent 6%);
  filter: blur(0.2px);
}

.wedding-page::before {
  left: -7vw;
  top: 16vh;
  transform: rotate(-18deg);
}

.wedding-page::after {
  right: -8vw;
  bottom: 6vh;
  transform: rotate(162deg);
}

.wedding-page main,
.wedding-topbar {
  position: relative;
  z-index: 1;
}

.wedding-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(255, 253, 248, 0.82);
  border-bottom: 1px solid var(--wedding-line);
  backdrop-filter: blur(16px);
}

.wedding-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--wedding-ink);
}

.wedding-brand span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--wedding-gold);
  border-radius: 999px;
  color: var(--wedding-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}

.wedding-brand b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.wedding-topbar nav a {
  color: var(--wedding-ink);
  border-radius: 8px;
}

.wedding-topbar nav a:hover {
  background: rgba(185, 133, 38, 0.11);
}

.wedding-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: 780px;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.wedding-hero::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 36px);
  border: 2px solid var(--wedding-gold);
  border-radius: 28px 6px 28px 6px;
  pointer-events: none;
  opacity: 0.84;
}

.wedding-hero::after {
  content: "";
  position: absolute;
  inset: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(185, 133, 38, 0.44);
  border-radius: 22px 4px 22px 4px;
  pointer-events: none;
}

.wedding-ornament {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.wedding-ornament span {
  position: absolute;
  width: 260px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--wedding-gold), transparent);
  opacity: 0.58;
}

.wedding-ornament span:nth-child(1) {
  left: 50%;
  top: 17%;
  transform: translateX(-50%);
}

.wedding-ornament span:nth-child(2) {
  left: 8%;
  bottom: 22%;
  transform: rotate(90deg);
}

.wedding-ornament span:nth-child(3) {
  right: 8%;
  bottom: 22%;
  transform: rotate(90deg);
}

.wedding-hero-copy,
.wedding-card-preview {
  position: relative;
  z-index: 1;
}

.wedding-eyebrow {
  margin: 0 0 15px;
  color: var(--wedding-ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.wedding-hero h1 {
  max-width: 980px;
  margin: 0 0 12px;
  color: var(--wedding-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 8.5vw, 132px);
  font-weight: 700;
  line-height: 0.88;
  text-shadow: none;
}

.wedding-script {
  margin: 12px 0 18px;
  color: var(--wedding-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 58px);
  font-style: italic;
  line-height: 1;
}

.wedding-lede {
  max-width: 760px;
  color: #40513f;
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.55;
}

.wedding-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.wedding-primary {
  background: linear-gradient(135deg, #0b351d, #b98526);
  color: #fffdf8;
  border-color: transparent;
}

.wedding-ghost {
  background: rgba(255, 253, 248, 0.78);
  color: var(--wedding-ink);
  border-color: var(--wedding-line);
}

.wedding-card-preview {
  padding: 12px;
  border: 1px solid var(--wedding-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 28px 80px rgba(77, 53, 19, 0.14);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.wedding-card-preview img {
  width: 100%;
  border-radius: 6px;
}

.wedding-section {
  position: relative;
  z-index: 1;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.wedding-section h2 {
  max-width: 880px;
  color: var(--wedding-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 700;
  line-height: 0.96;
}

.wedding-section p {
  max-width: 820px;
  color: var(--wedding-muted);
  font-size: 16px;
  line-height: 1.7;
}

.wedding-proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
}

.wedding-proof-band article,
.wedding-package-grid article,
.wedding-steps li,
.wedding-contact-card {
  border: 1px solid var(--wedding-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 52px rgba(77, 53, 19, 0.08);
}

.wedding-proof-band article {
  min-height: 170px;
  padding: 22px;
}

.wedding-proof-band span,
.wedding-package-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--wedding-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wedding-proof-band p {
  margin: 0;
  color: #40513f;
  font-weight: 700;
}

.wedding-packages {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: rgba(255, 253, 248, 0.58);
  border-top: 1px solid rgba(185, 133, 38, 0.18);
  border-bottom: 1px solid rgba(185, 133, 38, 0.18);
}

.wedding-package-grid {
  display: grid;
  gap: 14px;
}

.wedding-package-grid article {
  padding: 22px;
}

.wedding-package-grid h3 {
  margin: 0 0 10px;
  color: var(--wedding-ink);
  font-family: Anton, Impact, sans-serif;
  font-size: 44px;
  line-height: 1;
}

.wedding-package-grid p {
  margin: 0;
  color: #536350;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.wedding-package-grid ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.wedding-package-grid li {
  position: relative;
  padding-left: 18px;
  color: #374834;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.wedding-package-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--wedding-gold);
  box-shadow: 0 0 0 3px rgba(185, 133, 38, 0.14);
}

.wedding-addon-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(11, 53, 29, 0.94), rgba(24, 73, 42, 0.9)),
    radial-gradient(circle at 18% 12%, rgba(219, 167, 61, 0.35), transparent 34%);
  color: #fffdf8;
}

.wedding-addon-band .wedding-eyebrow,
.wedding-addon-band h2,
.wedding-addon-band p {
  color: inherit;
}

.wedding-addon-band article {
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  background: rgba(255, 253, 248, 0.1);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.wedding-addon-band article span,
.wedding-party-grid span {
  color: var(--wedding-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wedding-addon-band article h3 {
  margin: 10px 0;
  color: #fffdf8;
  font-family: Anton, Impact, sans-serif;
  font-size: 50px;
  line-height: 1;
}

.wedding-addon-band article p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.wedding-party-packages {
  display: grid;
  gap: 24px;
  background: #fbf6ec;
}

.wedding-party-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wedding-party-grid article {
  padding: 20px;
  border: 1px solid rgba(185, 133, 38, 0.22);
  background: rgba(255, 253, 248, 0.8);
}

.wedding-party-grid h3 {
  margin: 10px 0;
  color: var(--wedding-ink);
  font-family: Anton, Impact, sans-serif;
  font-size: 36px;
  line-height: 1;
}

.wedding-party-grid p {
  margin: 0;
  color: #465642;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.wedding-planning {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.86fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.wedding-steps {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: wedding-step;
}

.wedding-steps li {
  counter-increment: wedding-step;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 8px 16px;
  align-items: start;
  padding: 18px;
}

.wedding-steps li::before {
  content: counter(wedding-step, decimal-leading-zero);
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #0b351d;
  color: #fffdf8;
  font-size: 12px;
  font-weight: 900;
}

.wedding-steps b {
  color: var(--wedding-ink);
  font-size: 16px;
  text-transform: uppercase;
}

.wedding-steps span {
  color: var(--wedding-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.wedding-media-placeholder {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(11, 53, 29, 0.94), rgba(34, 70, 42, 0.88)),
    #0b351d;
  color: #fffdf8;
}

.wedding-media-placeholder .wedding-eyebrow,
.wedding-media-placeholder h2 {
  color: #fffdf8;
}

.wedding-media-placeholder p {
  color: rgba(255, 253, 248, 0.76);
}

.wedding-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wedding-placeholder-grid span {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 20px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(185, 133, 38, 0.24), rgba(255, 253, 248, 0.08)),
    rgba(255, 255, 255, 0.06);
  color: #fffdf8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.wedding-video-proof {
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
}

.wedding-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wedding-video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(185, 133, 38, 0.24), rgba(255, 253, 248, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
}

.wedding-video-card iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #07150d;
}

.wedding-video-card .youtube-fallback {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #07150d;
}

.wedding-video-card .youtube-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transform: scale(1.01);
}

.wedding-video-card .youtube-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 253, 248, 0.2), transparent 24%),
    linear-gradient(180deg, transparent 38%, rgba(7, 21, 13, 0.86));
}

.wedding-video-card .youtube-fallback > span {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fffdf8, #f4d28f);
  color: #082313;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wedding-video-card .youtube-fallback svg {
  width: 16px;
  height: 16px;
}

.wedding-video-card:first-child iframe {
  aspect-ratio: 16 / 9;
}

.wedding-video-card > div {
  padding: 14px;
}

.wedding-video-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #f4d28f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wedding-video-card h3 {
  margin-bottom: 8px;
  color: #fffdf8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.wedding-video-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.wedding-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.wedding-contact-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.wedding-contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(11, 53, 29, 0.06);
  color: var(--wedding-ink);
  font-weight: 900;
}

.wedding-contact-card svg {
  width: 18px;
  height: 18px;
  color: var(--wedding-gold);
}

@keyframes equalizerDrift {
  50% { filter: hue-rotate(34deg) saturate(1.28); transform: translateY(-2px); }
}

@media (min-width: 981px) {
  .topbar {
    gap: 18px;
    padding: 10px clamp(18px, 3.2vw, 42px);
  }

  .brand {
    gap: 8px;
    min-width: 126px;
  }

  .brand-mark {
    font-size: 24px;
  }

  .brand-sub {
    font-size: 10px;
  }

  nav a {
    padding: 7px 9px;
    font-size: 12px;
  }

  .hero {
    min-height: 68vh;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: clamp(18px, 3vw, 34px);
    padding: 78px clamp(18px, 3.2vw, 42px) 38px;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-reactor {
    right: clamp(300px, 28vw, 460px);
    top: clamp(82px, 12vh, 126px);
    width: clamp(190px, 16vw, 238px);
  }

  .reactor-logo {
    gap: 5px;
    padding: 12px;
  }

  .reactor-logo span {
    font-size: clamp(46px, 4.8vw, 72px);
  }

  .reactor-logo b {
    font-size: 9px;
  }

  .reactor-controls {
    height: 34px;
  }

  .reactor-chip {
    min-height: 29px;
    padding: 6px 4px;
    font-size: 8px;
  }

  h1 {
    margin-bottom: 10px;
    font-size: clamp(58px, 9.2vw, 132px);
  }

  h2 {
    margin-bottom: 14px;
    font-size: clamp(25px, 3vw, 42px);
  }

  h3 {
    margin-bottom: 9px;
    font-size: 17px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .hero-lede {
    max-width: 560px;
    font-size: clamp(15px, 1.45vw, 19px);
  }

  .hero-actions,
  .contact-actions,
  .about-actions,
  .deck-actions,
  .support-actions {
    gap: 9px;
    margin-top: 18px;
  }

  .button {
    min-height: 39px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .button svg {
    width: 16px;
    height: 16px;
  }

  .hero-panel {
    gap: 9px;
  }

  .hero-panel div {
    padding: 13px;
  }

  .hero-panel span {
    font-size: 32px;
  }

  .hero-panel p {
    font-size: 13px;
    line-height: 1.25;
  }

  .mode-controls {
    margin-top: 24px;
  }

  .mode-card {
    min-height: 50px;
    padding: 10px 12px;
  }

  .mode-router {
    min-height: 284px;
    padding: clamp(18px, 3vw, 30px);
  }

  .mode-title {
    max-width: 640px;
    font-size: clamp(26px, 4vw, 50px);
  }

  .mode-copy {
    max-width: 620px;
    font-size: 15px;
    line-height: 1.46;
  }

  .section {
    padding: clamp(36px, 5vw, 64px) clamp(18px, 3.2vw, 42px);
  }

  .section-copy p,
  .section-heading p,
  .proof-copy p,
  .contact-section p,
  .rate-note,
  .deck-copy p,
  .support-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .about-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.95fr);
    gap: clamp(22px, 4.4vw, 54px);
  }

  .brand-house-grid {
    grid-template-columns: repeat(7, minmax(120px, 1fr));
  }

  .brand-house-grid a {
    min-height: 146px;
    padding: 12px;
  }

  .brand-house-grid b {
    font-size: 12px;
  }

  .brand-house-grid small {
    font-size: 10px;
  }

  .about-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.54;
  }

  .about-orbit-panel {
    min-height: 420px;
  }

  .about-badge {
    width: min(70%, 300px);
    min-height: 148px;
    padding: 20px;
  }

  .about-badge span {
    font-size: clamp(56px, 8vw, 98px);
  }

  .about-badge b {
    font-size: 10px;
  }

  .about-stats {
    width: min(100%, 430px);
  }

  .about-stats article {
    min-height: 98px;
    padding: 12px;
  }

  .about-stats span {
    margin-bottom: 7px;
    font-size: 15px;
  }

  .about-stats p {
    font-size: 11px;
  }

  .booking-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.05fr);
    gap: clamp(22px, 4.4vw, 54px);
  }

  .service-list,
  .rate-grid {
    gap: 10px;
  }

  .service-list article,
  .rate-grid article {
    min-height: 148px;
    padding: 16px;
  }

  .service-list svg {
    width: 23px;
    height: 23px;
    margin-bottom: 14px;
  }

  .project-grid {
    gap: 11px;
    margin-top: 26px;
  }

  .project-card {
    min-height: 264px;
  }

  .project-card:nth-child(n + 4) {
    min-height: 232px;
  }

  .project-card.wedding-card {
    min-height: 264px;
  }

  .project-card img,
  .project-card video,
  .project-media,
  .app-orbit,
  .score-stack,
  .freeai-grid,
  .solar-orbit {
    height: 126px;
    min-height: 126px;
  }

  .project-card:nth-child(n + 4) :is(img, video, .project-media),
  .project-card:nth-child(n + 4) :is(.score-stack, .freeai-grid, .solar-orbit) {
    height: 106px;
    min-height: 106px;
  }

  .project-card.wedding-card .project-media {
    height: 126px;
    min-height: 126px;
  }

  .project-card > div:last-child {
    padding: 12px;
  }

  .project-card p,
  .project-card span {
    font-size: 11px;
    line-height: 1.38;
  }

  .score-stack b {
    width: 46px;
    height: 56px;
    font-size: 18px;
  }

  .freeai-grid b {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .rate-grid {
    margin-top: 24px;
  }

  .rate {
    margin-bottom: 14px;
    font-size: 36px;
  }

  .rate-note {
    margin-top: 18px;
  }

  .mix-grid {
    gap: 11px;
    margin-top: 24px;
  }

  .mix-card {
    min-height: 338px;
  }

  .mix-card > div {
    padding: 13px 13px 0;
  }

  .mix-card h3 {
    min-height: 42px;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .mix-card iframe {
    height: 232px;
  }

  .live-media-grid {
    gap: 10px;
    margin-top: 22px;
  }

  .live-media-card {
    min-height: 184px;
  }

  .live-media-card.feature {
    min-height: 382px;
  }

  .live-media-card > div {
    padding: 12px;
  }

  .live-media-card h3 {
    font-size: 15px;
  }

  .live-media-card p {
    font-size: 12px;
  }

  .proof-section {
    grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(20px, 3.8vw, 42px);
  }

  .career-proof {
    gap: 8px;
  }

  .proof-card {
    min-height: 122px;
    padding: 11px;
  }

  .proof-card h3 {
    font-size: 13px;
  }

  .proof-card p {
    font-size: 11px;
    line-height: 1.34;
  }

  .venue-strip {
    margin-top: 16px;
    padding-top: 12px;
  }

  .venue-strip span {
    padding: 5px 7px;
    font-size: 9px;
  }

  .deck-section {
    min-height: 520px;
    grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.62fr);
    gap: clamp(18px, 3.8vw, 42px);
  }

  .forbidden-fruit-section {
    min-height: 520px;
  }

  .launch-card {
    min-height: 210px;
    padding: 14px;
  }

  .launch-card small {
    font-size: 11px;
  }

  .brief-options {
    gap: 8px;
    margin-top: 18px;
    max-width: 560px;
  }

  .brief-option {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 10px;
  }

  .deck-readout {
    width: min(100%, 400px);
  }

  .deck-readout.brief-output {
    width: min(100%, 440px);
    padding: 15px;
  }

  .deck-readout > span {
    min-height: 62px;
    padding: 11px 13px;
    font-size: 12px;
  }

  .brief-output h3 {
    font-size: clamp(22px, 2.4vw, 32px);
  }

  .brief-output p {
    font-size: 13px;
  }

  #booking-brief-output {
    min-height: 120px;
    font-size: 12px;
  }

  .support-section {
    min-height: 500px;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
    gap: clamp(18px, 3.8vw, 42px);
  }

  .support-grid {
    gap: 9px;
  }

  .support-grid article {
    padding: 12px;
  }

  .support-grid span {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .support-grid h3 {
    margin: 10px 0 6px;
    font-size: 14px;
  }

  .support-grid p {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .game-transition-in,
  .solar-skate-transit {
    display: none;
  }
}

.freeai-card .freeai-logo-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  background:
    radial-gradient(circle at 48% 45%, rgba(91, 219, 255, 0.16), transparent 38%),
    linear-gradient(135deg, #111827, #070b12 72%);
}

.project-card.freeai-card .freeai-logo-media > img {
  width: 54px;
  height: 54px;
  min-height: 54px;
  max-height: 54px;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 0 14px rgba(91, 219, 255, 0.42));
}

.freeai-card .freeai-logo-media span {
  color: #f4f8ff;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
}


.wedding-overview,
.wedding-services {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.86fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: rgba(255, 253, 248, 0.48);
  border-top: 1px solid rgba(185, 133, 38, 0.16);
}

.wedding-stat-grid,
.wedding-service-columns {
  display: grid;
  gap: 12px;
}

.wedding-stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wedding-stat-grid article,
.wedding-service-columns article {
  padding: 20px;
  border: 1px solid var(--wedding-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 52px rgba(77, 53, 19, 0.08);
}

.wedding-stat-grid b {
  display: block;
  color: var(--wedding-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
}

.wedding-stat-grid span {
  display: block;
  margin-top: 8px;
  color: var(--wedding-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wedding-service-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
}

.wedding-service-columns h3 {
  color: var(--wedding-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.wedding-service-columns p {
  margin: 0;
  color: #536350;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.58;
}
@media (max-width: 980px) {
  .topbar {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero,
  .brand-house-section,
  .about-section,
  .mode-router,
  .booking-grid,
  .book-listen-section,
  .proof-section,
  .deck-section,
  .support-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .career-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 850px;
    padding-top: 96px;
  }

  .hero-reactor {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 320px);
    justify-self: start;
    margin: 12px 0 6px;
    order: 2;
  }

  .hero-content {
    order: 1;
  }

  .hero-panel {
    max-width: 520px;
    order: 3;
  }

  .about-orbit-panel {
    min-height: 460px;
  }

  .book-listen-section {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.2fr);
  }

  .book-listen-mixes {
    grid-column: 1 / -1;
  }

  .mode-router {
    grid-template-columns: 1fr;
  }

  .brand-house-mark {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    width: min(100%, 320px);
    min-height: 190px;
  }

  .brand-house-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-house-grid a {
    min-height: 142px;
  }

  .mode-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .forbidden-fruit-section {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 760px;
  }

  .forbidden-fruit-launches {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-card {
    grid-column: auto;
    min-height: 300px;
  }

  .project-card:nth-child(n + 4) {
    grid-column: auto;
    min-height: 300px;
  }

  .project-card.wedding-card {
    grid-column: auto;
    min-height: 300px;
  }

  .project-card:nth-child(n + 4) :is(img, video, .project-media),
  .project-card:nth-child(n + 4) :is(.score-stack, .freeai-grid, .solar-orbit) {
    height: 155px;
    min-height: 155px;
  }

  .project-card.wedding-card .project-media {
    height: 155px;
    min-height: 155px;
  }

  .rate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mix-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-media-card.feature {
    min-height: 460px;
  }

  .live-media-card {
    min-height: 240px;
  }

  .contact-actions {
    justify-content: flex-start;
    min-width: 0;
  }

  .deck-section {
    min-height: 680px;
  }

  .support-section {
    min-height: 640px;
  }

  .deck-readout {
    justify-self: start;
    width: min(100%, 520px);
    max-width: none;
  }

  .brief-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wedding-topbar {
    align-items: flex-start;
  }

  .wedding-topbar nav {
    display: flex;
  }

  .wedding-hero,
  .wedding-overview,
  .wedding-packages,
  .wedding-addon-band,
  .wedding-planning,
  .wedding-media-placeholder,
  .wedding-services,
  .wedding-contact {
    grid-template-columns: 1fr;
  }

  .wedding-video-proof {
    grid-template-columns: 1fr;
  }

  .wedding-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wedding-hero {
    min-height: 0;
    padding-top: 64px;
  }

  .wedding-card-preview {
    max-width: 620px;
    transform: none;
  }

  .wedding-proof-band {
    grid-template-columns: 1fr;
  }

  .wedding-service-columns {
    grid-template-columns: 1fr;
  }

  .wedding-party-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-founder-photo {
    top: 6%;
    right: 5%;
    width: min(42%, 190px);
  }

  .book-listen-section {
    grid-template-columns: 1fr;
  }

  .book-listen-heading > p:not(.eyebrow) {
    max-width: 50ch;
  }

  .book-listen-mixes {
    grid-template-columns: 1fr;
  }

  .compact-mix-card iframe {
    height: 124px;
  }

  .hero {
    min-height: 760px;
    padding-top: 88px;
    padding-bottom: 34px;
  }

  .hero::after {
    top: 56px;
    right: 0;
    width: 92vw;
    opacity: 0.34;
  }

  .hero-reactor {
    width: min(100%, 270px);
    margin-top: 4px;
  }

  .reactor-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reactor-chip {
    font-size: 10px;
  }

  .reactor-chip:last-child {
    grid-column: span 2;
  }

  h1 {
    font-size: clamp(64px, 23vw, 92px);
  }

  .hero h1 {
    font-size: clamp(50px, 18vw, 74px);
  }

  h2 {
    font-size: 30px;
  }

  .hero-lede {
    font-size: 15px;
  }

  .button {
    width: 100%;
  }

  .service-list,
  .mode-controls,
  .brief-options,
  .rate-grid,
  .mix-grid,
  .live-media-grid,
  .career-proof,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .about-orbit-panel {
    min-height: 430px;
  }

  .about-badge {
    width: min(88%, 300px);
    min-height: 142px;
  }

  .about-stats {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 290px;
  }

  .live-media-card,
  .live-media-card.feature {
    grid-column: auto;
    grid-row: auto;
    min-height: 290px;
  }

  .live-media-card.feature {
    min-height: 420px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .brand-house-section {
    gap: 22px;
  }

  .brand-house-copy p:not(.eyebrow),
  .forbidden-fruit-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .brand-house-mark {
    min-height: 150px;
    width: min(100%, 250px);
  }

  .brand-house-grid,
  .forbidden-fruit-launches {
    grid-template-columns: 1fr;
  }

  .brand-house-grid a {
    min-height: 126px;
  }

  .forbidden-fruit-section {
    min-height: 0;
  }

  .forbidden-fruit-video {
    opacity: 0.4;
  }

  .launch-card {
    min-height: 176px;
  }

  .project-card {
    grid-column: auto;
    min-height: 0;
  }

  .project-card:nth-child(n + 4) {
    grid-column: auto;
    min-height: 0;
  }

  .project-card.wedding-card {
    grid-column: auto;
    min-height: 0;
  }

  .career-proof {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: 0;
  }

  .deck-section {
    min-height: 660px;
  }

  .wedding-page::before,
  .wedding-page::after {
    opacity: 0.14;
  }

  .wedding-topbar {
    display: grid;
    gap: 14px;
  }

  .wedding-topbar nav {
    display: flex;
    justify-content: flex-start;
  }

  .wedding-brand b {
    font-size: 20px;
  }

  .wedding-hero {
    padding: 42px 18px;
  }

  .wedding-hero::before {
    inset: 10px;
    border-radius: 18px 4px 18px 4px;
  }

  .wedding-hero::after {
    inset: 19px;
    border-radius: 14px 3px 14px 3px;
  }

  .wedding-eyebrow {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .wedding-hero h1 {
    font-size: clamp(46px, 16vw, 76px);
  }

  .wedding-script {
    font-size: 30px;
  }

  .wedding-lede {
    font-size: 15px;
  }

  .wedding-section {
    padding: 44px 18px;
  }

  .wedding-section h2 {
    font-size: 34px;
  }

  .wedding-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .wedding-stat-grid {
    grid-template-columns: 1fr;
  }

  .wedding-video-grid {
    grid-template-columns: 1fr;
  }

  .wedding-video-card iframe,
  .wedding-video-card:first-child iframe {
    aspect-ratio: 16 / 9;
  }

  .wedding-placeholder-grid span {
    min-height: 112px;
  }

  .wedding-contact-card {
    padding: 14px;
  }
}

