:root {
  color-scheme: dark;
  --black: #0a0a0a;
  --black-deep: #030303;
  --charcoal: #151515;
  --charcoal-2: #202020;
  --steel: #b8b8b4;
  --silver: #e4e0d7;
  --muted: #9b968c;
  --gold: #c49a4e;
  --gold-bright: #f1d28c;
  --line: rgba(228, 224, 215, 0.16);
  --line-strong: rgba(241, 210, 140, 0.35);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
  --header-height: 82px;
  --player-height: 92px;
  --player-gap: 18px;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  color: var(--silver);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0, transparent 140px),
    linear-gradient(135deg, #050505 0%, #0a0a0a 38%, #111 100%);
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: calc(var(--player-height) + var(--player-gap) * 2);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, black, transparent 85%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.13;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.05) 0,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 6px
  );
}

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

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

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

button {
  color: inherit;
}

.cursor-dot,
.cursor-ring {
  display: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--silver);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 4px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 40px;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(6, 6, 6, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(22px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 700;
  white-space: nowrap;
}

.brand-lockup img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(241, 210, 140, 0.24);
  background: #000;
}

.brand-lockup span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(228, 224, 215, 0.78);
  font-size: 0.92rem;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--silver);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.site-nav .nav-cta {
  border-color: rgba(196, 154, 78, 0.48);
  color: var(--gold-bright);
  background: rgba(196, 154, 78, 0.1);
}

.nav-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--silver);
}

main {
  position: relative;
  z-index: 1;
}

.section-anchor {
  scroll-margin-top: 84px;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100svh;
  display: grid;
  align-items: center;
  align-content: center;
  gap: 28px;
  overflow: hidden;
  padding: 104px 40px calc(var(--player-height) + var(--player-gap) * 2 + 28px);
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
  background: #000;
  opacity: 0.78;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.44) 52%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.hero-grid {
  position: absolute;
  inset: 12% 0 0;
  z-index: -2;
  opacity: 0.2;
  background-image:
    linear-gradient(90deg, rgba(241, 210, 140, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(228, 224, 215, 0.1) 1px, transparent 1px);
  background-size: 120px 120px;
  transform: perspective(900px) rotateX(64deg) translateY(16%);
  transform-origin: bottom;
}

.hero-content {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 22px;
}

.hero-logo {
  width: min(480px, 68vw);
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.75));
  object-fit: contain;
}

.kicker,
.eyebrow {
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 0.96;
  font-weight: 500;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.85);
}

.hero-copy {
  width: min(760px, 100%);
  margin: 0;
  color: rgba(228, 224, 215, 0.9);
  font-size: 1.24rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  max-width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  border: 1px solid var(--line);
  font-weight: 760;
  text-align: center;
  white-space: normal;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #0a0a0a;
  border-color: rgba(241, 210, 140, 0.68);
  background: linear-gradient(135deg, #f0d28d 0%, #b78332 52%, #e8d6ae 100%);
  box-shadow: 0 18px 44px rgba(196, 154, 78, 0.18);
}

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

.hero-capabilities {
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-capabilities span {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.62);
  backdrop-filter: blur(18px);
  color: rgba(228, 224, 215, 0.84);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

section:not(.hero) {
  padding: 112px 40px;
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 40px;
  display: grid;
  gap: 14px;
}

.section-heading.narrow {
  width: min(900px, 100%);
  text-align: center;
}

.section-heading h2,
.signal-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 500;
}

.studio-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: start;
}

.studio-copy {
  color: rgba(228, 224, 215, 0.78);
  font-size: 1.06rem;
}

.studio-copy p:first-child {
  margin-top: 0;
}

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

.studio-metrics article,
.service-grid article,
.sizzle-card,
.player-console,
.signal-form {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #0d0d0d;
  box-shadow: var(--shadow);
}

.studio-metrics article {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border-radius: var(--radius);
}

.studio-metrics strong {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.studio-metrics span {
  color: rgba(228, 224, 215, 0.84);
}

.visual-system {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.92)),
    #060606;
  isolation: isolate;
}

.visual-system::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("media/images/editorial/black-silk.webp") center / cover no-repeat;
  opacity: 0.18;
  filter: saturate(0.85) contrast(1.08);
}

.visual-system::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(196, 154, 78, 0.08));
}

.visual-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 14px;
}

.visual-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.visual-tile.visual-wide {
  grid-column: span 2;
}

.visual-tile.visual-tall {
  grid-row: span 2;
}

.visual-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.01);
  transition: transform 500ms ease, opacity 500ms ease, filter 500ms ease;
}

.visual-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 18%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), transparent 48%);
  pointer-events: none;
}

.visual-tile::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(241, 210, 140, 0.18);
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.visual-tile:hover img {
  opacity: 1;
  filter: saturate(1.04) contrast(1.12);
  transform: scale(1.045);
}

.visual-tile:hover::after {
  opacity: 1;
}

.visual-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  gap: 5px;
}

.visual-caption span {
  color: var(--gold-bright);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.visual-caption h3 {
  margin: 0;
  color: var(--silver);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.1;
  font-weight: 500;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.76);
}

.reel-section {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(6, 6, 6, 0.94)),
    #070707;
}

.reel-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(8, 8, 8, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.reel-toolbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.video-reel-grid {
  max-height: 720px;
  overflow: auto;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.reel-card {
  min-width: 0;
}

.reel-card-button {
  width: 100%;
  display: grid;
  gap: 12px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.032);
  color: var(--silver);
  padding: 10px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.reel-card-button:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 210, 140, 0.44);
  background: rgba(196, 154, 78, 0.075);
}

.reel-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: #030303;
}

.reel-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transition: opacity 180ms ease, transform 260ms ease;
}

.reel-card-button:hover .reel-media video {
  opacity: 1;
  transform: scale(1.03);
}

.reel-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 210, 140, 0.56);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.64);
  color: var(--gold-bright);
  backdrop-filter: blur(12px);
}

.reel-play svg,
.video-modal-close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.reel-copy {
  display: grid;
  gap: 4px;
  padding: 0 2px 2px;
}

.reel-copy span {
  color: var(--gold-bright);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.reel-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
}

.reel-copy small {
  min-height: 40px;
  color: var(--muted);
  line-height: 1.35;
}

.player-section {
  background:
    linear-gradient(180deg, rgba(196, 154, 78, 0.05), transparent 32%),
    #080808;
}

.player-console {
  width: min(1220px, 100%);
  height: clamp(430px, 48vh, 520px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.playlist-panel {
  border-right: 1px solid var(--line);
  padding: 22px;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
}

.panel-topline,
.wave-meta,
.console-readout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-topline {
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 18px;
}

.genre-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.genre-tabs button,
.track-card {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(228, 224, 215, 0.78);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.genre-tabs button {
  min-height: 38px;
  padding: 0 10px;
  font-size: 0.82rem;
  line-height: 1.2;
}

.genre-tabs button:hover,
.genre-tabs button.is-active,
.track-card:hover,
.track-card.is-active {
  color: var(--silver);
  border-color: var(--line-strong);
  background: rgba(196, 154, 78, 0.09);
}

.track-list {
  display: grid;
  gap: 10px;
  min-height: 0;
  max-height: none;
  overflow: auto;
  padding-right: 2px;
  align-content: start;
}

.track-card {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 9px;
}

.track-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 210, 140, 0.24);
  color: var(--gold-bright);
  background: #050505;
  border-radius: 6px;
}

.track-icon svg,
.icon-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.track-card strong,
.mini-track strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-card span,
.track-card small,
.mini-track span {
  color: var(--muted);
  font-size: 0.82rem;
}

.track-card > small {
  padding-top: 2px;
  white-space: nowrap;
}

.track-use,
.now-description {
  display: block;
  line-height: 1.35;
}

.track-use {
  margin-top: 5px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.now-description {
  max-width: 760px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.now-description:empty {
  display: none;
}

.wave-panel {
  min-width: 0;
  min-height: 0;
  padding: 24px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  overflow: hidden;
}

.wave-meta p,
.wave-meta h3 {
  margin: 0;
}

.wave-meta p {
  color: var(--gold-bright);
  font-size: 0.86rem;
}

.wave-meta h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

#waveform {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(228, 224, 215, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(196, 154, 78, 0.08), transparent 34%, rgba(228, 224, 215, 0.06)),
    #050505;
}

.console-readout {
  color: var(--muted);
  font-size: 0.82rem;
  flex-wrap: wrap;
}

.console-readout span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.service-grid,
.sizzle-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 260px;
  padding: 22px;
  border-radius: var(--radius);
  display: grid;
  align-content: space-between;
  gap: 28px;
}

.service-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 210, 140, 0.38);
  color: var(--gold-bright);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.service-grid h3,
.sizzle-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.service-grid p,
.sizzle-card p,
.signal-copy p {
  margin: 0;
  color: rgba(228, 224, 215, 0.74);
}

.sizzle {
  background: #070707;
}

.sizzle-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.sizzle-visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(241, 210, 140, 0.18), transparent 36%),
    linear-gradient(315deg, rgba(228, 224, 215, 0.16), transparent 34%),
    #050505;
}

.sizzle-visual video,
.sizzle-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  mix-blend-mode: screen;
}

.sizzle-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0 42%, rgba(241, 210, 140, 0.45) 42% 43%, transparent 43% 57%, rgba(228, 224, 215, 0.28) 57% 58%, transparent 58%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 12px);
  opacity: 0.4;
}

.sizzle-visual::after {
  content: attr(data-label);
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 6px 10px;
  border: 1px solid rgba(241, 210, 140, 0.35);
  background: rgba(0, 0, 0, 0.62);
  color: var(--gold-bright);
  border-radius: 999px;
  font-size: 0.78rem;
}

.sizzle-body {
  padding: 20px;
}

.sizzle-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.sizzle-actions button {
  min-height: 40px;
  border: 1px solid rgba(241, 210, 140, 0.38);
  background: rgba(196, 154, 78, 0.1);
  color: var(--gold-bright);
  border-radius: 999px;
  padding: 0 14px;
  cursor: pointer;
}

.sizzle-actions span {
  color: var(--muted);
  font-size: 0.82rem;
}

.signal {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.signal.section-anchor {
  padding-left: 0;
  padding-right: 0;
}

.signal-copy {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 110px;
}

.signal-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
}

.signal-form label {
  display: grid;
  gap: 8px;
}

.signal-form span {
  color: var(--muted);
  font-size: 0.84rem;
}

.signal-form input,
.signal-form select,
.signal-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.34);
  color: var(--silver);
  border-radius: 6px;
  min-height: 48px;
  padding: 12px 13px;
  outline: none;
}

.signal-form textarea {
  resize: vertical;
  min-height: 132px;
}

.signal-form input:focus,
.signal-form select:focus,
.signal-form textarea:focus {
  border-color: rgba(241, 210, 140, 0.52);
  box-shadow: 0 0 0 4px rgba(196, 154, 78, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold-bright);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.utility-page,
.admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(196, 154, 78, 0.16), transparent 34%),
    #050505;
}

.utility-shell,
.admin-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.utility-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  text-align: center;
}

.utility-shell img {
  width: min(220px, 52vw);
  border-radius: 8px;
}

.utility-shell h1,
.admin-hero h1,
.admin-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.utility-shell h1 {
  font-size: clamp(2.5rem, 9vw, 6rem);
}

.utility-shell p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}

.admin-shell {
  padding: 42px 0 calc(var(--player-height) + 70px);
  display: grid;
  gap: 22px;
}

.admin-hero,
.admin-grid article,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 8, 0.86);
  box-shadow: var(--shadow);
}

.admin-hero {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 26px;
}

.admin-hero .brand-lockup {
  position: static;
}

.admin-hero p {
  max-width: 780px;
  color: var(--muted);
}

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

.admin-grid article,
.admin-panel {
  padding: 22px;
}

.admin-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border: 1px solid rgba(241, 210, 140, 0.34);
  border-radius: 50%;
  color: var(--gold-bright);
}

.admin-grid h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 500;
}

.admin-grid p,
.admin-table {
  color: var(--muted);
}

.admin-panel {
  display: grid;
  gap: 18px;
}

.admin-panel-top,
.admin-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-table th,
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--silver);
  font-weight: 500;
}

.admin-table a {
  color: var(--gold-bright);
}

.persistent-player {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: var(--player-gap);
  width: min(1180px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  z-index: 60;
  height: var(--player-height);
  display: grid;
  grid-template-columns: minmax(230px, 1.1fr) auto minmax(280px, 1.3fr) 170px;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(24px);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.64);
  overflow: hidden;
  transform: translateX(-50%);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
}

.video-modal.is-open {
  display: flex;
}

.video-modal-panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(86vh, 860px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #050505;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.82);
}

.video-modal-media {
  width: 100%;
  max-height: 68vh;
  background: #000;
  object-fit: contain;
}

.video-modal-copy {
  display: grid;
  gap: 6px;
  padding: 18px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #080808;
}

.video-modal-copy span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.video-modal-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 500;
}

.video-modal-copy p {
  margin: 0;
  color: rgba(228, 224, 215, 0.74);
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 210, 140, 0.42);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.68);
  color: var(--silver);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

@media (hover: hover) and (pointer: fine) {
  body.cursor-ready,
  body.cursor-ready a,
  body.cursor-ready button,
  body.cursor-ready input[type="range"],
  body.cursor-ready .track-card,
  body.cursor-ready .sizzle-card,
  body.cursor-ready .visual-tile,
  body.cursor-ready .reel-card-button,
  body.cursor-ready .video-modal-close {
    cursor: none;
  }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0);
    transition: opacity 140ms ease, width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease;
  }

  .cursor-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 16px rgba(241, 210, 140, 0.8);
  }

  .cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(241, 210, 140, 0.58);
    border-radius: 50%;
    background: rgba(196, 154, 78, 0.05);
    box-shadow: 0 0 28px rgba(196, 154, 78, 0.12);
    mix-blend-mode: screen;
  }

  body.cursor-ready .cursor-dot,
  body.cursor-ready .cursor-ring {
    opacity: 1;
  }

  body.cursor-hover .cursor-ring {
    width: 58px;
    height: 58px;
    border-color: rgba(241, 210, 140, 0.82);
    background: rgba(196, 154, 78, 0.1);
  }

  body.cursor-down .cursor-ring {
    width: 46px;
    height: 46px;
  }
}

.mini-track {
  min-width: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.mini-track img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 1px solid rgba(241, 210, 140, 0.24);
  background: #000;
  border-radius: 6px;
}

.mini-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  color: var(--silver);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.icon-button:hover {
  transform: translateY(-1px);
  border-color: rgba(241, 210, 140, 0.4);
}

.play-button {
  width: 54px;
  height: 54px;
  color: #050505;
  border-color: rgba(241, 210, 140, 0.72);
  background: linear-gradient(135deg, #f0d28d, #b78332);
}

.icon-pause {
  display: none;
}

.is-playing .icon-play {
  display: none;
}

.is-playing .icon-pause {
  display: block;
}

.mini-progress {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
}

input[type="range"] {
  accent-color: var(--gold);
}

.mini-progress input[type="range"],
.volume-control input[type="range"] {
  width: 100%;
}

.volume-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 1060px) {
  .site-header {
    padding: 0 22px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 22px;
    width: min(320px, calc(100vw - 44px));
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    border-radius: 6px;
    justify-content: center;
  }

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

  .hero-copy {
    font-size: 1.08rem;
  }

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

  .studio-layout,
  .player-console,
  .signal,
  .admin-hero,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .player-console {
    height: auto;
    max-height: none;
  }

  .playlist-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    max-height: 420px;
  }

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

  .service-grid,
  .sizzle-grid,
  .visual-grid,
  .video-reel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-grid {
    grid-auto-rows: 210px;
  }

  .signal-copy {
    position: static;
  }

  .persistent-player {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "track controls"
      "progress progress"
      "volume volume";
    padding: 12px 18px;
  }

  .mini-track {
    grid-area: track;
  }

  .mini-controls {
    grid-area: controls;
  }

  .mini-progress {
    grid-area: progress;
  }

  .volume-control {
    grid-area: volume;
    max-width: 320px;
  }

  :root {
    --player-height: 164px;
    --player-gap: 12px;
  }
}

@media (max-width: 720px) {
  :root {
    --player-height: 120px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    height: 68px;
  }

  .brand-lockup span {
    display: none;
  }

  .brand-lockup img {
    width: 44px;
    height: 44px;
  }

  .hero {
    align-items: center;
    padding: 86px 20px calc(var(--player-height) + var(--player-gap) * 2 + 22px);
    gap: 22px;
  }

  .hero h1 {
    font-size: 2.14rem;
    overflow-wrap: break-word;
  }

  .hero-logo {
    width: min(260px, 72vw);
  }

  .kicker {
    max-width: 300px;
  }

  .hero-actions {
    width: 100%;
    max-width: 340px;
  }

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

  .hero-copy {
    width: 100%;
    max-width: 340px;
  }

  .hero-capabilities {
    display: none;
  }

  section:not(.hero) {
    padding: 76px 20px;
  }

  .section-heading h2,
  .signal-copy h2 {
    font-size: 2.08rem;
  }

  .studio-metrics,
  .service-grid,
  .sizzle-grid,
  .visual-grid,
  .video-reel-grid {
    grid-template-columns: 1fr;
  }

  .video-reel-grid {
    max-height: 620px;
    padding: 12px;
  }

  .reel-toolbar {
    min-height: 54px;
    padding: 0 14px;
  }

  .reel-copy strong {
    white-space: normal;
  }

  .video-modal {
    padding: 12px;
  }

  .video-modal-copy h3 {
    font-size: 1.38rem;
  }

  .visual-grid {
    grid-auto-rows: auto;
  }

  .visual-tile,
  .visual-tile.visual-wide,
  .visual-tile.visual-tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 0.78;
  }

  .visual-tile.visual-tall {
    aspect-ratio: 4 / 5;
  }

  .visual-caption {
    left: 16px;
    right: 16px;
    bottom: 15px;
  }

  .studio-metrics article,
  .service-grid article {
    min-height: 0;
  }

  .wave-panel,
  .playlist-panel,
  .signal-form {
    padding: 18px;
  }

  .playlist-panel {
    max-height: 380px;
  }

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

  .wave-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .wave-meta h3 {
    font-size: 1.35rem;
  }

  .wave-panel {
    gap: 12px;
  }

  #waveform {
    height: 180px;
    min-height: 180px;
  }

  .console-readout {
    display: none;
  }

  .signal {
    width: calc(100% - 40px);
  }

  .admin-hero {
    gap: 22px;
  }

  .admin-hero .brand-lockup {
    justify-self: start;
  }

  .admin-panel-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .persistent-player {
    grid-template-areas:
      "track controls"
      "progress progress";
    gap: 10px;
    padding: 10px 12px;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  .mini-track {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .mini-track img {
    width: 48px;
    height: 48px;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .play-button {
    width: 48px;
    height: 48px;
  }

  .volume-control {
    display: none;
  }
}

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