:root {
  color-scheme: dark;
  --bg: #08070b;
  --bg-2: #120b14;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f7f1f4;
  --muted: #a99ba4;
  --red: #ff244f;
  --red-dark: #7e1029;
  --cyan: #19e6ff;
  --gold: #ffd166;
  --purple: #a66cff;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 36, 79, 0.18), transparent 32rem),
    radial-gradient(circle at 82% 12%, rgba(25, 230, 255, 0.13), transparent 30rem),
    linear-gradient(135deg, var(--bg), #050407 44%, #140910);
  color: var(--text);
}

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(16px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 36, 79, 0.95), rgba(25, 230, 255, 0.48));
  box-shadow: 0 0 30px rgba(255, 36, 79, 0.28);
  font-size: 0.78rem;
}

.site-nav {
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(8, 7, 11, 0.66);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

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

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.hero {
  display: grid;
  min-height: calc(100vh - 82px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: 58px;
  padding-top: 54px;
}

.signal-line {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.5rem, 13vw, 11rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.hero-lede,
.section p,
.studio-hero p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.hero-lede {
  max-width: 700px;
  color: #dfd2d8;
  font-size: clamp(1.12rem, 2.2vw, 1.45rem);
}

.hero-actions,
.button-row,
.platform-strip,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 900;
}

.button.primary {
  border-color: rgba(255, 36, 79, 0.8);
  background: linear-gradient(135deg, var(--red), #9f1731);
  color: white;
  box-shadow: 0 18px 42px rgba(255, 36, 79, 0.24);
}

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

.hero-orbit {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  width: min(86vw, 460px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 36, 79, 0.28), transparent 32%),
    conic-gradient(from 140deg, rgba(25, 230, 255, 0.55), rgba(255, 36, 79, 0.9), rgba(255, 209, 102, 0.52), rgba(25, 230, 255, 0.55));
  filter: blur(0.3px);
  opacity: 0.9;
  animation: pulse 5s ease-in-out infinite;
}

.orbital-card {
  position: relative;
  width: min(360px, 82vw);
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(8, 7, 11, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.tiny-label {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.orbital-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1;
}

.meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--cyan));
}

.frequency-ring {
  position: absolute;
  inset: 4%;
  display: grid;
  place-items: center;
  animation: rotate 22s linear infinite;
  pointer-events: none;
}

.frequency-ring span {
  position: absolute;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.frequency-ring span:nth-child(1) {
  transform: translateY(-230px);
}

.frequency-ring span:nth-child(2) {
  transform: rotate(120deg) translateY(-230px);
}

.frequency-ring span:nth-child(3) {
  transform: rotate(240deg) translateY(-230px);
}

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

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

.release-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  min-height: 180px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.release-card.featured {
  background: linear-gradient(135deg, rgba(255, 36, 79, 0.18), rgba(255, 255, 255, 0.07));
}

.cover {
  display: grid;
  aspect-ratio: 1;
  place-items: end start;
  padding: 12px;
  border-radius: 6px;
  overflow: hidden;
  color: white;
  font-weight: 900;
  background: #24151a;
}

.cover span {
  font-size: 2rem;
}

.cover-red {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.8)),
    radial-gradient(circle at 18% 20%, #ff335d, transparent 48%),
    linear-gradient(135deg, #3b101a, #13070b);
}

.cover-cyan {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.76)),
    radial-gradient(circle at 80% 20%, #19e6ff, transparent 46%),
    linear-gradient(135deg, #06272e, #11080e);
}

.cover-purple {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.76)),
    radial-gradient(circle at 30% 30%, #a66cff, transparent 46%),
    linear-gradient(135deg, #211037, #11080e);
}

.cover-gold {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 70% 18%, #ffd166, transparent 45%),
    linear-gradient(135deg, #33220c, #11080e);
}

.release-card p {
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.tag-row span,
.platform-strip a {
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #d8cbd2;
  font-size: 0.78rem;
  font-weight: 850;
}

.tag-row span {
  padding: 7px 10px;
}

.platform-strip {
  margin-top: 22px;
}

.platform-strip a {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
}

.split,
.studio-preview,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: 32px;
}

.poll-panel,
.studio-panel,
.contact-form,
.signal-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.poll-panel {
  padding: 24px;
}

.poll-options {
  display: grid;
  gap: 10px;
}

.poll-options button {
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  padding: 0 14px;
}

.poll-options button:hover,
.poll-options button.active {
  border-color: rgba(25, 230, 255, 0.7);
  background: rgba(25, 230, 255, 0.1);
}

.poll-results {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.result-row {
  display: grid;
  gap: 6px;
}

.result-label {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.result-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.result-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--cyan));
}

.signal-form {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  outline: none;
}

input,
select {
  min-height: 46px;
  padding: 0 14px;
}

textarea {
  min-height: 92px;
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(25, 230, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(25, 230, 255, 0.1);
}

.signal-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.signal-card {
  min-height: 130px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.signal-card strong {
  display: block;
  margin-bottom: 8px;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.hidden {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 44px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.studio-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 80px;
}

.studio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: end;
  padding: 72px 0 32px;
}

.studio-hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.6rem);
}

.studio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.studio-stats div {
  min-height: 110px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.studio-stats span,
.studio-stats small {
  display: block;
}

.studio-stats span {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 1.8rem;
  font-weight: 950;
}

.studio-stats small {
  color: var(--muted);
  font-weight: 800;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.studio-panel {
  padding: 20px;
}

.studio-panel h2 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.studio-panel label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.pack-output {
  display: grid;
  gap: 16px;
}

.pack-block {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

.pack-block h3 {
  color: var(--cyan);
  font-size: 1rem;
}

.pack-block ul {
  margin: 0;
  padding-left: 20px;
  color: #d8cbd2;
  line-height: 1.65;
}

.scene-output {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.scene-output li {
  padding: 12px 12px 12px 4px;
  color: #d8cbd2;
  line-height: 1.55;
}

.library {
  margin-top: 16px;
}

.library-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.library-list {
  display: grid;
  gap: 12px;
}

.library-item {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.library-item strong {
  display: block;
  margin-bottom: 6px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    display: none;
    width: min(320px, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius);
  }

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

  .site-nav a {
    border-radius: var(--radius);
  }

  .hero,
  .split,
  .studio-preview,
  .contact,
  .studio-hero,
  .studio-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 24px;
    min-height: auto;
  }

  .hero-orbit {
    min-height: 400px;
  }

  .frequency-ring span:nth-child(1) {
    transform: translateY(-178px);
  }

  .frequency-ring span:nth-child(2) {
    transform: rotate(120deg) translateY(-178px);
  }

  .frequency-ring span:nth-child(3) {
    transform: rotate(240deg) translateY(-178px);
  }

  .release-grid,
  .signal-wall {
    grid-template-columns: 1fr;
  }

  .signal-form {
    grid-template-columns: 1fr;
  }

  .studio-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 56px 0;
  }

  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: clamp(3.5rem, 20vw, 5.8rem);
  }

  .release-card {
    grid-template-columns: 1fr;
  }

  .cover {
    max-width: 160px;
  }
}

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