:root {
  --ink: #08090b;
  --ink-soft: #0b0d11;
  --surface: #f2f3f5;
  --surface-warm: #e9ebef;
  --white: #ffffff;
  --text: #11141a;
  --text-soft: #616773;
  --blue: #5c8cff;
  --blue-solid: #2f63e8;
  --blue-hover: #3b72f5;
  --line: rgba(8, 9, 11, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --radius: 1rem;
  --radius-card: 2rem;
  --radius-panel: 3rem;
  --container: 88rem;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --section-space: clamp(5.5rem, 10vw, 10rem);

  --background: var(--surface);
  --foreground: var(--text);
  --card: var(--white);
  --card-foreground: var(--text);
  --popover: #11141a;
  --popover-foreground: #f2f3f5;
  --primary: var(--blue-solid);
  --primary-foreground: #ffffff;
  --secondary: #e5e8ee;
  --secondary-foreground: var(--text);
  --muted: #e5e8ee;
  --muted-foreground: var(--text-soft);
  --accent: #252a34;
  --accent-foreground: #ffffff;
  --destructive: #d93f4c;
  --border: rgba(8, 9, 11, 0.18);
  --input: rgba(8, 9, 11, 0.24);
  --ring: var(--blue);
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --radius-sm: calc(var(--radius) - 5px);
  --radius-md: calc(var(--radius) - 3px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 8px);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
iframe { display: block; border: 0; }

[hidden] { display: none !important; }
[data-slot="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  background: var(--blue-solid);
  color: #fff;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
[data-slot="button"] svg { flex: 0 0 auto; }
[data-slot="button"]:hover { background: var(--blue-hover); }
[data-slot="button"][data-variant="outline"] { border-color: var(--line); background: transparent; color: inherit; }
[data-slot="button"][data-variant="outline"]:hover { background: rgba(255,255,255,.08); }
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

::selection { background: var(--blue); color: var(--ink); }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.section-shell {
  width: min(calc(100% - (var(--pad) * 2)), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 100;
  width: min(calc(100% - 2rem), 88rem);
  min-height: 4.75rem;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.35rem;
  background: rgba(8, 9, 11, 0.94);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(8, 9, 11, 0.74);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px) saturate(125%);
}

.brand { display: inline-flex; width: 7.2rem; align-items: center; }
.brand > a, .brand .custom-logo-link { display: inline-flex; width: 100%; align-items: center; }
.brand img { width: 100%; height: auto; }

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2.6rem);
}
.desktop-nav a {
  position: relative;
  color: #c9cdd5;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 180ms ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.site-header .header-cta,
.hero-actions [data-slot="button"],
.bandcamp-card [data-slot="button"],
.academy-copy [data-slot="button"],
.submit-button {
  min-height: 3.4rem;
  border-radius: 999px;
  padding-inline: 1.35rem;
  font-size: 0.92rem;
  font-weight: 700;
}
.site-header .header-cta { min-height: 3.55rem; padding-inline: 1.25rem; }
.site-header .header-cta svg,
.hero-actions svg,
.bandcamp-card [data-slot="button"] svg,
.academy-copy [data-slot="button"] svg,
.submit-button svg { width: 1.05rem; height: 1.05rem; }

.menu-toggle, .mobile-nav { display: none; }
.menu-toggle { border: 0; background: transparent; }
.menu-toggle svg { width: 1.45rem; height: 1.45rem; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(8.5rem, 14vh, 10.5rem) 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 25%, rgba(92, 140, 255, 0.23), transparent 31%),
    linear-gradient(145deg, #07080a 0%, #0b0d11 64%, #101623 100%);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.75fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.65rem;
  color: #565d6a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow > span { width: 2.4rem; height: 2px; background: var(--blue); }
.eyebrow.light { color: #aeb4c0; }

.hero h1 {
  max-width: 58rem;
  margin: 0;
  font-size: clamp(3.7rem, 7.15vw, 8.7rem);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.88;
}
.hero h1 > span { color: var(--blue); }

.hero-lead {
  max-width: 38rem;
  margin: 2.2rem 0 0;
  color: #c5c9d2;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }
.hero-actions [data-variant="outline"] { border-color: rgba(255, 255, 255, 0.26); background: transparent; color: white; }
.hero-actions [data-variant="outline"]:hover { background: white; color: var(--ink); }

.experience-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
}
.experience-line strong { color: var(--blue); font-size: 3rem; letter-spacing: -0.06em; line-height: 1; }
.experience-line span { padding-left: 1rem; border-left: 1px solid rgba(255, 255, 255, 0.24); color: #9ca2ad; font-size: 0.82rem; line-height: 1.35; text-transform: uppercase; letter-spacing: 0.08em; }

.hero-visual { position: relative; margin: 0; padding: 0 0 2.2rem 2.2rem; }
.image-window {
  position: relative;
  aspect-ratio: 0.8;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9rem 2.3rem 2.3rem 2.3rem;
  background: #10131a;
  box-shadow: 0 3rem 7rem rgba(0, 0, 0, 0.38);
}
.image-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 9, 11, 0.68), transparent 42%);
  pointer-events: none;
}
.image-window img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(0.82) contrast(1.05); transition: transform 800ms cubic-bezier(.2,.7,.2,1); }
.hero-visual:hover .image-window img { transform: scale(1.025); }
.hero-visual figcaption { position: absolute; right: 1.4rem; bottom: 4.15rem; left: 4.3rem; z-index: 2; display: flex; justify-content: space-between; gap: 1rem; color: #e8eaf0; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.track-bars {
  position: absolute;
  right: -2.5rem;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 4rem;
  display: flex;
  align-items: flex-end;
  gap: 0.42rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  background: rgba(8, 9, 11, 0.88);
  backdrop-filter: blur(10px);
}
.track-bars i { flex: 1; height: 58%; max-height: 100%; border-radius: 99px; background: var(--blue); opacity: 0.8; animation: meters 2.2s ease-in-out infinite alternate; }
.track-bars i:nth-child(2n) { height: 42%; animation-delay: -0.6s; }
.track-bars i:nth-child(3n) { height: 78%; animation-delay: -1.1s; }
.track-bars i:nth-child(4n) { height: 28%; animation-delay: -1.6s; }
.track-bars i:nth-child(5n) { height: 92%; }
@keyframes meters { to { transform: scaleY(0.52); opacity: 0.45; } }

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #9298a3;
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue svg { width: 1rem; animation: nudge 1.7s ease-in-out infinite; }
@keyframes nudge { 50% { transform: translateY(0.35rem); } }

.section-block { padding-block: var(--section-space); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(11rem, 0.65fr) minmax(0, 1.35fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: clamp(2.8rem, 5vw, 5rem);
}
.section-heading h2,
.about-copy h2,
.academy-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 6.8rem);
  letter-spacing: -0.065em;
  line-height: 0.96;
}
.section-heading > div > p { max-width: 37rem; margin: 1.5rem 0 0; color: var(--text-soft); font-size: 1.08rem; }

.shorts-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2.2vw, 2rem); }
.short-card { min-width: 0; }
.short-frame { position: relative; aspect-ratio: 9 / 16; overflow: hidden; border-radius: var(--radius-card); background: #10131a; box-shadow: 0 1.5rem 4rem rgba(8, 9, 11, 0.14); }
.short-frame iframe, .short-facade { width: 100%; height: 100%; border: 0; }
.short-facade { position: relative; display: block; padding: 0; cursor: pointer; overflow: hidden; background: #10131a; color: var(--white); }
.short-facade::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,9,11,.8), transparent 45%); }
.short-facade img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 300ms ease; }
.short-facade:hover img { transform: scale(1.035); filter: brightness(0.86); }
.play-button { position: absolute; top: 50%; left: 50%; z-index: 2; width: 4.8rem; height: 4.8rem; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--ink); box-shadow: 0 1rem 2.5rem rgba(0,0,0,.25); transform: translate(-50%,-50%); transition: transform 220ms ease, background 220ms ease; }
.play-button svg { width: 1.35rem; }
.short-facade:hover .play-button { background: var(--blue); transform: translate(-50%,-50%) scale(1.08); }
.short-index { position: absolute; right: 1.35rem; bottom: 1.2rem; z-index: 2; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; }
.short-caption { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 0.35rem 0; }
.short-caption h3 { margin: 0; font-size: 1.05rem; letter-spacing: -0.02em; }
.short-caption a { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--text-soft); font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.short-caption a:hover { color: var(--blue-solid); }
.short-caption svg { width: 0.9rem; }

.release-wrap { margin-inline: clamp(0.75rem, 2vw, 1.5rem); overflow: hidden; border-radius: var(--radius-panel); background: linear-gradient(140deg, #0a0c10 0%, #101724 62%, #172d60 130%); color: var(--white); }
.release-shell { padding-block: var(--section-space); }
.release-heading { display: grid; grid-template-columns: minmax(11rem, .65fr) minmax(0, 1.35fr); gap: 2rem; margin-bottom: 4rem; }
.release-kicker { margin: 0 0 0.45rem; color: #a9b0bc; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; }
.release-heading h2 { margin: 0; color: var(--blue); font-size: clamp(4rem, 11vw, 11rem); letter-spacing: -0.085em; line-height: 0.8; }
.release-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(20rem, .88fr); gap: 1.25rem; align-items: stretch; }
.spotify-card, .bandcamp-card { min-width: 0; padding: clamp(1.35rem, 3vw, 2.5rem); border: 1px solid var(--line-dark); border-radius: var(--radius-card); background: rgba(255,255,255,.055); }
.spotify-card iframe { margin-top: 2rem; border-radius: 1rem; }
.platform-label { display: flex; align-items: center; gap: 0.6rem; margin: 0; color: #bfc4cd; font-size: 0.77rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.platform-label svg { width: 1.05rem; }
.bandcamp-card { display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; background: var(--blue); color: var(--ink); }
.bandcamp-card .platform-label { color: rgba(8,9,11,.7); }
.bandcamp-card h3 { max-width: 27rem; margin: 1.2rem 0 0.75rem; font-size: clamp(2.3rem, 4vw, 4.25rem); letter-spacing: -0.055em; line-height: 0.97; }
.bandcamp-card p { max-width: 32rem; }
.bandcamp-card iframe { border-radius: 0.8rem; }
.bandcamp-card [data-slot="button"] { align-self: flex-start; background: var(--ink); color: var(--white); }
.bandcamp-card [data-slot="button"]:hover { background: #1a1d24; }

.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.service-card { min-height: 31rem; display: flex; flex-direction: column; padding: clamp(1.5rem, 3.5vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius-card); background: rgba(255,255,255,.62); transition: transform 320ms cubic-bezier(.2,.7,.2,1), background 240ms ease, box-shadow 240ms ease; }
.service-card:hover { background: var(--white); box-shadow: 0 1.5rem 4rem rgba(8,9,11,.09); transform: translateY(-0.5rem); }
.service-top { display: flex; justify-content: space-between; color: #8b919b; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; }
.service-top svg { width: 1.1rem; }
.service-card h3 { max-width: 29rem; margin: 3.2rem 0 1.1rem; font-size: clamp(2rem, 3.4vw, 3.5rem); letter-spacing: -0.055em; line-height: 1; text-transform: uppercase; }
.service-card > p { max-width: 38rem; margin: 0; color: var(--text-soft); }
.service-card ul { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 2rem 0; padding: 0; list-style: none; }
.service-card li { padding: 0.48rem 0.75rem; border: 1px solid var(--line); border-radius: 999px; font-size: 0.78rem; }
.service-card > a { display: inline-flex; align-items: center; gap: 0.55rem; margin-top: auto; font-weight: 800; }
.service-card > a:hover { color: var(--blue-solid); }
.service-card > a svg { width: 1rem; transition: transform 180ms ease; }
.service-card > a:hover svg { transform: translateX(0.25rem); }

.about-wrap { padding: var(--section-space) 0; background: var(--surface-warm); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.about-image { position: relative; width: min(100%, 30rem); justify-self: end; }
.about-image > img { display: block; width: 100%; height: auto; border-radius: 1.75rem 1.75rem 6rem 1.75rem; filter: saturate(.82); }
.about-stamp { position: absolute; left: -1.5rem; bottom: -2rem; width: 8rem; height: 8rem; display: flex; align-items: center; justify-content: center; gap: 0.55rem; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(8,9,11,.9); color: white; box-shadow: 0 1.5rem 3rem rgba(8,9,11,.25); backdrop-filter: blur(8px); }
.about-stamp strong { color: var(--blue); font-size: 2.5rem; letter-spacing: -0.06em; }
.about-stamp span { font-size: .7rem; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; }
.about-copy h2 { max-width: 48rem; }
.about-copy > p:not(.eyebrow) { max-width: 43rem; margin: 1.25rem 0 0; color: #545b66; font-size: 1.05rem; }
.facts { margin: 2.75rem 0 0; border-top: 1px solid var(--line); }
.facts > div { display: grid; grid-template-columns: 8rem 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.facts dt { color: #777d88; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.facts dd { margin: 0; font-weight: 700; }

.academy-card { margin-top: clamp(5rem, 10vw, 10rem); display: grid; grid-template-columns: minmax(18rem, .75fr) minmax(0, 1.25fr); gap: clamp(2rem, 6vw, 6rem); padding: clamp(1.2rem, 3vw, 2rem); border-radius: var(--radius-panel); background: var(--ink); color: var(--white); }
.academy-card figure { margin: 0; overflow: hidden; border-radius: 2rem; background: #0d0f14; }
.academy-card figure img { width: 100%; height: 100%; object-fit: cover; }
.academy-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(1rem, 4vw, 4rem) clamp(.5rem, 2vw, 2rem) clamp(1rem, 4vw, 4rem) 0; }
.academy-year { margin: 0 0 1.25rem; color: var(--blue); font-size: .8rem; font-weight: 800; letter-spacing: .18em; }
.academy-copy h2 { color: var(--white); }
.academy-copy > p:not(.eyebrow):not(.academy-year) { max-width: 37rem; margin: 1.5rem 0; color: #aeb4be; }
.academy-copy iframe { margin: 1.2rem 0 1.6rem; border-radius: .8rem; }
.academy-copy [data-variant="outline"] { border-color: rgba(255,255,255,.25); background: transparent; color: white; }
.academy-copy [data-variant="outline"]:hover { background: white; color: var(--ink); }

.contact-wrap { margin: 0 clamp(.75rem, 2vw, 1.5rem) clamp(.75rem, 2vw, 1.5rem); padding: var(--section-space) 0; border-radius: var(--radius-panel); background: var(--blue-solid); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(24rem, 1.15fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.contact-copy h2 { margin: 0; font-size: clamp(3.5rem, 7.2vw, 7.8rem); letter-spacing: -0.075em; line-height: .88; }
.contact-copy h2 span { color: #091124; }
.contact-copy > p:not(.eyebrow) { max-width: 31rem; margin: 2rem 0; color: rgba(255,255,255,.82); font-size: 1.05rem; }
.contact-copy > a { display: inline-flex; align-items: center; gap: .45rem; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: .18rem; font-weight: 800; }
.contact-copy > a svg { width: 1rem; }

.contact-form { padding: clamp(1.4rem, 3.5vw, 3rem); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-card); background: rgba(8,9,11,.94); box-shadow: 0 2rem 5rem rgba(8,9,11,.22); }
.form-row { margin-bottom: 1.25rem; }
.form-row label { display: block; margin-bottom: .5rem; color: #c7cbd3; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.form-row input, .form-row textarea, .interest-select { width: 100%; min-height: 3.7rem; border: 1px solid rgba(255,255,255,.14); border-radius: 1rem; background: #11141a; color: white; box-shadow: none; outline: none; }
.form-row input, .form-row textarea { padding: .9rem 1rem; }
.form-row textarea { min-height: 9.5rem; resize: vertical; }
.form-row input::placeholder, .form-row textarea::placeholder { color: #6f7682; }
.form-row input:focus, .form-row textarea:focus, .interest-select:focus-visible { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(92,140,255,.18); }
.interest-select { justify-content: space-between; padding-inline: 1rem; font-size: 1rem; }
.interest-select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #8f96a1 50%), linear-gradient(135deg, #8f96a1 50%, transparent 50%); background-position: calc(100% - 19px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px); background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.interest-select option { background: #12151b; color: white; }
.submit-button { width: 100%; min-height: 4rem; margin-top: .25rem; background: var(--blue); color: var(--ink); }
.submit-button:hover { background: #81a6ff; }
.form-message { display: flex; align-items: center; gap: .55rem; margin: 1rem 0 0; font-size: .9rem; }
.form-message svg { width: 1.1rem; }
.error-message { color: #ff9da5; }
.success-message { color: #8ee5b3; }
.form-note { margin: 1rem 0 0; color: #747b87; font-size: .75rem; }
.form-message[hidden] { display: none; }

.site-footer { padding: 5rem 0 1.25rem; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: minmax(14rem, 1fr) auto auto; gap: clamp(2rem, 6vw, 7rem); align-items: start; }
.footer-brand img { display: block; width: 9rem; height: 3.934rem; max-width: 100%; aspect-ratio: 620 / 271; object-fit: contain; object-position: left center; }
.footer-brand p { margin: 1rem 0 0; color: #8f96a1; font-size: .88rem; }
.footer-nav { display: grid; gap: .8rem; }
.footer-nav a { color: #c8ccd4; font-size: .9rem; }
.footer-nav a:hover { color: var(--blue); }
.social-links { display: flex; gap: .65rem; }
.social-links a { width: 2.9rem; height: 2.9rem; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: white; transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.social-links a:hover { background: var(--blue); color: var(--ink); transform: translateY(-.2rem); }
.social-links svg { width: 1.1rem; }
.footer-bottom { margin-top: 4rem; padding-top: 1.1rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.12); color: #777e89; font-size: .76rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { display: inline-flex; align-items: center; gap: .35rem; }
.footer-bottom svg { width: .85rem; }

.site-main-inner { min-height: 50vh; padding: 9rem var(--pad) var(--section-space); }
.site-main-inner > * { width: min(100%, 60rem); margin-inline: auto; }
.site-main-inner h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -.05em; line-height: 1; }
.site-main-inner a { color: var(--blue-solid); text-decoration: underline; }

.admin-bar .site-header { top: calc(1rem + 32px); }

.reveal { opacity: 0; transform: translateY(2rem) scale(.985); transition: opacity 800ms cubic-bezier(.2,.65,.2,1), transform 800ms cubic-bezier(.2,.65,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.shorts-grid .reveal:nth-child(2), .services-grid .reveal:nth-child(2) { transition-delay: 90ms; }
.shorts-grid .reveal:nth-child(3), .services-grid .reveal:nth-child(3) { transition-delay: 180ms; }
.services-grid .reveal:nth-child(4) { transition-delay: 270ms; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(20rem, .72fr); gap: 3rem; }
  .hero h1 { font-size: clamp(3.5rem, 7vw, 5.6rem); }
  .release-grid { grid-template-columns: 1fr; }
  .bandcamp-card { min-height: 34rem; }
  .about-grid { gap: 4rem; }
  .academy-card { grid-template-columns: .82fr 1.18fr; }
}

@media (max-width: 820px) {
  :root { --pad: 1.25rem; --section-space: 6rem; --radius-panel: 2rem; --radius-card: 1.5rem; }
  .site-header { top: .65rem; width: calc(100% - 1.2rem); grid-template-columns: auto 1fr auto; min-height: 4.15rem; border-radius: 1.05rem; }
  .admin-bar .site-header { top: calc(.65rem + 32px); }
  .brand { width: 5.9rem; }
  .desktop-nav, .header-cta { display: none !important; }
  .menu-toggle { display: inline-flex; grid-column: 3; color: white; }
  .mobile-nav { position: absolute; top: calc(100% + .55rem); right: 0; left: 0; display: grid; gap: .2rem; max-height: 0; padding: 0 1rem; overflow: hidden; border: 1px solid transparent; border-radius: 1rem; background: rgba(8,9,11,.97); opacity: 0; transform: translateY(-.6rem); transition: max-height 300ms ease, padding 300ms ease, opacity 220ms ease, transform 300ms ease; }
  .mobile-nav.is-open { max-height: 30rem; padding: 1rem; border-color: rgba(255,255,255,.14); opacity: 1; transform: none; }
  .mobile-nav > a { padding: .8rem .2rem; color: #d4d7dd; font-weight: 700; }
  .mobile-nav [data-slot="button"] { margin-top: .5rem; border-radius: 999px; }
  .hero { min-height: auto; padding-top: 8rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 3; }
  .hero h1 { font-size: clamp(3.6rem, 13vw, 6.7rem); }
  .experience-line { margin-top: 2.8rem; }
  .hero-visual { width: min(100%, 34rem); margin-left: auto; }
  .scroll-cue { display: none; }
  .section-heading, .release-heading { grid-template-columns: 1fr; }
  .section-heading .eyebrow, .release-heading .eyebrow { margin-bottom: .4rem; }
  .shorts-grid { grid-template-columns: repeat(3, minmax(16rem, 1fr)); overflow-x: auto; padding: 0 0 1rem; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .short-card { scroll-snap-align: start; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card > a { margin-top: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { width: min(88%, 26rem); margin-top: 1.5rem; justify-self: center; }
  .about-stamp { left: -.75rem; }
  .academy-card { grid-template-columns: 1fr; }
  .academy-card figure { max-height: 34rem; }
  .academy-card figure img { object-position: top; }
  .academy-copy { padding: 1.5rem .4rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .social-links { grid-column: 1 / -1; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: calc(.65rem + 46px); }
}

@media (max-width: 540px) {
  :root { --pad: 1rem; --section-space: 4.75rem; }
  .hero { padding-top: 7.5rem; }
  .hero h1 { font-size: clamp(3rem, 15.3vw, 4.9rem); line-height: .93; }
  .hero-lead { margin-top: 1.5rem; font-size: 1.05rem; }
  .hero-actions { display: grid; }
  .hero-actions [data-slot="button"] { width: 100%; }
  .hero-visual { padding-left: 0; }
  .image-window { border-radius: 5rem 1.5rem 1.5rem 1.5rem; }
  .track-bars { right: -.3rem; left: -.3rem; }
  .hero-visual figcaption { left: 1.2rem; right: 1.2rem; }
  .section-heading h2, .about-copy h2, .academy-copy h2 { font-size: clamp(2.8rem, 13vw, 4.6rem); }
  .shorts-grid { grid-template-columns: repeat(3, minmax(15rem, 78vw)); }
  .short-caption { display: block; }
  .short-caption a { margin-top: .45rem; }
  .release-wrap, .contact-wrap { margin-inline: .35rem; }
  .release-heading h2 { font-size: clamp(3.5rem, 18vw, 6rem); }
  .spotify-card, .bandcamp-card { padding: 1rem; }
  .bandcamp-card { min-height: 31rem; }
  .service-card { padding: 1.35rem; }
  .about-image { width: min(86%, 23rem); }
  .about-image > img { border-radius: 1.35rem 1.35rem 4.5rem 1.35rem; }
  .about-stamp { width: 6.5rem; height: 6.5rem; left: -.45rem; bottom: -1.5rem; }
  .about-stamp strong { font-size: 1.6rem; }
  .about-stamp span { font-size: .58rem; }
  .facts > div { grid-template-columns: 7rem 1fr; }
  .academy-card { padding: .75rem; border-radius: 1.75rem; }
  .contact-wrap { border-radius: 2rem; }
  .contact-copy h2 { font-size: clamp(3.3rem, 15vw, 5rem); }
  .contact-form { padding: 1.15rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .social-links { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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