:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-2: #0a0c0e;
  --surface: #101112;
  --surface-2: #151719;
  --line: rgba(255, 255, 255, .13);
  --line-strong: rgba(255, 138, 0, .42);
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --dim: #7e838a;
  --accent: #ff8a00;
  --accent-2: #c96a00;
  --production: #ff6b1a;
  --academy: #7c4dff;
  --acoustics: #00b894;
  --apps: #00d4ff;
  --success: #3dff8f;
  --danger: #ff4d4d;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
  --max: 1280px;
  --font: Inter, Aptos, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(255, 107, 26, .06), transparent 22%, rgba(0, 212, 255, .035) 54%, transparent 78%),
    radial-gradient(circle at 72% 7%, rgba(255, 138, 0, .12), transparent 30rem),
    radial-gradient(circle at 18% 18%, rgba(255, 138, 0, .06), transparent 26rem),
    linear-gradient(180deg, #030303 0%, #050505 42%, #020202 100%);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 138, 0, .035) 34px 35px, transparent 35px 70px),
    radial-gradient(circle at var(--cursor-x, 30%) var(--cursor-y, 18%), rgba(255, 107, 26, .09), transparent 22rem);
  mask-image: linear-gradient(180deg, black, transparent 78%);
  animation: backgroundDrift 16s linear infinite;
}

body.production::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .34;
  background:
    radial-gradient(circle at 72% 32%, rgba(255, 107, 26, .18), transparent 22rem),
    radial-gradient(circle at 18% 68%, rgba(255, 138, 0, .1), transparent 18rem),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='900' viewBox='0 0 1440 900'%3E%3Cg fill='none' stroke='%23ff6b1a' stroke-opacity='.28' stroke-width='1.4'%3E%3Cpath d='M-20 230 C160 135 280 325 440 225 S760 140 940 235 1200 330 1460 200'/%3E%3Cpath d='M-30 480 C170 395 300 565 470 475 S760 380 965 485 1205 590 1480 445'/%3E%3Cpath d='M-40 690 C170 610 310 775 510 685 S835 600 1015 700 1240 790 1480 660'/%3E%3C/g%3E%3Cg stroke='%23ffffff' stroke-opacity='.055' stroke-width='1'%3E%3Cpath d='M0 310 H1440'/%3E%3Cpath d='M0 560 H1440'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, auto, 1200px 760px;
  background-position: center, center, 50% 8%;
  animation: soundscapeDrift 24s ease-in-out infinite alternate;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 78%);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

body.production { --accent-local: var(--production); }
body.academy { --accent-local: var(--academy); }
body.acoustics { --accent-local: var(--acoustics); }
body.apps { --accent-local: var(--apps); }
body.home { --accent-local: var(--accent); }

img, svg {
  max-width: 100%;
}

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

button, input, textarea, select {
  font: inherit;
}

.top-line {
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-local, var(--accent)), var(--accent));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(5, 5, 5, .86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
}

.brand-logo {
  display: block;
  width: clamp(190px, 18vw, 288px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand-name {
  display: block;
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.05;
}

.brand-sub {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-sub strong {
  color: var(--accent-local, var(--accent));
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #08090a;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .92rem;
  font-weight: 700;
}

.site-nav a {
  color: rgba(245, 245, 245, .82);
  transition: color .18s ease, transform .18s ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--text);
  font-size: .88rem;
  font-weight: 800;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.nav-cta:hover {
  border-color: var(--accent);
  background: rgba(255, 138, 0, .08);
  transform: translateY(-1px);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 30px 0;
}

.hero {
  min-height: 640px;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(390px, .82fr) minmax(500px, 1.18fr);
  gap: clamp(38px, 5vw, 76px);
  padding: 58px 0 34px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .88) 0%, rgba(5, 5, 5, .72) 36%, rgba(5, 5, 5, .16) 100%),
    radial-gradient(circle at 76% 45%, color-mix(in srgb, var(--accent-local, var(--accent)) 20%, transparent), transparent 24rem);
  z-index: -2;
}

.hero-kicker,
.section-kicker,
.mini-kicker {
  margin: 0 0 10px;
  color: var(--accent-local, var(--accent));
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(3.6rem, 5.3vw, 5.25rem);
  line-height: .94;
  font-weight: 920;
  text-wrap: balance;
}

.hero h1 span,
.accent-text {
  color: var(--accent-local, var(--accent));
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy p {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.btn-primary {
  color: #140900;
  background: linear-gradient(135deg, #ff9b19, #ff6b00);
  box-shadow: 0 14px 34px rgba(255, 138, 0, .24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255, 138, 0, .34);
}

.btn-secondary {
  background: rgba(255, 255, 255, .03);
  border-color: rgba(255, 255, 255, .26);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--accent-local, var(--accent));
  background: rgba(255, 255, 255, .07);
  transform: translateY(-2px);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.proof {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .78rem;
}

.proof-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-local, var(--accent));
}

.proof-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof strong {
  display: block;
  color: var(--text);
  font-size: .84rem;
}

.hero-visual {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-visual.open {
  border-radius: 0;
}

.grid-floor {
  position: absolute;
  inset: auto -12% 0 -12%;
  height: 45%;
  background:
    linear-gradient(color-mix(in srgb, var(--accent-local, var(--accent)) 18%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--accent-local, var(--accent)) 18%, transparent) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(480px) rotateX(60deg);
  transform-origin: bottom center;
  opacity: .46;
}

.orbit-field {
  position: absolute;
  inset: 4% 0 18% 4%;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  width: 420px;
  height: 250px;
  border: 2px solid color-mix(in srgb, var(--accent-local, var(--accent)) 86%, transparent);
  border-radius: 50%;
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--accent-local, var(--accent)) 55%, transparent));
  transform: rotate(-16deg);
  animation: orbitDrift 8s ease-in-out infinite alternate;
}

.orbit:nth-child(2) {
  width: 480px;
  height: 190px;
  transform: rotate(17deg);
  opacity: .78;
  animation-delay: -2s;
}

.orbit:nth-child(3) {
  width: 330px;
  height: 330px;
  transform: rotate(73deg);
  opacity: .56;
  animation-delay: -4s;
}

.wave-line {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 46%;
  height: 120px;
  background:
    repeating-linear-gradient(90deg, transparent 0 8px, color-mix(in srgb, var(--accent-local, var(--accent)) 70%, transparent) 8px 10px, transparent 10px 17px);
  mask-image: radial-gradient(ellipse at center, black 0 48%, transparent 74%);
  opacity: .58;
  transform: translateY(-50%);
}

.studio-console,
.dashboard-mock,
.room-mock {
  position: absolute;
  right: 5%;
  bottom: 9%;
  width: min(560px, 82%);
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    #080a0c;
  box-shadow: var(--shadow);
}

.studio-console::before,
.dashboard-mock::before,
.room-mock::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .09);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--accent-local, var(--accent)) 45%, transparent) 0 2px, transparent 2px 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 42px);
}

.studio-console::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 38px;
  height: 92px;
  background:
    linear-gradient(90deg, var(--production), var(--accent), var(--apps), var(--acoustics));
  mask-image: repeating-linear-gradient(90deg, black 0 8px, transparent 8px 14px);
  opacity: .72;
}

.dashboard-mock::after {
  content: "";
  position: absolute;
  inset: 48px 36px 34px 36px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 70% 30%, var(--accent) 0 4px, transparent 5px),
    linear-gradient(90deg, var(--apps), transparent 34%),
    repeating-linear-gradient(90deg, rgba(0, 212, 255, .32) 0 2px, transparent 2px 18px);
  opacity: .78;
}

.room-mock {
  background:
    radial-gradient(circle at 50% 68%, rgba(61, 255, 143, .32), transparent 12rem),
    radial-gradient(circle at 44% 65%, rgba(255, 138, 0, .35), transparent 8rem),
    #07100f;
}

.room-mock::after {
  content: "";
  position: absolute;
  inset: 42px 70px 58px 70px;
  border: 1px solid rgba(0, 184, 148, .48);
  transform: skewY(-12deg);
  background:
    linear-gradient(90deg, rgba(0, 184, 148, .16) 1px, transparent 1px),
    linear-gradient(rgba(0, 184, 148, .16) 1px, transparent 1px);
  background-size: 34px 34px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.section-head h2,
.panel-copy h2,
.cta-band h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.08;
}

.section-head p,
.panel-copy p,
.cta-band p {
  color: var(--muted);
}

.link-arrow {
  color: var(--accent-local, var(--accent));
  font-weight: 900;
  white-space: nowrap;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-card,
.mini-card,
.metric-card,
.price-card,
.story-card,
.app-card,
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)),
    rgba(17, 17, 17, .9);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.feature-card:hover,
.mini-card:hover,
.service-card:hover,
.app-card:hover,
.price-card:hover,
.story-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent-local, var(--accent)) 70%, rgba(255, 255, 255, .16));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .34);
}

.feature-card {
  min-height: 230px;
  padding: 22px;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: var(--card-accent, var(--accent-local, var(--accent)));
}

.card-art {
  height: 72px;
  margin: -4px -4px 16px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 78% 35%, color-mix(in srgb, var(--card-accent, var(--accent-local, var(--accent))) 32%, transparent), transparent 6rem),
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--card-accent, var(--accent-local, var(--accent))) 35%, transparent) 0 2px, transparent 2px 16px),
    #070808;
  opacity: .86;
}

.feature-card h3,
.service-card h3,
.app-card h3,
.mini-card h3,
.price-card h3 {
  margin: 0 0 9px;
  font-size: 1.16rem;
}

.feature-card p,
.service-card p,
.app-card p,
.mini-card p,
.price-card p,
.story-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .92rem;
}

.panel {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-local, var(--accent)) 13%, transparent), transparent 22rem),
    rgba(8, 9, 10, .88);
  overflow: hidden;
}

.panel + .panel {
  margin-top: 14px;
}

.panel-copy {
  min-width: 0;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mini-card {
  min-height: 150px;
  padding: 18px;
}

.icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid color-mix(in srgb, var(--accent-local, var(--accent)) 48%, rgba(255, 255, 255, .14));
  border-radius: 7px;
  color: var(--accent-local, var(--accent));
  background: color-mix(in srgb, var(--accent-local, var(--accent)) 10%, transparent);
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(8, 9, 10, .9);
}

.metric-card {
  padding: 16px;
}

.metric-value {
  display: block;
  color: var(--accent-local, var(--accent));
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 950;
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: .84rem;
}

.meter {
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  overflow: hidden;
}

.meter::before {
  content: "";
  display: block;
  width: var(--meter, 65%);
  height: 100%;
  background: var(--accent-local, var(--accent));
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .52);
  font-weight: 900;
  text-align: center;
  overflow: hidden;
}

.logo-row span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  filter: grayscale(1);
  position: relative;
  isolation: isolate;
  transition: color .2s ease, transform .2s ease, filter .2s ease;
}

.logo-row span::before {
  content: "";
  position: absolute;
  inset: 2px 10px;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 26, .18), transparent);
  translate: -120% 0;
  animation: partnerSweep 5.5s ease-in-out infinite;
}

.logo-row span:nth-child(2)::before { animation-delay: .35s; }
.logo-row span:nth-child(3)::before { animation-delay: .7s; }
.logo-row span:nth-child(4)::before { animation-delay: 1.05s; }
.logo-row span:nth-child(5)::before { animation-delay: 1.4s; }
.logo-row span:nth-child(6)::before { animation-delay: 1.75s; }

.logo-row span:hover {
  color: var(--text);
  filter: none;
  transform: translateY(-2px);
}

.site-footer {
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: #030303;
}

.footer-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, .8fr) 1.2fr;
  gap: 32px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: .85rem;
  color: var(--accent);
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--muted);
  font-size: .9rem;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-grid .btn-primary,
.site-footer .btn-primary {
  color: #050505;
  justify-content: center;
  text-align: center;
}

.footer-grid > div:last-child .btn-primary {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding-inline: 18px;
  line-height: 1;
}

.footer-signature {
  max-width: 310px;
  font-family: "Snell Roundhand", "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.24rem !important;
  line-height: 1.45;
  font-style: italic;
  color: rgba(255, 255, 255, .82) !important;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.social-row a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: var(--accent-local, var(--accent));
  background: rgba(255, 255, 255, .045);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.social-row svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-row a:hover {
  transform: translateY(-2px);
  border-color: var(--accent-local, var(--accent));
  background: color-mix(in srgb, var(--accent-local, var(--accent)) 14%, transparent);
}

.subscribe {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 0;
  margin-top: 14px;
}

.field,
.subscribe input,
.smart-form input,
.smart-form textarea,
.smart-form select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.smart-form textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.field:focus,
.subscribe input:focus,
.smart-form input:focus,
.smart-form textarea:focus,
.smart-form select:focus {
  border-color: var(--accent-local, var(--accent));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-local, var(--accent)) 18%, transparent);
}

.subscribe button {
  border: 0;
  border-radius: 0 6px 6px 0;
  background: var(--accent);
  color: #120900;
  font-weight: 950;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

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

.carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  background: #070808;
}

.carousel-track {
  min-height: 260px;
  position: relative;
}

.service-carousel,
.testimonial-carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.service-track,
.testimonial-track {
  min-height: 0;
  display: flex;
  gap: 14px;
  position: relative;
  transition: transform .45s ease;
  will-change: transform;
}

.service-track .feature-card {
  flex: 0 0 318px;
}

.marquee-carousel .service-track {
  width: max-content;
  animation: serviceMarquee 30s linear infinite;
}

.marquee-carousel:hover .service-track {
  animation-play-state: paused;
}

.testimonial-track .story-card {
  flex: 0 0 calc((100% - 42px) / 4);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(0, 0, 0, .62);
  color: var(--accent-local, var(--accent));
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  translate: 0 -50%;
}

.carousel-arrow.prev {
  left: -18px;
}

.carousel-arrow.next {
  right: -18px;
}

.ad-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  align-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity .35s ease, transform .35s ease;
}

.ad-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.ad-visual {
  min-height: 190px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 45% 45%, color-mix(in srgb, var(--accent-local, var(--accent)) 28%, transparent), transparent 8rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .14) 0 2px, transparent 2px 18px),
    #07090b;
}

.ad-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(0, 0, 0, .34);
  color: var(--accent-local, var(--accent));
  cursor: pointer;
}

.dots {
  position: absolute;
  left: 28px;
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 30px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  cursor: pointer;
}

.dot.is-active {
  background: var(--accent-local, var(--accent));
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.workflow-step {
  min-height: 154px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(12, 13, 14, .86);
  position: relative;
}

.workflow-step::after {
  content: "";
  position: absolute;
  top: 39px;
  right: -13px;
  width: 13px;
  height: 1px;
  background: color-mix(in srgb, var(--accent-local, var(--accent)) 60%, transparent);
}

.workflow-step:last-child::after {
  display: none;
}

.workflow-step strong {
  display: block;
  color: var(--accent-local, var(--accent));
  margin-bottom: 8px;
}

.media-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.media-card {
  min-height: 130px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: #090a0b;
}

.wave-thumb {
  height: 55px;
  margin-bottom: 12px;
  background:
    linear-gradient(90deg, var(--accent-local, var(--accent)), transparent),
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--accent-local, var(--accent)) 70%, transparent) 0 4px, transparent 4px 11px);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--accent-local, var(--accent)) 60%, rgba(255, 255, 255, .16));
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 50%, color-mix(in srgb, var(--accent-local, var(--accent)) 18%, transparent), transparent 18rem),
    linear-gradient(90deg, rgba(255, 255, 255, .05), rgba(255, 138, 0, .08));
}

.smart-form {
  display: grid;
  gap: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
}

.form-status {
  min-height: 22px;
  color: var(--success);
  font-size: .88rem;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--accent-local, var(--accent)) 42%, rgba(255, 255, 255, .14));
  border-radius: 999px;
  color: var(--accent-local, var(--accent));
  background: color-mix(in srgb, var(--accent-local, var(--accent)) 8%, transparent);
  font-weight: 900;
  font-size: .75rem;
}

.pathway {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
}

.path-step {
  min-height: 86px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
}

.path-step.is-hot {
  border-color: var(--accent-local, var(--accent));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent-local, var(--accent)) 20%, transparent);
}

.path-step span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.price-card {
  min-height: 250px;
  padding: 20px;
}

.story-card {
  min-height: 220px;
  padding: 22px;
}

.price {
  color: var(--accent-local, var(--accent));
  font-size: 1.3rem;
  font-weight: 950;
}

.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .9rem;
}

.check-list li {
  margin: 8px 0;
}

.check-list li::before {
  content: "✓";
  color: var(--success);
  margin-right: 8px;
}

.tabs {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(8, 9, 10, .92);
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.tab-button {
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .11);
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.tab-button.is-active {
  color: var(--text);
  background: color-mix(in srgb, var(--accent-local, var(--accent)) 12%, transparent);
}

.tab-panel {
  display: none;
  padding: 24px;
}

.tab-panel.is-active {
  display: block;
}

.app-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.app-card {
  min-height: 280px;
  padding: 22px;
}

.app-screen {
  height: 110px;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 7px;
  background:
    radial-gradient(circle at 76% 34%, color-mix(in srgb, var(--accent-local, var(--accent)) 30%, transparent), transparent 5rem),
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--accent-local, var(--accent)) 38%, transparent) 0 2px, transparent 2px 15px),
    #060708;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: var(--scroll-progress, 0%);
  height: 5px;
  background: linear-gradient(90deg, #ffb000, var(--production), #e84118);
  box-shadow: 0 0 18px rgba(255, 107, 26, .42);
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  left: var(--cursor-x, 50vw);
  top: var(--cursor-y, 50vh);
  z-index: 1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  translate: -50% -50%;
  background: radial-gradient(circle, rgba(255, 107, 26, .14), rgba(255, 176, 0, .07) 38%, transparent 68%);
  filter: blur(12px);
  opacity: .72;
  pointer-events: none;
  mix-blend-mode: screen;
}

.production .site-header,
.production main,
.production .site-footer {
  position: relative;
  z-index: 2;
}

.production-hero-art {
  --hero-visible-opacity: .7;
  --hero-brightness: .78;
  min-height: 520px;
  isolation: isolate;
  transform-style: preserve-3d;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, .38);
}

.production-hero-art img,
.case-media video,
.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.production-hero-art img {
  opacity: .68;
  scale: 1.06;
  filter: sepia(.12) saturate(1.22) contrast(1.1) brightness(var(--hero-brightness)) blur(.25px);
  transform: translateZ(-1px);
}

.production-hero-art:hover {
  --hero-visible-opacity: .88;
  --hero-brightness: 1.3;
}

.production-hero-art .hero-slide {
  opacity: 0;
  animation: heroImageLoop 20s ease-in-out infinite;
}

.production-hero-art .hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.production-hero-art .hero-slide:nth-child(2) {
  animation-delay: 4s;
}

.production-hero-art .hero-slide:nth-child(3) {
  animation-delay: 8s;
}

.production-hero-art .hero-slide:nth-child(4) {
  animation-delay: 12s;
}

.production-hero-art .hero-slide:nth-child(5) {
  animation-delay: 16s;
}

.production-hero-art::after,
.image-card::after,
.capability-card::after,
.case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 48%, transparent 0 28%, rgba(5, 5, 5, .42) 74%),
    linear-gradient(90deg, rgba(5, 5, 5, .58), transparent 55%),
    linear-gradient(180deg, rgba(5, 5, 5, .08), rgba(5, 5, 5, .72));
  pointer-events: none;
  transition: opacity .24s ease;
}

.production-hero-art:hover::after {
  opacity: .68;
}

.production-hero-art .wave-line,
.production-hero-art .orbit-field,
.production-hero-art .grid-floor,
.production-hero-art .live-card,
.production-hero-art .hero-scan {
  z-index: 1;
}

.hero-scan {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(255, 176, 0, .11) 48%, transparent 54% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 7px);
  translate: -80% 0;
  animation: heroScan 8s ease-in-out infinite;
  opacity: .5;
  pointer-events: none;
}

.live-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(210px, calc(100% - 56px));
  padding: 16px;
  border: 1px solid rgba(255, 138, 0, .45);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, .74);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .44);
}

.live-card span,
.live-card small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.live-card strong {
  display: block;
  margin: 4px 0;
  color: var(--production);
  font-size: 2rem;
  line-height: 1;
}

.image-card,
.capability-card,
.case-media {
  isolation: isolate;
}

.image-card {
  min-height: 266px;
  padding: 120px 18px 22px;
}

.image-card img,
.capability-card img,
.case-media img,
.case-media video,
.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale .45s ease, opacity .45s ease;
}

.image-card:hover img,
.capability-card:hover img,
.case-media:hover img {
  scale: 1.07;
}

.card-shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 138, 0, .22), transparent 7rem),
    linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .9) 58%);
}

.image-card h3,
.image-card p,
.image-card a {
  position: relative;
  z-index: 1;
}

.capability-card {
  min-height: 240px;
  padding-top: 132px;
}

.capability-card::after {
  background:
    radial-gradient(circle at 28% 10%, rgba(255, 107, 26, .24), transparent 8rem),
    linear-gradient(180deg, rgba(255, 107, 26, .08), transparent 34%, rgba(5, 5, 5, .88));
}

.capability-card h3,
.capability-card p {
  position: relative;
  z-index: 1;
}

.workflow-panel {
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 107, 26, .18), transparent 16rem),
    linear-gradient(135deg, rgba(255, 138, 0, .08), transparent 42%),
    rgba(8, 9, 10, .88);
}

.workflow {
  position: relative;
}

.workflow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 0, .42), transparent);
}

.workflow-step {
  overflow: hidden;
  text-align: center;
}

.workflow-step::before {
  display: none;
}

.workflow-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid rgba(255, 138, 0, .48);
  border-radius: 50%;
  color: var(--accent-local, var(--accent));
  background:
    radial-gradient(circle, rgba(255, 138, 0, .22), transparent 62%),
    linear-gradient(135deg, transparent 38%, rgba(255, 107, 26, .18));
  box-shadow: 0 0 22px rgba(255, 138, 0, .2);
  position: relative;
  z-index: 1;
}

.workflow-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.media-card {
  position: relative;
  overflow: hidden;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 107, 26, .16), transparent 10rem);
  opacity: 0;
  transition: opacity .2s ease;
}

.media-card.is-playing::before,
.media-card:hover::before {
  opacity: 1;
}

.media-card strong,
.media-card p,
.media-card .wave-thumb,
.media-card .play-button {
  position: relative;
  z-index: 1;
}

.play-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  background: rgba(0, 0, 0, .42);
  color: #fff;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.play-button:hover,
.media-card.is-playing .play-button {
  border-color: var(--production);
  background: rgba(255, 107, 26, .28);
  transform: scale(1.05);
}

.play-button.large {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin: 0;
  translate: -50% -50%;
}

.wave-thumb.purple {
  background:
    linear-gradient(90deg, #8b5cf6, transparent),
    repeating-linear-gradient(90deg, rgba(139, 92, 246, .72) 0 4px, transparent 4px 11px);
}

.wave-thumb.amber {
  background:
    linear-gradient(90deg, #ff8a00, transparent),
    repeating-linear-gradient(90deg, rgba(255, 138, 0, .72) 0 4px, transparent 4px 11px);
}

.ai-panel {
  grid-template-columns: .72fr 1.28fr;
}

.tool-card {
  min-height: 216px;
}

.tool-visual {
  height: 82px;
  margin: -2px 0 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 7px;
  background:
    radial-gradient(circle at 70% 32%, rgba(255, 138, 0, .28), transparent 4rem),
    repeating-linear-gradient(90deg, rgba(255, 107, 26, .62) 0 5px, transparent 5px 15px),
    #07090b;
  mask-image: linear-gradient(180deg, black 0 88%, transparent);
}

.tool-visual.mix {
  background:
    linear-gradient(90deg, transparent 8%, rgba(61, 255, 143, .7) 9% 11%, transparent 12% 22%, rgba(255, 138, 0, .72) 23% 26%, transparent 27%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 36px),
    #07090b;
}

.tool-visual.master {
  background:
    linear-gradient(160deg, transparent 0 42%, rgba(0, 212, 255, .46) 43% 58%, transparent 59%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 18px),
    #07090b;
}

.tool-visual.voice {
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 107, 26, .34), transparent 3rem),
    repeating-linear-gradient(90deg, transparent 0 10px, rgba(0, 212, 255, .55) 10px 12px, transparent 12px 20px),
    #07090b;
}

.case-study {
  grid-template-columns: .95fr .75fr 1.3fr;
  align-items: stretch;
}

.case-media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .14);
}

.studio-loop,
.studio-loop img {
  position: absolute;
  inset: 0;
}

.studio-loop {
  overflow: hidden;
}

.studio-loop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  filter: saturate(1.1) contrast(1.05);
  animation: studioLoopPush 7s ease-in-out infinite alternate;
}

.capability-card img {
  filter: sepia(.16) saturate(1.24) contrast(1.12) brightness(.72);
}

.video-card {
  min-height: 220px;
  padding: 130px 16px 18px;
  isolation: isolate;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .86) 64%);
  pointer-events: none;
}

.video-card video {
  opacity: .78;
  filter: saturate(1.05) contrast(1.05);
}

.video-card .video-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  filter: saturate(1.08) contrast(1.08) brightness(.82);
  transition: scale .45s ease, opacity .3s ease, filter .3s ease;
}

.video-card.has-poster video {
  opacity: 0;
}

.video-card.has-poster:hover .video-poster,
.video-card.has-poster.is-playing .video-poster {
  scale: 1.06;
  opacity: .9;
  filter: saturate(1.15) contrast(1.08) brightness(.9);
}

.video-card strong,
.video-card p,
.video-card .play-button,
.video-card .video-link,
.video-card .youtube-link {
  position: relative;
  z-index: 1;
}

.video-card .video-link {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.youtube-card {
  background:
    radial-gradient(circle at 62% 30%, rgba(255, 107, 26, .2), transparent 8rem),
    linear-gradient(135deg, rgba(255, 0, 0, .14), rgba(255, 138, 0, .08)),
    #090a0b;
}

.youtube-card::before {
  content: "YouTube";
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1;
  color: rgba(255, 255, 255, .7);
  font-size: .76rem;
  font-weight: 900;
}

.youtube-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 10px;
  color: var(--production);
  font-size: .84rem;
  font-weight: 900;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .9);
}

.case-media::after {
  background: radial-gradient(circle at 50% 50%, transparent 0 30%, rgba(0, 0, 0, .55) 72%);
}

.metric-strip.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  border: 0;
  background: transparent;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stars {
  display: block;
  margin-bottom: 12px;
  color: #ffbd4a;
  font-size: .88rem;
}

.story-card strong,
.story-card small {
  display: block;
}

.story-card small {
  margin-top: 2px;
  color: var(--muted);
}

[data-tilt] {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .62s ease, transform .62s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbitDrift {
  from { translate: -4px -3px; }
  to { translate: 5px 6px; }
}

@keyframes heroScan {
  0%, 30% { translate: -88% 0; }
  70%, 100% { translate: 88% 0; }
}

@keyframes heroImageLoop {
  0%, 16% { opacity: var(--hero-visible-opacity); scale: 1.05; }
  20%, 96% { opacity: 0; scale: 1.09; }
  100% { opacity: var(--hero-visible-opacity); scale: 1.05; }
}

@keyframes soundscapeDrift {
  from { background-position: center, center, 46% 5%; }
  to { background-position: center, center, 54% 12%; }
}

@keyframes serviceMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

@keyframes studioLoopPush {
  from { scale: 1.02; translate: -1% 0; }
  to { scale: 1.08; translate: 1% -1%; }
}

@keyframes studioWave {
  from { opacity: .34; transform: scaleY(.72); }
  to { opacity: .72; transform: scaleY(1.08); }
}

@keyframes studioMeter {
  0%, 100% { clip-path: inset(0 34% 0 0); }
  50% { clip-path: inset(0 12% 0 0); }
}

@keyframes backgroundDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 180px 0, 0 0; }
}

@keyframes partnerSweep {
  0%, 18% { translate: -120% 0; opacity: 0; }
  38%, 58% { opacity: 1; }
  82%, 100% { translate: 120% 0; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-visual {
    min-height: 430px;
  }

  .card-grid,
  .card-grid.five,
  .panel-grid,
  .footer-grid,
  .price-grid,
  .app-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .workflow,
  .metric-strip,
  .media-rail,
  .case-study,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pathway {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-track .feature-card,
  .testimonial-track .story-card {
    flex-basis: calc((100% - 14px) / 2);
  }
}

@media (max-width: 840px) {
  .nav-wrap {
    width: min(100% - 28px, var(--max));
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(58vw, 230px);
    height: 52px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(6, 7, 8, .98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-cta {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .production-hero-art {
    min-height: 360px;
  }

  .proof-row,
  .panel,
  .ai-panel,
  .case-study,
  .ad-slide,
  .cta-band,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .ad-slide {
    position: relative;
    display: none;
  }

  .ad-slide.is-active {
    display: grid;
  }

  .carousel-track {
    min-height: 0;
  }

  .footer-grid,
  .card-grid,
  .card-grid.five,
  .panel-grid,
  .metric-strip,
  .metric-strip.compact,
  .price-grid,
  .workflow,
  .media-rail,
  .app-showcase,
  .logo-row,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cursor-glow {
    display: none;
  }

  .section-head {
    display: block;
  }

  .section-head h2,
  .panel-copy h2,
  .cta-band h2 {
    font-size: 1.65rem;
  }

  .service-track .feature-card,
  .testimonial-track .story-card {
    flex-basis: 100%;
  }

  .carousel-arrow.prev {
    left: 8px;
  }

  .carousel-arrow.next {
    right: 8px;
  }

  .workflow::before {
    display: none;
  }
}
