:root {
  color-scheme: dark;
  --bg: #07070b;
  --bg-2: #0e0d16;
  --panel: rgba(17, 18, 28, 0.74);
  --panel-strong: rgba(24, 24, 37, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8f4ea;
  --muted: #b9b2c9;
  --dim: #7d7890;
  --gold: #f5b84b;
  --purple: #8d5cff;
  --cyan: #35d9ff;
  --orange: #ff6b38;
  --green: #6dff9e;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 8%, rgba(141, 92, 255, 0.32), transparent 30rem),
    radial-gradient(circle at 82% 18%, rgba(53, 217, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 65% 78%, rgba(255, 107, 56, 0.22), transparent 30rem),
    linear-gradient(135deg, #06060a 0%, #11101a 48%, #07070b 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(245, 184, 75, 0.08), transparent 34%, rgba(53, 217, 255, 0.07) 72%, transparent),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 42rem);
  filter: blur(8px);
  animation: aurora 12s ease-in-out infinite alternate;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.45) 0.7px, transparent 0.8px);
  background-position: center;
  background-size: 72px 72px, 72px 72px, 4px 4px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.28));
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  color: #09090d;
  background: var(--gold);
  border-radius: 999px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 16px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  margin: 16px 0 22px;
  padding: 0.75rem;
  background: rgba(7, 7, 11, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #050507;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--cyan) 52%, var(--purple));
  border-radius: 16px;
  box-shadow: 0 0 38px rgba(53, 217, 255, 0.24);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.nav-links a {
  padding: 0.72rem 0.95rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary,
.button-compact {
  color: #07070b;
  background: linear-gradient(135deg, var(--gold), #fff0b8 44%, var(--cyan));
  box-shadow: 0 16px 48px rgba(245, 184, 75, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(53, 217, 255, 0.48);
  box-shadow: 0 14px 46px rgba(53, 217, 255, 0.12);
}

.button-compact {
  min-height: 46px;
  padding-inline: 1rem;
  white-space: nowrap;
}

.section {
  padding: 86px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.84fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: calc(100vh - 120px);
  padding-top: 54px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.record-dot {
  display: inline-block;
  width: 0.74rem;
  height: 0.74rem;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(255, 107, 56, 0.58);
  animation: pulse 1.4s ease-out infinite;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-top: 1.1rem;
  font-size: clamp(3.8rem, 11vw, 8.8rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 5rem);
  text-wrap: balance;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.08;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lede {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: #d8d1e6;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.session-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.65rem;
}

.session-strip {
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.session-strip span {
  padding: 0.58rem 0.78rem;
  color: #d8d1e6;
  font-size: 0.84rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.visual-card,
.daw-panel,
.booking-preview {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.visual-card::before,
.daw-panel::before,
.booking-preview::before,
.service-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(245, 184, 75, 0.14), transparent 36%, rgba(53, 217, 255, 0.11));
  opacity: 0.9;
}

.mixer-card {
  min-height: 520px;
  padding: 1.25rem;
  transform: rotate(1.5deg);
}

.visual-topline,
.daw-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #efeaff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 107, 56, 0.12);
  border: 1px solid rgba(255, 107, 56, 0.34);
  border-radius: 999px;
}

.visualizer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 188px;
  margin-top: 2.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.visualizer span {
  width: 4.8%;
  height: var(--level);
  min-height: 18px;
  background: linear-gradient(to top, var(--purple), var(--cyan) 55%, var(--gold));
  border-radius: 999px 999px 4px 4px;
  box-shadow: 0 0 24px rgba(53, 217, 255, 0.26);
  transform-origin: bottom;
  animation: meter 1.5s ease-in-out infinite alternate;
  animation-delay: calc(var(--level) * -0.014);
}

.wave-window {
  position: relative;
  z-index: 1;
  height: 116px;
  margin-top: 1.25rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(53, 217, 255, 0.08), rgba(141, 92, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.wave {
  position: absolute;
  top: 50%;
  left: -40%;
  width: 180%;
  height: 56px;
  background:
    radial-gradient(ellipse at center, transparent 44%, var(--cyan) 46%, transparent 50%) 0 0 / 82px 56px repeat-x;
  opacity: 0.85;
  transform: translateY(-50%);
  animation: waveMove 8s linear infinite;
}

.wave-two {
  background:
    radial-gradient(ellipse at center, transparent 42%, var(--gold) 45%, transparent 51%) 0 0 / 118px 58px repeat-x;
  opacity: 0.55;
  animation-duration: 12s;
  animation-direction: reverse;
}

.track-lanes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.78rem;
  margin-top: 1.2rem;
}

.track-lanes div {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 0.8rem;
  color: var(--dim);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.track-lanes i {
  display: block;
  height: 16px;
  background: linear-gradient(90deg, rgba(53, 217, 255, 0.24), rgba(141, 92, 255, 0.75), rgba(245, 184, 75, 0.36));
  border-radius: 999px;
  animation: laneGlow 3s ease-in-out infinite alternate;
}

.floating-chip {
  position: absolute;
  z-index: 2;
  padding: 0.85rem 1rem;
  color: #07070b;
  font-weight: 900;
  background: rgba(248, 244, 234, 0.92);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.chip-one {
  top: 12%;
  right: -4%;
  animation: float 4.5s ease-in-out infinite;
}

.chip-two {
  bottom: 14%;
  left: -4%;
  animation: float 5.3s ease-in-out infinite reverse;
}

.marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.045);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee span {
  padding: 1.05rem 1.45rem;
  color: #eee8fb;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee span::after {
  margin-left: 1.45rem;
  color: var(--cyan);
  content: "/";
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-top: 0.75rem;
}

.section-heading p {
  max-width: 720px;
  margin: 1rem 0 0;
  font-size: 1.06rem;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.65fr);
  align-items: end;
  gap: 2rem;
  max-width: none;
}

.daw-panel {
  padding: 1.2rem;
}

.window-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
}

.orange { background: var(--orange); }
.purple { background: var(--purple); }
.cyan { background: var(--cyan); }

.daw-header {
  justify-content: start;
}

.daw-header strong {
  margin-left: 0.4rem;
}

.daw-header em {
  margin-left: auto;
  color: var(--dim);
  font-style: normal;
  letter-spacing: 0.04em;
}

.timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 1.4rem 0 0.7rem 150px;
  color: var(--dim);
  font-size: 0.75rem;
  font-weight: 800;
}

.daw-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 130px 1fr 0.72fr 84px;
  gap: 0.85rem;
  align-items: center;
}

.track-name,
.clip,
.meter {
  min-height: 62px;
  border-radius: 14px;
}

.track-name {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: #ebe5f7;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.clip {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.clip::after {
  position: absolute;
  inset: 14px;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.32) 0 5px, transparent 5px 14px);
  border-radius: 999px;
  mask-image: linear-gradient(90deg, black, transparent);
  animation: clipScan 4s ease-in-out infinite alternate;
}

.clip-cyan { background: linear-gradient(135deg, rgba(53, 217, 255, 0.48), rgba(53, 217, 255, 0.12)); }
.clip-purple { background: linear-gradient(135deg, rgba(141, 92, 255, 0.55), rgba(141, 92, 255, 0.14)); }
.clip-gold { background: linear-gradient(135deg, rgba(245, 184, 75, 0.58), rgba(245, 184, 75, 0.13)); }
.clip-orange { background: linear-gradient(135deg, rgba(255, 107, 56, 0.55), rgba(255, 107, 56, 0.12)); }

.meter {
  display: flex;
  align-items: end;
  padding: 0.55rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.meter i {
  width: 100%;
  height: 64%;
  background: linear-gradient(to top, var(--green), var(--gold), var(--orange));
  border-radius: 10px;
  animation: meter 1.2s ease-in-out infinite alternate;
}

.meter-hot i {
  height: 88%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.benefit-card,
.process-steps article {
  position: relative;
  overflow: hidden;
  background: rgba(18, 18, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.25);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 1.2rem;
}

.service-card:hover,
.service-card:focus-within,
.benefit-card:hover,
.process-steps article:hover {
  border-color: rgba(53, 217, 255, 0.34);
  box-shadow: 0 26px 72px rgba(53, 217, 255, 0.09);
  transform: translateY(-4px);
}

.featured-service {
  border-color: rgba(245, 184, 75, 0.42);
  box-shadow: 0 22px 70px rgba(245, 184, 75, 0.12);
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 1rem;
  color: #07070b;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  border-radius: 18px;
}

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

.service-card p {
  margin: 0.85rem 0 1rem;
}

.service-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin: auto 0 1rem;
}

.service-card dl div {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

dt {
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

dd {
  margin: 0.25rem 0 0;
  font-size: 1.2rem;
  font-weight: 900;
}

.service-card a {
  display: inline-flex;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1rem;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.service-card a:hover,
.service-card a:focus-visible {
  color: #07070b;
  background: var(--gold);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  padding: 1.2rem;
}

.benefit-card strong,
.benefit-card span {
  display: block;
}

.benefit-card strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.25rem;
}

.benefit-card span {
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
}

.process-steps article {
  min-height: 250px;
  padding: 1.2rem;
}

.process-steps span {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--cyan);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 3rem;
  font-weight: 900;
}

.process-steps p {
  margin-bottom: 0;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 1rem;
  align-items: stretch;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(141, 92, 255, 0.22), rgba(53, 217, 255, 0.1), rgba(245, 184, 75, 0.16)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.booking-copy {
  padding: clamp(1rem, 3vw, 2rem);
}

.booking-copy h2 {
  margin-top: 0.75rem;
}

.booking-copy p {
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.booking-preview {
  padding: 1rem;
}

.preview-label {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  color: var(--dim);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  padding: 1rem;
  color: #efeaff;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.preview-row.active {
  border-color: rgba(245, 184, 75, 0.42);
  box-shadow: 0 0 28px rgba(245, 184, 75, 0.09);
}

.preview-calendar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.preview-calendar span {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.preview-calendar .hot {
  background: linear-gradient(135deg, rgba(53, 217, 255, 0.42), rgba(245, 184, 75, 0.38));
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

summary {
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer strong,
.footer span {
  display: block;
}

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

.footer a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

@keyframes aurora {
  from { transform: translate3d(-1%, -1%, 0) scale(1); }
  to { transform: translate3d(1.5%, 1%, 0) scale(1.08); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 56, 0.58); }
  70% { box-shadow: 0 0 0 10px rgba(255, 107, 56, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 56, 0); }
}

@keyframes meter {
  from { transform: scaleY(0.48); filter: saturate(0.9); }
  to { transform: scaleY(1); filter: saturate(1.35); }
}

@keyframes waveMove {
  to { transform: translate3d(18%, -50%, 0); }
}

@keyframes laneGlow {
  from { opacity: 0.55; transform: scaleX(0.78); transform-origin: left; }
  to { opacity: 1; transform: scaleX(1); transform-origin: left; }
}

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

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes clipScan {
  from { opacity: 0.35; transform: translateX(-8%); }
  to { opacity: 0.78; transform: translateX(8%); }
}

@media (max-width: 980px) {
  .site-shell {
    width: min(100% - 24px, var(--max));
  }

  .nav {
    align-items: stretch;
    border-radius: 26px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .booking-section,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

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

  .mixer-card {
    min-height: 450px;
    transform: none;
  }

  .services-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 18px, var(--max));
  }

  .nav {
    position: relative;
    top: 0;
    flex-wrap: wrap;
    margin-top: 9px;
  }

  .brand {
    flex: 1 1 100%;
  }

  .button-compact {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(3.05rem, 17vw, 4.9rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

  .mixer-card {
    min-height: 420px;
    padding: 0.9rem;
  }

  .visual-topline,
  .daw-header {
    flex-wrap: wrap;
    font-size: 0.67rem;
  }

  .visualizer {
    height: 150px;
    margin-top: 1.4rem;
    padding: 0.7rem;
  }

  .floating-chip {
    display: none;
  }

  .services-grid,
  .benefit-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .daw-panel {
    padding: 0.8rem;
  }

  .timeline {
    display: none;
  }

  .daw-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .track-name {
    min-height: 44px;
  }

  .clip,
  .meter {
    min-height: 48px;
  }

  .booking-section {
    padding: 1rem;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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