:root {
  --ink: #f4f7ff;
  --muted: #98a4bd;
  --muted-2: #6f7b98;
  --bg: #040714;
  --bg-soft: #080d1f;
  --panel: rgba(11, 18, 40, 0.82);
  --panel-solid: #0b1228;
  --panel-light: #111b36;
  --line: rgba(200, 220, 255, 0.1);
  --line-strong: rgba(200, 220, 255, 0.18);
  --mint: #5bbeff;
  --mint-bright: #c8edff;
  --lime: #8f83ff;
  --orange: #4b5fff;
  --yellow: #8edfff;
  --danger: #ff7a7a;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --display: "Segoe UI Variable Display", "Aptos Display", Inter, "Segoe UI", sans-serif;
  --sans: Inter, "Segoe UI Variable Text", "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(91, 190, 255, 0.08), transparent 26rem),
    radial-gradient(circle at 90% 18%, rgba(75, 95, 255, 0.055), transparent 28rem),
    var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

[hidden] {
  display: none !important;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

::selection {
  color: #050817;
  background: var(--mint);
}

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--bg);
  background: var(--mint);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  contain: strict;
  opacity: 0.028;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

#main-content {
  display: block;
  min-height: 70vh;
  overflow: clip;
}

.shell {
  width: min(1220px, calc(100% - 56px));
  margin-inline: auto;
}

.shell-narrow {
  width: min(820px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(82px, 8vw, 104px) 0;
}

.section-sm {
  padding: clamp(60px, 6vw, 76px) 0;
}

.section-dark {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(130deg, rgba(91, 190, 255, 0.035), transparent 34%),
    #070c1b;
}

.section-glow::before {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgba(91, 190, 255, 0.055);
  filter: blur(100px);
  content: "";
  pointer-events: none;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(4, 7, 20, 0.88);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(4, 7, 20, 0.92);
}

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

.brand-mark {
  position: relative;
  display: block;
  width: 48px;
  aspect-ratio: 1371 / 1147;
  flex: 0 0 auto;
  isolation: isolate;
}

.brand-mark::before {
  position: absolute;
  z-index: -1;
  inset: 18%;
  border-radius: 50%;
  background: rgba(75, 95, 255, 0.28);
  filter: blur(10px);
  content: "";
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  clip-path: ellipse(48% 48% at 50% 50%);
  image-rendering: -webkit-optimize-contrast;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.21em;
}

.brand-sub {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.28em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
}

.site-nav a {
  position: relative;
  padding: 25px 0;
  color: #aeb8ce;
  font-size: 13.5px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-header.scrolled .site-nav a {
  padding-block: 25px;
}

.site-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 17px;
  left: 50%;
  height: 2px;
  border-radius: 2px;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(91, 190, 255, 0.62);
  content: "";
  transition:
    right 180ms ease,
    left 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
}

.site-nav a.active::after {
  right: 0;
  left: 0;
}

.site-nav a:focus-visible {
  border-radius: 7px;
  outline-offset: 6px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(143, 131, 255, 0.3);
  border-radius: 999px;
  color: #050817;
  background: linear-gradient(120deg, var(--lime), var(--mint));
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.01em;
  box-shadow: 0 0 28px rgba(91, 190, 255, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.header-cta:hover {
  box-shadow: 0 10px 35px rgba(91, 190, 255, 0.15);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 23px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.orange {
  color: var(--orange);
}

.eyebrow.lime {
  color: var(--lime);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h1 {
  max-width: 860px;
  margin-bottom: 25px;
  font-size: clamp(50px, 6vw, 84px);
  font-weight: 780;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.3vw, 60px);
  font-weight: 750;
}

h3 {
  margin-bottom: 13px;
  font-size: 25px;
  font-weight: 740;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #f8fff8 3%, var(--mint-bright) 45%, var(--lime));
  background-clip: text;
  -webkit-background-clip: text;
}

.orange-text {
  color: transparent;
  background: linear-gradient(110deg, var(--yellow), var(--orange));
  background-clip: text;
  -webkit-background-clip: text;
}

.lede {
  max-width: 700px;
  color: #acb7cf;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}

.microcopy {
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 11px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 21px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(11, 18, 40, 0.76);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  border-color: rgba(91, 190, 255, 0.34);
  background: rgba(22, 32, 35, 0.95);
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgba(143, 131, 255, 0.32);
  color: #050817;
  background: linear-gradient(120deg, var(--lime), var(--mint));
  box-shadow: 0 12px 38px rgba(91, 190, 255, 0.12);
}

.button-primary:hover {
  color: #040714;
  background: linear-gradient(120deg, #d7ff7a, #a7ffd0);
  box-shadow: 0 16px 44px rgba(91, 190, 255, 0.18);
}

.button-orange {
  border-color: rgba(75, 95, 255, 0.3);
  color: #050817;
  background: linear-gradient(120deg, var(--yellow), var(--orange));
}

.button-orange:hover {
  color: #050817;
  background: linear-gradient(120deg, #ffe284, #ffb04e);
}

.button-ghost {
  background: transparent;
}

.button-small {
  min-height: 38px;
  padding-inline: 15px;
  font-size: 11px;
}

.button-full {
  width: 100%;
}

.button-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 12, 13, 0.14);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 76px));
  padding: clamp(58px, 7vh, 84px) 0 clamp(54px, 7vh, 78px);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: -78px 0 0;
  background:
    linear-gradient(rgba(91, 190, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 190, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 90%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -10%;
  width: 60%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 190, 255, 0.08), transparent 67%);
  filter: blur(30px);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 5vw, 72px);
}

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

.hero-copy h1 {
  max-width: 690px;
  font-size: clamp(52px, 5.7vw, 80px);
  line-height: 0.98;
}

.hero-copy .lede {
  max-width: 610px;
  margin-bottom: 29px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-trust span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  content: "";
}

.studio-visual {
  position: relative;
  width: min(100%, 520px);
  min-width: 0;
  justify-self: end;
  transform: none;
}

.studio-visual::before {
  position: absolute;
  z-index: -1;
  inset: 16% 4% -7% 9%;
  border-radius: 50%;
  background: linear-gradient(100deg, rgba(91, 190, 255, 0.25), rgba(75, 95, 255, 0.16));
  filter: blur(75px);
  content: "";
}

.visual-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(199, 230, 255, 0.17);
  border-radius: var(--radius-lg);
  background: rgba(8, 16, 37, 0.88);
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 21, 46, 0.88);
}

.window-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted-2);
}

.window-dot:nth-child(1) {
  background: var(--orange);
}

.window-dot:nth-child(2) {
  background: var(--yellow);
}

.window-dot:nth-child(3) {
  background: var(--mint);
}

.window-title {
  margin-left: 8px;
  color: #7f8c88;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.window-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.window-status::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
  content: "";
}

.piano-roll {
  position: relative;
  height: 288px;
  overflow: hidden;
  background:
    linear-gradient(rgba(91, 190, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 190, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 50%, transparent 50%),
    #070c1b;
  background-size:
    100% 34px,
    48px 100%,
    96px 100%,
    auto;
}

.piano-roll::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(91, 190, 255, 0.035), transparent);
  content: "";
}

.playhead {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: 58%;
  width: 1px;
  background: linear-gradient(var(--orange), rgba(75, 95, 255, 0));
  box-shadow: 0 0 10px rgba(75, 95, 255, 0.4);
}

.playhead::before {
  position: absolute;
  top: 0;
  left: -4px;
  width: 9px;
  height: 6px;
  border-radius: 0 0 4px 4px;
  background: var(--orange);
  content: "";
}

.midi-note {
  position: absolute;
  height: 15px;
  border: 1px solid rgba(199, 231, 255, 0.33);
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(91, 190, 255, 0.7), rgba(143, 131, 255, 0.78));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 13px rgba(91, 190, 255, 0.12);
  animation: note-pulse 4s ease-in-out infinite;
}

.midi-note:nth-of-type(2) {
  top: 62px;
  left: 8%;
  width: 24%;
}

.midi-note:nth-of-type(3) {
  top: 96px;
  left: 34%;
  width: 17%;
  animation-delay: -1s;
}

.midi-note:nth-of-type(4) {
  top: 130px;
  left: 53%;
  width: 31%;
  animation-delay: -2s;
}

.midi-note:nth-of-type(5) {
  top: 164px;
  left: 18%;
  width: 22%;
  animation-delay: -0.5s;
}

.midi-note:nth-of-type(6) {
  top: 198px;
  left: 42%;
  width: 14%;
  animation-delay: -1.6s;
}

.midi-note:nth-of-type(7) {
  top: 232px;
  left: 58%;
  width: 27%;
  animation-delay: -2.4s;
}

.midi-note:nth-of-type(8) {
  top: 266px;
  left: 26%;
  width: 27%;
  animation-delay: -3.2s;
}

.midi-note.note-orange {
  border-color: rgba(185, 207, 255, 0.3);
  background: linear-gradient(90deg, rgba(75, 95, 255, 0.75), rgba(142, 223, 255, 0.74));
  box-shadow: 0 0 13px rgba(75, 95, 255, 0.12);
}

.wave-overlay {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 17px;
  left: 7%;
  height: 75px;
  opacity: 0.68;
}

.transport {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 84px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: #0c142b;
}

.transport-play {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(143, 131, 255, 0.25);
  border-radius: 50%;
  color: #0b1011;
  background: linear-gradient(145deg, var(--lime), var(--mint));
  font-size: 12px;
}

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

.transport-info div {
  padding: 5px 10px;
  border-left: 1px solid var(--line);
}

.transport-info span {
  display: block;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.transport-info strong {
  display: block;
  margin-top: 2px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}

.mini-meter {
  display: flex;
  height: 34px;
  align-items: end;
  gap: 3px;
}

.mini-meter i {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to top, var(--mint), var(--yellow), var(--orange));
  animation: meter 1.25s ease-in-out infinite alternate;
}

.mini-meter i:nth-child(1) {
  height: 35%;
  animation-delay: -0.2s;
}

.mini-meter i:nth-child(2) {
  height: 75%;
  animation-delay: -0.8s;
}

.mini-meter i:nth-child(3) {
  height: 48%;
  animation-delay: -0.4s;
}

.mini-meter i:nth-child(4) {
  height: 90%;
  animation-delay: -1s;
}

.mini-meter i:nth-child(5) {
  height: 63%;
  animation-delay: -0.6s;
}

.hero-logo-disc {
  position: absolute;
  z-index: 6;
  right: -34px;
  bottom: 54px;
  width: 142px;
  aspect-ratio: 1371 / 1147;
  isolation: isolate;
  transform: rotate(4deg);
}

.hero-logo-disc::before {
  position: absolute;
  z-index: -1;
  inset: 13%;
  border-radius: 50%;
  background: rgba(38, 75, 216, 0.34);
  box-shadow: 0 20px 28px rgba(0, 0, 0, 0.42);
  filter: blur(16px);
  content: "";
}

.hero-logo-disc img {
  display: block;
  width: 100%;
  height: 100%;
  clip-path: ellipse(48% 48% at 50% 50%);
  image-rendering: -webkit-optimize-contrast;
  object-fit: contain;
}

.session-board {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 220, 255, 0.16);
  border-radius: 22px;
  background: #090f20;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.session-board-head,
.session-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  background: #0d152a;
}

.session-board-head {
  border-bottom: 1px solid var(--line);
}

.session-board-head > div,
.session-time,
.session-master {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.session-board-head strong {
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.02em;
}

.session-index,
.session-time span,
.session-master span,
.track-name,
.track-level,
.session-ruler {
  color: #75819b;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.session-ruler {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-left: 82px;
  padding: 12px 52px 9px 0;
  border-bottom: 1px solid var(--line);
}

.session-ruler span:not(:first-child) {
  text-align: center;
}

.session-tracks {
  display: grid;
  padding-block: 5px;
}

.session-track {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 42px;
  min-height: 48px;
  align-items: center;
  padding-inline: 10px;
  border-bottom: 1px solid rgba(200, 220, 255, 0.07);
}

.session-track:last-child {
  border-bottom: 0;
}

.track-name {
  color: #a5b1c7;
}

.track-lane {
  position: relative;
  display: block;
  height: 29px;
  overflow: hidden;
  border-inline: 1px solid rgba(200, 220, 255, 0.06);
  background:
    linear-gradient(90deg, rgba(200, 220, 255, 0.055) 1px, transparent 1px),
    rgba(3, 8, 19, 0.58);
  background-size: 25% 100%;
}

.track-lane i {
  position: absolute;
  top: 7px;
  left: var(--region-start);
  display: flex;
  width: var(--region-width);
  height: 15px;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
  overflow: hidden;
  padding: 2px 3px;
  border: 1px solid rgba(137, 209, 255, 0.18);
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    hsl(calc(204 + var(--track-index) * 8) 72% 58% / 0.58),
    hsl(calc(211 + var(--track-index) * 8) 74% 42% / 0.5)
  );
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 0 12px hsl(calc(204 + var(--track-index) * 8) 90% 58% / 0.08);
  font-style: normal;
}

.session-track:nth-child(4) .track-lane i {
  background: linear-gradient(180deg, rgba(161, 148, 255, 0.58), rgba(91, 76, 198, 0.48));
}

.track-wave-bar {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 1px;
  max-width: 2px;
  height: var(--wave-height);
  flex: 1 1 2px;
  border-radius: 999px;
  background: rgba(225, 245, 255, 0.82);
  box-shadow: 0 0 3px rgba(118, 213, 255, 0.25);
  opacity: 0.82;
}

.session-track:nth-child(4) .track-wave-bar {
  background: rgba(235, 230, 255, 0.82);
}

.track-level {
  text-align: right;
}

.session-footer {
  min-height: 64px;
  border-top: 1px solid var(--line);
}

.session-time strong,
.session-master strong {
  font-family: var(--mono);
  font-size: 11px;
}

.session-master {
  align-items: flex-end;
}

.session-master i {
  display: block;
  width: 3px;
  height: 13px;
  border-radius: 3px 3px 0 0;
  background: var(--muted-2);
}

.session-master i:nth-last-child(-n + 3) {
  background: var(--mint);
}

.session-master i:nth-last-child(2) {
  height: 18px;
}

.session-master i:last-child {
  height: 22px;
  background: var(--lime);
}

.scroll-cue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-cue::before,
.scroll-cue::after {
  width: 48px;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.section-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-heading > div:first-child {
  max-width: 770px;
}

.section-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.section-heading p:last-child {
  max-width: 510px;
  margin-bottom: 0;
  color: var(--muted);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 16px;
}

.offer-card {
  position: relative;
  display: flex;
  min-height: 380px;
  flex-direction: column;
  overflow: hidden;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(91, 190, 255, 0.03), transparent 45%),
    var(--panel);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.offer-card:hover {
  border-color: rgba(91, 190, 255, 0.25);
  background:
    linear-gradient(145deg, rgba(91, 190, 255, 0.07), transparent 50%),
    rgba(11, 20, 43, 0.95);
  transform: translateY(-5px);
}

.offer-card.featured {
  border-color: rgba(143, 131, 255, 0.2);
  background:
    radial-gradient(circle at 100% 0, rgba(143, 131, 255, 0.12), transparent 48%),
    linear-gradient(145deg, rgba(91, 190, 255, 0.08), transparent 45%),
    var(--panel-solid);
}

.card-index {
  margin-bottom: 54px;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.offer-card.featured .card-index {
  color: var(--mint);
}

.offer-card h3 {
  max-width: 280px;
  font-size: clamp(28px, 3vw, 42px);
}

.offer-card p {
  color: var(--muted);
  font-size: 14px;
}

.offer-card .card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 28px;
}

.offer-card .card-bottom span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-arrow {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 17px;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.offer-card:hover .card-arrow {
  color: #050817;
  background: var(--mint);
  transform: rotate(8deg);
}

.card-midi {
  position: absolute;
  top: 28px;
  right: 24px;
  display: grid;
  gap: 5px;
  width: 86px;
  opacity: 0.65;
}

.card-midi i {
  display: block;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--mint), var(--lime));
}

.card-midi i:nth-child(2) {
  width: 58%;
  margin-left: 26%;
}

.card-midi i:nth-child(3) {
  width: 72%;
  margin-left: 8%;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.genre-strip {
  overflow: hidden;
  padding: 20px 0;
  border-block: 1px solid var(--line);
  background: #0c1214;
}

.genre-track {
  display: flex;
  width: max-content;
  align-items: center;
  backface-visibility: hidden;
  animation: marquee 72s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.genre-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.genre-track span {
  display: inline-flex;
  align-items: center;
  color: #aeb9ce;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.genre-track span::after {
  width: 6px;
  height: 6px;
  margin: 0 27px;
  border-radius: 2px;
  background: var(--orange);
  content: "";
  transform: rotate(45deg);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
}

.feature-copy .lede {
  margin-bottom: 30px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 45px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #c4cfe2;
  background: rgba(10, 18, 41, 0.63);
  font-size: 12px;
}

.check-list li::before {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #050817;
  background: var(--mint);
  font-size: 10px;
  font-weight: 900;
  content: "✓";
}

.clarity-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(91, 190, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 190, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 76% 28%, rgba(91, 190, 255, 0.1), transparent 35%),
    #080d1f;
  background-size: 32px 32px, 32px 32px, auto, auto;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.clarity-visual::before {
  position: absolute;
  inset: -35% auto auto 58%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(75, 95, 255, 0.14);
  filter: blur(80px);
  content: "";
  pointer-events: none;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.clarity-topline,
.waveform-heading,
.clarity-chain {
  display: flex;
  align-items: center;
}

.clarity-topline {
  position: relative;
  z-index: 2;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.clarity-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mint);
}

.clarity-status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  content: "";
}

.clarity-waveforms {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: center;
  min-height: 286px;
  padding: 20px 0 16px;
}

.waveform-lane {
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 13, 31, 0.76);
}

.waveform-clean {
  border-color: rgba(91, 190, 255, 0.24);
  background: linear-gradient(145deg, rgba(91, 190, 255, 0.09), rgba(7, 13, 31, 0.84));
}

.waveform-heading {
  min-height: 42px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3px;
}

.waveform-heading span,
.noise-floor {
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waveform-heading strong {
  color: #c2ccdf;
  font-size: 11px;
}

.waveform-clean .waveform-heading span,
.waveform-clean .waveform-heading strong {
  color: var(--mint-bright);
}

.waveform-bars {
  display: flex;
  height: 104px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 17px 0 15px;
  padding-inline: 2px;
  border-block: 1px solid rgba(200, 220, 255, 0.06);
}

.waveform-bars i {
  width: 5px;
  height: var(--level);
  min-height: 8px;
  border-radius: 5px;
  background: linear-gradient(to bottom, rgba(116, 129, 176, 0.9), rgba(73, 85, 127, 0.45));
}

.waveform-clean .waveform-bars i {
  background: linear-gradient(to bottom, var(--mint), var(--orange));
  box-shadow: 0 0 9px rgba(91, 190, 255, 0.15);
}

.clarity-divider {
  display: grid;
  place-items: center;
}

.clarity-divider span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--mint);
  background: #0b142d;
  font-size: 13px;
  box-shadow: 0 0 24px rgba(91, 190, 255, 0.08);
}

.clarity-chain {
  position: relative;
  z-index: 2;
  justify-content: center;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.clarity-chain span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #b8c5dc;
  background: rgba(10, 18, 41, 0.82);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.clarity-chain i {
  width: 12px;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), var(--mint));
}

.spectrum-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(91, 190, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 190, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(91, 190, 255, 0.07), transparent 50%),
    #080d1f;
  background-size:
    34px 34px,
    34px 34px,
    auto,
    auto;
}

.spectrum-card::before {
  position: absolute;
  top: -22%;
  left: -5%;
  width: 110%;
  height: 100%;
  border: 1px solid rgba(91, 190, 255, 0.3);
  border-radius: 48%;
  content: "";
  transform: rotate(-7deg);
}

.spectrum-card::after {
  position: absolute;
  right: 15%;
  bottom: 15%;
  left: 15%;
  height: 33%;
  background: repeating-linear-gradient(
    90deg,
    rgba(91, 190, 255, 0.72) 0 4px,
    transparent 4px 12px
  );
  clip-path: polygon(
    0 92%,
    3% 83%,
    6% 88%,
    9% 57%,
    12% 72%,
    15% 45%,
    18% 81%,
    21% 53%,
    24% 65%,
    27% 20%,
    30% 47%,
    33% 35%,
    36% 60%,
    39% 22%,
    42% 46%,
    45% 6%,
    48% 32%,
    51% 20%,
    54% 56%,
    57% 30%,
    60% 66%,
    63% 36%,
    66% 62%,
    69% 41%,
    72% 79%,
    75% 53%,
    78% 86%,
    81% 61%,
    84% 76%,
    87% 64%,
    90% 90%,
    93% 71%,
    96% 85%,
    100% 78%,
    100% 100%,
    0 100%
  );
  content: "";
}

.spectrum-label {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 28px;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spectrum-reading {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 25px;
  text-align: right;
}

.spectrum-reading strong {
  display: block;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
}

.spectrum-reading span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

/* Purpose-built studio panels: restrained, functional, and tied to the service workflow. */
.clarity-visual {
  min-height: 0;
  padding: 0;
  border-radius: 24px;
  background: #090f20;
  background-image: none;
}

.clarity-visual::before {
  display: none;
}

.processing-head,
.processing-foot,
.chain-board-head,
.chain-board-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.processing-head,
.chain-board-head {
  min-height: 70px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  background: #0d152a;
}

.processing-head > div,
.chain-board-head > div {
  display: grid;
  gap: 2px;
}

.processing-head span,
.chain-board-head span,
.processing-foot span,
.chain-board-foot span,
.processing-state,
.processing-number,
.processing-setting,
.chain-stage > span,
.chain-stage small {
  color: #75819b;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.processing-head strong,
.chain-board-head strong {
  font-size: 14px;
  letter-spacing: -0.01em;
}

.processing-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mint);
}

.processing-state::before,
.chain-verified::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.processing-list {
  display: grid;
  padding: 4px 20px;
}

.processing-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto 8px;
  min-height: 72px;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(200, 220, 255, 0.08);
}

.processing-row:last-child {
  border-bottom: 0;
}

.processing-number {
  color: #66738e;
}

.processing-row > div {
  display: grid;
  gap: 3px;
}

.processing-row > div strong {
  color: #dce4f3;
  font-size: 12px;
}

.processing-row > div span {
  color: #7e8ba4;
  font-size: 10px;
}

.processing-setting {
  color: #b6c3d8;
  white-space: nowrap;
}

.processing-light {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.processing-foot,
.chain-board-foot {
  min-height: 52px;
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  background: #0b1225;
}

.custom-chain-board {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: #090f20;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.chain-board-head > span {
  padding: 5px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: #afbbcf;
}

.chain-build-flow {
  display: grid;
  grid-template-columns: 1fr 28px 1.15fr 28px 1fr;
  align-items: stretch;
  padding: 24px 20px;
}

.chain-stage {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0b1327;
}

.chain-stage.featured {
  border-color: rgba(91, 190, 255, 0.24);
  background:
    radial-gradient(circle at 50% 30%, rgba(91, 190, 255, 0.1), transparent 54%),
    #0e1932;
  box-shadow: inset 0 0 0 1px rgba(91, 190, 255, 0.04);
}

.chain-stage-visual {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(142, 164, 201, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(rgba(91, 190, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 190, 255, 0.035) 1px, transparent 1px),
    rgba(5, 10, 24, 0.7);
  background-size: 12px 12px;
  box-shadow: inset 0 0 24px rgba(8, 12, 34, 0.68);
}

.chain-waveform {
  gap: 3px;
  padding-inline: 12px;
}

.chain-waveform i {
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--mint), #6577ff);
  box-shadow: 0 0 8px rgba(91, 190, 255, 0.18);
}

.chain-waveform i:nth-child(1),
.chain-waveform i:nth-child(9) {
  height: 12px;
}

.chain-waveform i:nth-child(2),
.chain-waveform i:nth-child(8) {
  height: 22px;
}

.chain-waveform i:nth-child(3),
.chain-waveform i:nth-child(7) {
  height: 31px;
}

.chain-waveform i:nth-child(4),
.chain-waveform i:nth-child(6) {
  height: 40px;
}

.chain-waveform i:nth-child(5) {
  height: 48px;
}

.chain-modules {
  display: grid;
  grid-template-columns: 29px minmax(7px, 1fr) 38px minmax(7px, 1fr) 29px;
  padding-inline: 9px;
}

.chain-modules > i {
  display: grid;
  width: 100%;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(91, 190, 255, 0.34);
  border-radius: 7px;
  color: #c9eaff;
  background: linear-gradient(145deg, rgba(91, 190, 255, 0.18), rgba(94, 86, 255, 0.1));
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.22);
}

.chain-modules > i b {
  font-family: var(--mono);
  font-size: 6px;
  font-style: normal;
  letter-spacing: 0.03em;
}

.chain-modules > span {
  height: 1px;
  background: linear-gradient(90deg, rgba(91, 190, 255, 0.25), var(--mint));
}

.chain-delivery {
  gap: 8px;
  padding: 8px;
}

.chain-file {
  display: grid;
  width: 42px;
  height: 42px;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 3px;
  padding: 6px;
  border: 1px solid rgba(91, 190, 255, 0.3);
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(91, 190, 255, 0.16), rgba(94, 86, 255, 0.08));
}

.chain-file b,
.chain-delivery em {
  color: #c9eaff;
  font-family: var(--mono);
  font-size: 6px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.chain-file i {
  width: 100%;
  height: 1px;
  background: rgba(201, 234, 255, 0.34);
}

.chain-delivery em {
  padding: 5px 6px;
  border: 1px solid rgba(143, 131, 255, 0.22);
  border-radius: 999px;
  color: #aeb9ff;
}

.chain-stage strong {
  max-width: 145px;
  margin-top: 14px;
  color: #e4ebf7;
  font-size: 18px;
  line-height: 1.15;
}

.chain-stage small {
  margin-top: auto;
  color: #8794ab;
  line-height: 1.8;
}

.chain-flow-arrow {
  display: grid;
  place-items: center;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 12px;
}

.chain-board-foot {
  align-items: center;
}

.chain-verified {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #aebbd0 !important;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.process-step {
  position: relative;
  min-height: 280px;
  padding: 27px 23px;
  background: #0b1329;
}

.step-number {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 60px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
}

.process-step h3 {
  font-size: 21px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.process-step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 43px;
  right: -5px;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--mint);
  border-right: 1px solid var(--mint);
  content: "";
  transform: rotate(45deg);
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid rgba(143, 131, 255, 0.2);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 86% 30%, rgba(143, 131, 255, 0.12), transparent 32%),
    radial-gradient(circle at 5% 90%, rgba(75, 95, 255, 0.09), transparent 32%),
    #0b1228;
}

.cta-panel::before {
  position: absolute;
  right: -8%;
  bottom: -95%;
  width: 55%;
  height: 160%;
  border: 1px solid rgba(91, 190, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4.8vw, 66px);
}

.cta-panel p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
}

.cta-panel .button-row {
  position: relative;
  z-index: 2;
  justify-content: flex-end;
}

.page-hero {
  position: relative;
  padding: clamp(74px, 7vw, 92px) 0 clamp(62px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(91, 190, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 190, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 80% 10%, rgba(91, 190, 255, 0.08), transparent 28%);
  background-size:
    42px 42px,
    42px 42px,
    auto;
  mask-image: linear-gradient(#000, rgba(0, 0, 0, 0.3));
  content: "";
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(230px, 280px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(48px, 7vw, 96px);
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 0.99;
}

.page-hero .lede {
  margin-bottom: 0;
}

.hero-meta {
  display: grid;
  width: 100%;
  min-width: 230px;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.hero-meta div {
  padding: 17px 19px;
  background: rgba(9, 17, 39, 0.95);
}

.hero-meta span,
.hero-meta strong {
  display: block;
}

.hero-meta span {
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta strong {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 650;
}

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

.pricing-card {
  position: relative;
  display: flex;
  min-height: 455px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(9, 17, 39, 0.8);
  transition:
    transform 200ms ease,
    border-color 200ms ease;
}

.pricing-card:hover {
  border-color: rgba(91, 190, 255, 0.26);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: rgba(143, 131, 255, 0.25);
  background:
    radial-gradient(circle at 100% 0, rgba(143, 131, 255, 0.1), transparent 42%),
    #0e1732;
}

.popular-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #0a0f0d;
  background: var(--lime);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-kicker {
  margin-bottom: 40px;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card h3 {
  min-height: 49px;
  margin-bottom: 18px;
  font-size: 27px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 45px;
  font-weight: 790;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.pricing-card > p {
  min-height: 82px;
  color: var(--muted);
  font-size: 13px;
}

.included-list {
  display: grid;
  gap: 8px;
  margin: 19px 0 30px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.included-list li {
  display: flex;
  gap: 9px;
  color: #bdc8dc;
  font-size: 11px;
}

.included-list li::before {
  color: var(--mint);
  content: "＋";
}

.pricing-card .button {
  margin-top: auto;
}

.add-on-panel {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(9, 17, 39, 0.78);
}

.add-on-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}

.add-on-heading .eyebrow {
  margin-bottom: 7px;
}

.add-on-heading h3 {
  font-size: 24px;
}

.add-on-heading > p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

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

.add-on-grid > div {
  display: grid;
  min-height: 98px;
  align-content: center;
  gap: 9px;
  padding: 21px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.add-on-grid > div:nth-child(3n) {
  border-right: 0;
}

.add-on-grid > div:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.add-on-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.add-on-grid strong {
  color: #dce7f8;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  align-items: start;
  gap: clamp(48px, 6vw, 78px);
}

.form-intro {
  position: sticky;
  top: 110px;
}

.form-intro h2 {
  font-size: clamp(38px, 4.4vw, 58px);
}

.form-intro .lede {
  margin-bottom: 32px;
  font-size: 17px;
}

.info-note {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--muted);
  background: rgba(10, 18, 41, 0.66);
  font-size: 12px;
}

.info-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.budget-callout {
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(91, 190, 255, 0.2);
  border-left: 2px solid var(--mint);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(91, 190, 255, 0.08), rgba(94, 86, 255, 0.035)),
    rgba(10, 18, 41, 0.72);
}

.budget-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
}

.budget-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.budget-callout.compact {
  max-width: 560px;
  margin: 26px 0 0;
}

.order-form,
.contact-form,
.lead-form,
.login-card {
  padding: clamp(25px, 4vw, 40px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(91, 190, 255, 0.025), transparent 40%),
    rgba(10, 18, 41, 0.9);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.form-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 3px 0 22px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-section-label::after {
  height: 1px;
  flex: 1;
  background: var(--line);
  content: "";
}

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

.field {
  display: grid;
  align-content: start;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.field > span {
  color: #bec9dc;
  font-size: 11px;
  font-weight: 650;
}

.field label small,
.field > span small {
  color: var(--muted-2);
  font-weight: 450;
}

.field-help {
  margin: 1px 0 0;
  color: #75819a;
  font-size: 10px;
  line-height: 1.55;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: #080d1f;
  font-size: 13px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.field input,
.field select {
  height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 118px;
  padding: 13px 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #53617b;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(91, 190, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(91, 190, 255, 0.07);
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 20px,
    calc(100% - 12px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field select option {
  background: #091127;
}

.stem-links-field {
  gap: 10px;
}

.stem-links-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.stem-link-count {
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.stem-link-list {
  display: grid;
  gap: 9px;
}

.stem-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
}

.stem-link-remove,
.stem-link-add {
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: #b9c5da;
  background: rgba(12, 21, 46, 0.86);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.stem-link-remove {
  min-width: 76px;
  padding-inline: 12px;
}

.stem-link-remove:hover {
  border-color: rgba(255, 122, 122, 0.42);
  color: #ffc0c0;
  background: rgba(80, 20, 35, 0.3);
}

.stem-link-add {
  display: inline-flex;
  width: max-content;
  min-height: 40px;
  align-items: center;
  gap: 9px;
  margin-top: 1px;
  padding: 0 14px;
}

.stem-link-add span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #050817;
  background: var(--mint);
  font-size: 16px;
  line-height: 1;
}

.stem-link-add:hover {
  border-color: rgba(91, 190, 255, 0.4);
  color: var(--ink);
  background: rgba(18, 34, 70, 0.92);
}

.stem-link-add:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.checkbox-field {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 11px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(9, 15, 16, 0.55);
  font-size: 11px;
  cursor: pointer;
}

.checkbox-field input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--mint);
}

.turnstile-slot {
  min-height: 65px;
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.form-actions p {
  margin: 0;
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.5;
}

.form-success {
  display: grid;
  min-height: 410px;
  place-items: center;
  padding: 40px;
  border: 1px solid rgba(91, 190, 255, 0.23);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 40%, rgba(91, 190, 255, 0.1), transparent 45%),
    #0c152d;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid rgba(91, 190, 255, 0.25);
  border-radius: 50%;
  color: #050817;
  background: var(--mint);
  font-size: 28px;
  box-shadow: 0 0 40px rgba(91, 190, 255, 0.14);
}

.form-success h3 {
  font-size: 34px;
}

.form-success p {
  max-width: 470px;
  margin-inline: auto;
  color: var(--muted);
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.proof-bar div {
  padding: 23px;
  background: #0b1329;
}

.proof-bar strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 18px;
}

.proof-bar span {
  color: var(--muted);
  font-size: 11px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 35px;
}

.filter-chip {
  min-height: 39px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.filter-chip:hover,
.filter-chip.active {
  border-color: rgba(91, 190, 255, 0.28);
  color: #050817;
  background: var(--mint);
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 490px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(9, 17, 39, 0.86);
  transition:
    border-color 200ms ease,
    transform 200ms ease;
}

.product-card:hover {
  border-color: rgba(91, 190, 255, 0.25);
  transform: translateY(-4px);
}

.product-card-coming-soon {
  border-color: rgba(143, 131, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(91, 190, 255, 0.045), transparent 48%),
    rgba(9, 17, 39, 0.86);
}

.product-card-coming-soon:hover {
  border-color: rgba(143, 131, 255, 0.32);
}

.product-art {
  position: relative;
  height: 205px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(91, 190, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 190, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 30% 30%, rgba(91, 190, 255, 0.13), transparent 42%),
    #080d1f;
  background-size:
    28px 28px,
    28px 28px,
    auto,
    auto;
}

.product-art.orange {
  background:
    linear-gradient(rgba(75, 95, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 95, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 30% 30%, rgba(75, 95, 255, 0.16), transparent 42%),
    #0d1024;
  background-size:
    28px 28px,
    28px 28px,
    auto,
    auto;
}

.product-art.purple {
  background:
    linear-gradient(rgba(116, 104, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 104, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 30% 30%, rgba(116, 104, 255, 0.15), transparent 42%),
    #0f0e13;
  background-size:
    28px 28px,
    28px 28px,
    auto,
    auto;
}

.art-disc {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 125px;
  height: 125px;
  border: 15px solid rgba(91, 190, 255, 0.13);
  border-top-color: var(--mint);
  border-right-color: var(--lime);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
}

.orange .art-disc {
  border-color: rgba(75, 95, 255, 0.13);
  border-top-color: var(--orange);
  border-right-color: var(--yellow);
}

.purple .art-disc {
  border-color: rgba(116, 104, 255, 0.12);
  border-top-color: #b284ff;
  border-right-color: #f18aff;
}

.art-disc::before {
  position: absolute;
  inset: 21px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  content: "";
}

.art-wave {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  height: 32px;
  background: repeating-linear-gradient(90deg, rgba(91, 190, 255, 0.65) 0 2px, transparent 2px 7px);
  clip-path: polygon(
    0 68%,
    8% 20%,
    16% 80%,
    24% 35%,
    32% 73%,
    40% 10%,
    48% 66%,
    56% 25%,
    64% 79%,
    72% 35%,
    80% 90%,
    88% 47%,
    100% 70%,
    100% 100%,
    0 100%
  );
}

.orange .art-wave {
  background: repeating-linear-gradient(90deg, rgba(75, 95, 255, 0.7) 0 2px, transparent 2px 7px);
}

.purple .art-wave {
  background: repeating-linear-gradient(90deg, rgba(116, 104, 255, 0.72) 0 2px, transparent 2px 7px);
}

.art-label {
  position: absolute;
  top: 16px;
  left: 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.art-version {
  position: absolute;
  top: 16px;
  right: 18px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.product-topline h3 {
  max-width: 245px;
  font-size: 25px;
}

.product-price {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.product-body > p {
  color: var(--muted);
  font-size: 12px;
}

.product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 20px;
}

.product-meta div {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.product-meta span,
.product-meta strong {
  display: block;
}

.product-meta span {
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-meta strong {
  margin-top: 3px;
  color: #c0cbe0;
  font-size: 10px;
  font-weight: 560;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}

.tag {
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.product-body .button {
  margin-top: auto;
}

.product-coming-soon-action {
  gap: 10px;
  border-color: rgba(143, 131, 255, 0.28);
  color: #d5d8ff;
  background: rgba(91, 89, 190, 0.08);
  cursor: default;
}

.coming-soon-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px rgba(91, 190, 255, 0.8);
}

.lead-magnet {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.lead-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(143, 131, 255, 0.18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(91, 190, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 190, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(143, 131, 255, 0.12), transparent 45%),
    #0c1315;
  background-size:
    32px 32px,
    32px 32px,
    auto,
    auto;
}

.lead-visual .chain-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 67%;
  padding: 29px;
  border: 1px solid rgba(143, 131, 255, 0.3);
  border-radius: 24px;
  background: rgba(13, 21, 22, 0.86);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%) rotate(-5deg);
}

.chain-box::before,
.chain-box::after {
  position: absolute;
  z-index: -1;
  width: 90%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #0c152d;
  content: "";
}

.chain-box::before {
  top: 15px;
  right: -25px;
  transform: rotate(8deg);
}

.chain-box::after {
  top: -12px;
  left: -25px;
  transform: rotate(-7deg);
}

.chain-box .mini-logo {
  margin-bottom: 64px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.chain-box strong {
  display: block;
  max-width: 290px;
  margin-inline: auto;
  font-family: var(--display);
  font-size: 35px;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-align: center;
}

.chain-box span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
}

.lead-form h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 4.8vw, 59px);
}

.lead-form > p {
  margin-bottom: 30px;
  color: var(--muted);
}

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

.lead-form .field.full {
  grid-column: auto;
}

.lead-form .form-actions {
  grid-column: auto;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(520px, 1.38fr);
  align-items: start;
  gap: clamp(55px, 9vw, 120px);
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro p {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 27px 0;
  color: #dce4f4;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 690;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--mint);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  content: "+";
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 680px;
  margin: -5px 55px 27px 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(60px, 9vw, 110px);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 38px;
}

.contact-link {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(120deg, rgba(91, 190, 255, 0.035), transparent 44%),
    rgba(9, 17, 39, 0.78);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.contact-link:hover {
  border-color: rgba(91, 190, 255, 0.25);
  transform: translateX(3px);
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(125, 218, 255, 0.24);
  border-radius: 12px;
  color: var(--mint-bright);
  background: linear-gradient(145deg, rgba(75, 95, 255, 0.34), rgba(91, 190, 255, 0.12));
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-icon .icon-dot {
  fill: currentColor;
  stroke: none;
}

.contact-copy {
  display: block;
  min-width: 0;
}

.contact-copy > span {
  display: block;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.contact-copy strong {
  display: block;
  margin-top: 3px;
  font-size: 12px;
}

.contact-arrow {
  color: var(--muted);
}

.artist-disclaimer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 10px;
}

.admin-page {
  min-height: 78vh;
  padding: 70px 0 100px;
  border-top: 1px solid var(--line);
  background: #090e10;
}

.admin-login-wrap {
  display: grid;
  min-height: 560px;
  place-items: center;
}

.login-card {
  width: min(480px, 100%);
  text-align: center;
}

.login-lock {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 25px;
  place-items: center;
  border: 1px solid rgba(91, 190, 255, 0.22);
  border-radius: 20px;
  color: var(--mint);
  background: rgba(91, 190, 255, 0.07);
  font-size: 23px;
}

.login-card h1 {
  margin-bottom: 14px;
  font-size: 43px;
}

.login-card > p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

.demo-note {
  margin-top: 17px;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
}

.admin-shell {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 28px;
}

.admin-title .eyebrow {
  margin-bottom: 10px;
}

.admin-title h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 59px);
}

.admin-actions {
  display: flex;
  gap: 9px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 26px;
}

.stat-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #0b1329;
}

.stat-card span {
  display: block;
  overflow: hidden;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
}

.stat-card strong.mint {
  color: var(--mint);
}

.admin-workspace {
  display: grid;
  grid-template-columns: 206px minmax(0, 1fr);
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #080d1f;
}

.admin-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 12px;
  border-right: 1px solid var(--line);
  background: #091127;
}

.admin-tab {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  text-align: left;
  cursor: pointer;
}

.admin-tab:hover,
.admin-tab.active {
  color: var(--ink);
  background: rgba(91, 190, 255, 0.08);
}

.admin-tab.active::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  content: "";
}

.admin-content {
  min-width: 0;
  padding: 25px;
}

.table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.table-toolbar h2 {
  margin: 0;
  font-size: 29px;
}

.table-search {
  width: min(290px, 100%);
  height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  color: var(--ink);
  background: #070b19;
  font-size: 11px;
}

.table-search:focus {
  border-color: rgba(91, 190, 255, 0.35);
}

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

.admin-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  text-align: left;
}

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

.admin-table th {
  color: var(--muted-2);
  background: #0b1329;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-table td {
  color: #b9c4d8;
  font-size: 10px;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table tbody tr {
  transition: background 150ms ease;
}

.admin-table tbody tr:hover {
  background: rgba(91, 190, 255, 0.025);
}

.customer-cell strong,
.customer-cell span {
  display: block;
}

.customer-cell strong {
  color: var(--ink);
  font-size: 11px;
}

.customer-cell span {
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 8px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--mono);
  font-size: 7px;
  white-space: nowrap;
}

.status-pill.paid,
.status-pill.delivered,
.status-pill.completed {
  border-color: rgba(91, 190, 255, 0.17);
  color: var(--mint);
  background: rgba(91, 190, 255, 0.06);
}

.status-pill.new,
.status-pill.in-progress {
  border-color: rgba(142, 223, 255, 0.18);
  color: var(--yellow);
  background: rgba(142, 223, 255, 0.05);
}

.status-pill.awaiting-payment,
.status-pill.revision-requested {
  border-color: rgba(75, 95, 255, 0.18);
  color: var(--orange);
  background: rgba(75, 95, 255, 0.05);
}

.empty-state {
  display: grid;
  min-height: 330px;
  place-items: center;
  padding: 40px;
  text-align: center;
}

.empty-state strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 26px;
}

.empty-state span {
  color: var(--muted);
  font-size: 12px;
}

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

.settings-card {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #091127;
}

.settings-card h3 {
  font-size: 19px;
}

.settings-card p {
  color: var(--muted);
  font-size: 11px;
}

.settings-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.settings-status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.modal-root {
  position: relative;
  z-index: 150;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  overflow-y: auto;
  place-items: center;
  padding: 24px;
  background: rgba(3, 7, 8, 0.82);
  backdrop-filter: blur(10px);
  animation: fade-in 160ms ease both;
}

.modal {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: #0b1228;
  box-shadow: var(--shadow);
  animation: modal-in 200ms ease both;
}

.modal-wide {
  width: min(760px, 100%);
}

.modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.modal .eyebrow {
  margin-bottom: 13px;
}

.modal h2 {
  padding-right: 38px;
  font-size: clamp(35px, 5vw, 49px);
}

.modal > p {
  color: var(--muted);
}

.modal .form-grid {
  margin-top: 25px;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.order-detail {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #080d1f;
}

.order-detail span,
.order-detail strong {
  display: block;
}

.order-detail span {
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.order-detail strong {
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-size: 11px;
  font-weight: 600;
}

.toast-region {
  position: fixed;
  z-index: 220;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: min(360px, calc(100% - 40px));
  gap: 8px;
}

.toast {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 14px 15px;
  border: 1px solid rgba(91, 190, 255, 0.2);
  border-radius: 12px;
  color: #dce6f6;
  background: rgba(11, 18, 40, 0.96);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  font-size: 11px;
  animation: toast-in 200ms ease both;
}

.toast::before {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: #050817;
  background: var(--mint);
  font-size: 10px;
  font-weight: 900;
  content: "✓";
}

.toast button {
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.site-footer {
  padding: 80px max(24px, calc((100vw - 1180px) / 2)) 24px;
  border-top: 1px solid var(--line);
  background: #03050f;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  padding-bottom: 65px;
}

.footer-brand p {
  margin: 28px 0 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

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

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-label {
  margin-bottom: 9px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: var(--muted);
  font-size: 11px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  max-width: 720px;
  margin: 0;
  color: #5d6865;
  font-size: 9px;
}

.footer-bottom p:last-child {
  text-align: right;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 80px 24px;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 12px;
}

.not-found h1 {
  margin: 18px auto 25px;
  font-size: clamp(55px, 10vw, 110px);
}

.not-found p {
  margin-bottom: 30px;
  color: var(--muted);
}

.checkout-result > div {
  width: min(760px, 100%);
}

.checkout-result h1 {
  font-size: clamp(48px, 8vw, 88px);
}

.checkout-result .button {
  margin: 6px;
}

.checkout-loader {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border: 3px solid rgba(91, 190, 255, 0.18);
  border-top-color: var(--mint);
  border-radius: 50%;
  animation: checkout-spin 800ms linear infinite;
}

.portfolio-overview-section {
  padding-block: clamp(58px, 6vw, 78px);
}

.muso-source-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(8, 14, 31, 0.8);
}

.muso-source-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted-2);
  box-shadow: 0 0 0 5px rgba(111, 123, 152, 0.08);
}

.muso-source-bar.is-loading .muso-source-dot {
  background: var(--yellow);
  box-shadow: 0 0 16px rgba(142, 223, 255, 0.55);
  animation: muso-pulse 1.4s ease-in-out infinite;
}

.muso-source-bar.is-live {
  border-color: rgba(91, 190, 255, 0.22);
}

.muso-source-bar.is-live .muso-source-dot {
  background: var(--mint);
  box-shadow: 0 0 16px rgba(91, 190, 255, 0.55);
}

.muso-source-bar.is-error .muso-source-dot {
  background: var(--danger);
  box-shadow: 0 0 14px rgba(255, 122, 122, 0.35);
}

.muso-source-copy {
  display: grid;
  line-height: 1.35;
}

.muso-source-copy strong {
  font-size: 13px;
}

.muso-source-copy span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.muso-source-bar > a {
  color: var(--mint-bright);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.portfolio-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.portfolio-stat {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
  background:
    radial-gradient(circle at 100% 0, rgba(91, 190, 255, 0.07), transparent 44%),
    rgba(8, 14, 31, 0.96);
}

.portfolio-stat > span,
.portfolio-card-label span,
.portfolio-player-screen > span,
.portfolio-empty-state > span,
.muso-chart-row span {
  color: #83a7d5;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-stat strong {
  margin-top: auto;
  padding-top: 30px;
  font-family: var(--display);
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 760;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.portfolio-stat small {
  min-height: 36px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.portfolio-stat-limited strong {
  color: #b4bfd4;
  font-size: clamp(27px, 3.1vw, 43px);
  letter-spacing: -0.035em;
}

.portfolio-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 360px);
  align-items: start;
  gap: clamp(34px, 5vw, 66px);
}

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

.portfolio-section-head h2 {
  max-width: 640px;
  margin-bottom: 0;
  font-size: clamp(39px, 4.8vw, 62px);
}

.portfolio-section-head > p {
  max-width: 350px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 13px;
}

.portfolio-credit-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(4, 8, 20, 0.5);
}

.portfolio-credit {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(92px, 130px) 76px;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease;
}

.portfolio-credit:last-child {
  border-bottom: 0;
}

.portfolio-credit:hover {
  background: rgba(91, 190, 255, 0.035);
}

.portfolio-credit.is-credit-hidden {
  display: none;
}

.portfolio-credit-art,
.portfolio-art-placeholder {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
}

.portfolio-credit-art {
  border: 1px solid rgba(200, 220, 255, 0.1);
  background: #0d1630;
}

.portfolio-credit-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-art-placeholder {
  color: #7f91b7;
  background:
    linear-gradient(135deg, rgba(91, 190, 255, 0.13), transparent 55%),
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(200, 220, 255, 0.04) 7px 8px),
    #0d1630;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.portfolio-credit-main {
  min-width: 0;
}

.portfolio-credit-main > span,
.portfolio-credit-release > span {
  color: #78a8d6;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.portfolio-credit-main h3 {
  overflow: hidden;
  margin: 4px 0 1px;
  font-size: 16px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portfolio-credit-main p,
.portfolio-credit-release small {
  display: block;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portfolio-credit-release {
  min-width: 0;
}

.portfolio-credit-action {
  display: flex;
  justify-content: flex-end;
}

.portfolio-credit-action button,
.portfolio-credit-action > span {
  display: inline-flex;
  min-height: 33px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: #c4d0e5;
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.portfolio-credit-action button {
  cursor: pointer;
}

.portfolio-credit-action button:hover,
.portfolio-credit-action button.is-selected {
  border-color: rgba(91, 190, 255, 0.38);
  color: var(--ink);
  background: rgba(91, 190, 255, 0.09);
}

.portfolio-credit-action > span {
  border-color: transparent;
  color: var(--muted-2);
}

.portfolio-more {
  margin-top: 18px;
}

.portfolio-credit-skeleton {
  grid-template-columns: 64px 1fr 130px 76px;
}

.portfolio-credit-skeleton > span:not(.portfolio-art-placeholder) {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #101a34 20%, #182546 45%, #101a34 70%);
  background-size: 220% 100%;
  animation: portfolio-shimmer 1.3s linear infinite;
}

.portfolio-rail {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 16px;
}

.portfolio-player-card,
.portfolio-collaborator-card {
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0, rgba(75, 95, 255, 0.09), transparent 46%),
    rgba(8, 14, 31, 0.92);
}

.portfolio-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.portfolio-card-label i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(91, 190, 255, 0.35), transparent);
}

.portfolio-player-screen {
  display: grid;
  min-height: 235px;
  align-content: center;
  padding: 22px 0 10px;
}

.portfolio-player-screen h3 {
  margin: 12px 0 8px;
  font-size: 25px;
  line-height: 1.15;
}

.portfolio-player-screen p,
.portfolio-player-note,
.portfolio-muted-copy {
  color: var(--muted);
  font-size: 11px;
}

.portfolio-player-screen iframe {
  margin: 13px 0 11px;
  border: 0;
  border-radius: 12px;
}

.portfolio-player-screen > a {
  width: max-content;
  color: var(--mint-bright);
  font-size: 10px;
  font-weight: 700;
}

.portfolio-player-note {
  margin: 10px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.portfolio-collaborator-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.portfolio-collaborator-list li {
  display: grid;
  min-width: 0;
  grid-template-columns: 31px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.portfolio-collaborator-list img,
.portfolio-collaborator-list li > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--mint-bright);
  background: #111d3a;
  font-family: var(--mono);
  font-size: 9px;
  object-fit: cover;
}

.portfolio-collaborator-list strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portfolio-inline-loading {
  padding: 28px 0 8px;
  color: var(--muted);
  font-size: 11px;
}

.portfolio-empty-state {
  padding: clamp(34px, 5vw, 58px);
}

.portfolio-empty-state.compact {
  padding: 30px;
}

.portfolio-empty-state h3 {
  margin: 10px 0 7px;
  font-size: clamp(23px, 3vw, 31px);
}

.portfolio-empty-state p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.portfolio-empty-state .button {
  margin-top: 22px;
}

.muso-chart-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 90px);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0, rgba(143, 131, 255, 0.1), transparent 38%),
    rgba(8, 14, 31, 0.8);
}

.muso-chart-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.6vw, 59px);
}

.muso-chart-panel > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
}

.muso-chart-panel .button {
  margin-top: 18px;
}

.muso-call-note {
  display: block;
  margin-top: 10px;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.muso-chart-list {
  overflow: hidden;
  align-self: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(4, 8, 20, 0.52);
}

.muso-chart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.muso-chart-row:last-child {
  border-bottom: 0;
}

.muso-chart-row div {
  display: grid;
  min-width: 0;
}

.muso-chart-row strong {
  overflow: hidden;
  margin-top: 3px;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.muso-chart-row p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.muso-chart-row b {
  color: var(--mint-bright);
  font-family: var(--mono);
  font-size: 18px;
}

@keyframes muso-pulse {
  50% {
    opacity: 0.45;
  }
}

@keyframes portfolio-shimmer {
  to {
    background-position: -220% 0;
  }
}

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

@keyframes note-pulse {
  0%,
  100% {
    filter: brightness(0.82);
    transform: translateX(0);
  }
  50% {
    filter: brightness(1.15);
    transform: translateX(2px);
  }
}

@keyframes meter {
  from {
    transform: scaleY(0.45);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

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

@keyframes fade-in {
  from {
    opacity: 0;
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(390px, 90vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 92px 35px 35px;
    border-left: 1px solid var(--line);
    background: rgba(6, 10, 25, 0.98);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      clip-path 220ms ease,
      opacity 180ms ease;
  }

  .nav-open .site-nav {
    clip-path: inset(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-open .nav-toggle {
    position: fixed;
    z-index: 4;
    top: 17px;
    right: 24px;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav a,
  .site-header.scrolled .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 26px;
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
    gap: 38px;
  }

  .hero-copy h1 {
    font-size: clamp(50px, 6.4vw, 72px);
  }

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

  .pricing-card {
    min-height: 470px;
  }

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

  .process-step:nth-child(3)::after {
    display: none;
  }

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

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

  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .studio-visual {
    width: min(650px, calc(100% - 18px));
    margin-inline: auto;
    transform: none;
  }

  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-card.featured {
    grid-column: 1 / -1;
  }

  .offer-card {
    min-height: 350px;
  }

  .card-index {
    margin-bottom: 48px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .spectrum-card {
    min-height: 390px;
  }

  .clarity-visual {
    width: min(100%, 650px);
    min-height: 410px;
    margin-inline: auto;
  }

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

  .process-step:nth-child(2)::after,
  .process-step:nth-child(4)::after {
    display: none;
  }

  .process-step:nth-child(3)::after {
    display: block;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel .button-row {
    justify-content: flex-start;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .form-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .add-on-grid > div:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .add-on-grid > div:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .add-on-grid > div:nth-child(2n) {
    border-right: 0;
  }

  .add-on-grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .form-intro,
  .faq-intro {
    position: static;
  }

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

  .lead-magnet {
    grid-template-columns: 1fr;
  }

  .lead-visual {
    min-height: 360px;
  }

  .admin-workspace {
    grid-template-columns: 1fr;
  }

  .admin-tabs {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .admin-tab {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .shell,
  .shell-narrow,
  .admin-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .site-header.scrolled {
    min-height: 68px;
  }

  .brand-mark {
    width: 40px;
  }

  .brand-name {
    font-size: 11px;
  }

  .brand-sub {
    font-size: 7px;
  }

  .nav-open .nav-toggle {
    top: 12px;
    right: 14px;
  }

  .hero {
    min-height: auto;
    padding: 73px 0 52px;
  }

  .hero-copy h1,
  h1 {
    font-size: clamp(42px, 12.5vw, 58px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .lede {
    font-size: 16px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .studio-visual {
    width: calc(100% - 6px);
  }

  .visual-window {
    border-radius: 20px;
  }

  .piano-roll {
    height: 245px;
    background-size:
      100% 27px,
      38px 100%,
      76px 100%,
      auto;
  }

  .midi-note:nth-of-type(2) {
    top: 48px;
  }

  .midi-note:nth-of-type(3) {
    top: 75px;
  }

  .midi-note:nth-of-type(4) {
    top: 102px;
  }

  .midi-note:nth-of-type(5) {
    top: 129px;
  }

  .midi-note:nth-of-type(6) {
    top: 156px;
  }

  .midi-note:nth-of-type(7) {
    top: 183px;
  }

  .midi-note:nth-of-type(8) {
    top: 210px;
  }

  .transport {
    grid-template-columns: auto 1fr;
  }

  .mini-meter {
    display: none;
  }

  .transport-info div {
    padding-inline: 7px;
  }

  .hero-logo-disc {
    right: -6px;
    bottom: 48px;
    width: 104px;
  }

  .scroll-cue {
    margin-top: 45px;
  }

  .section {
    padding: 72px 0;
  }

  .section-sm {
    padding: 55px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 33px;
  }

  .section-heading p:last-child {
    margin-top: 22px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card.featured {
    grid-column: auto;
  }

  .offer-card {
    min-height: 330px;
    padding: 25px;
  }

  .genre-track span {
    font-size: 12px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .spectrum-card {
    min-height: 330px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 220px;
  }

  .step-number {
    margin-bottom: 38px;
  }

  .process-step::after {
    display: none !important;
  }

  .cta-panel {
    gap: 35px;
    padding: 33px 24px;
    border-radius: 25px;
  }

  .page-hero {
    padding: 75px 0 55px;
  }

  .page-hero h1 {
    font-size: clamp(41px, 11.8vw, 56px);
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-card > p,
  .pricing-card h3 {
    min-height: 0;
  }

  .price-kicker {
    margin-bottom: 36px;
  }

  .proof-bar {
    grid-template-columns: 1fr;
  }

  .add-on-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 21px 18px;
  }

  .add-on-heading > p {
    text-align: left;
  }

  .add-on-grid {
    grid-template-columns: 1fr;
  }

  .add-on-grid > div,
  .add-on-grid > div:nth-child(2n),
  .add-on-grid > div:nth-child(3n),
  .add-on-grid > div:nth-last-child(-n + 2),
  .add-on-grid > div:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .add-on-grid > div:last-child {
    border-bottom: 0;
  }

  .form-layout {
    gap: 38px;
  }

  .order-form,
  .contact-form,
  .lead-form {
    padding: 22px 17px;
    border-radius: 20px;
  }

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

  .field.full,
  .checkbox-field,
  .form-actions {
    grid-column: auto;
  }

  .form-actions {
    display: grid;
  }

  .stem-links-heading {
    align-items: flex-start;
  }

  .stem-link-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .stem-link-remove {
    width: max-content;
    min-height: 36px;
  }

  .clarity-visual {
    min-height: 0;
    padding: 0;
    border-radius: 24px;
  }

  .clarity-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .clarity-waveforms {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 18px;
  }

  .clarity-divider {
    height: 44px;
  }

  .clarity-divider span {
    transform: rotate(90deg);
  }

  .clarity-chain {
    flex-wrap: wrap;
  }

  .clarity-chain i {
    display: none;
  }

  .session-board-head,
  .session-footer {
    padding-inline: 14px;
  }

  .session-board-head > div {
    display: grid;
    gap: 2px;
  }

  .session-ruler {
    margin-left: 65px;
    padding-right: 40px;
  }

  .session-track {
    grid-template-columns: 55px minmax(0, 1fr) 35px;
    min-height: 44px;
    padding-inline: 6px;
  }

  .track-name,
  .track-level,
  .session-ruler {
    font-size: 6px;
  }

  .session-master {
    gap: 6px;
  }

  .session-master span {
    display: none;
  }

  .processing-head,
  .processing-foot,
  .chain-board-head,
  .chain-board-foot {
    padding-inline: 15px;
  }

  .processing-row {
    grid-template-columns: 24px minmax(0, 1fr) 7px;
    min-height: 84px;
    gap: 10px;
  }

  .processing-setting {
    grid-column: 2;
  }

  .processing-light {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .processing-foot,
  .chain-board-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .chain-build-flow {
    grid-template-columns: 1fr;
    padding: 18px 15px;
  }

  .chain-stage {
    min-height: 190px;
  }

  .chain-stage strong {
    margin-top: 14px;
  }

  .chain-flow-arrow {
    height: 38px;
    transform: rotate(90deg);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 470px;
  }

  .lead-visual {
    min-height: 310px;
  }

  .lead-visual .chain-box {
    width: 75%;
    padding: 23px;
  }

  .chain-box .mini-logo {
    margin-bottom: 48px;
  }

  .chain-box strong {
    font-size: 29px;
  }

  .faq-layout,
  .contact-layout {
    gap: 45px;
  }

  .faq-item summary {
    font-size: 19px;
  }

  .contact-link {
    grid-template-columns: 39px minmax(0, 1fr) auto;
    padding: 13px;
  }

  .contact-link strong {
    overflow-wrap: anywhere;
  }

  .admin-page {
    padding-top: 45px;
  }

  .admin-topbar {
    display: block;
  }

  .admin-actions {
    margin-top: 20px;
  }

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

  .admin-content {
    padding: 16px;
  }

  .table-toolbar {
    display: block;
  }

  .table-search {
    width: 100%;
    margin-top: 13px;
  }

  .settings-grid,
  .order-detail-grid {
    grid-template-columns: 1fr;
  }

  .modal-backdrop {
    padding: 10px;
  }

  .modal {
    max-height: calc(100vh - 20px);
    padding: 27px 18px;
    border-radius: 20px;
  }

  .footer-top {
    gap: 50px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .portfolio-work-grid,
  .muso-chart-panel {
    grid-template-columns: 1fr;
  }

  .portfolio-rail {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-player-card,
  .portfolio-collaborator-card {
    min-height: 310px;
  }

  .portfolio-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .portfolio-section-head > p {
    max-width: 560px;
  }
}

@media (max-width: 680px) {
  .muso-source-bar {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .muso-source-bar > a {
    grid-column: 2;
    white-space: normal;
  }

  .portfolio-stat-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-stat {
    min-height: 165px;
  }

  .portfolio-work-grid {
    gap: 42px;
  }

  .portfolio-credit {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 11px;
  }

  .portfolio-credit-art,
  .portfolio-art-placeholder {
    width: 52px;
    height: 52px;
  }

  .portfolio-credit-main h3 {
    font-size: 14px;
  }

  .portfolio-credit-release {
    grid-column: 2;
  }

  .portfolio-credit-release small {
    display: none;
  }

  .portfolio-credit-action {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .portfolio-credit-action > span {
    display: none;
  }

  .portfolio-credit-skeleton {
    grid-template-columns: 52px 1fr 70px;
  }

  .portfolio-credit-skeleton > span:last-child {
    display: none;
  }

  .portfolio-rail {
    grid-template-columns: 1fr;
  }

  .portfolio-player-card,
  .portfolio-collaborator-card {
    min-height: 0;
  }

  .muso-chart-panel {
    gap: 36px;
    padding: 28px 19px;
    border-radius: 24px;
  }

  .muso-chart-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .muso-chart-row p {
    display: none;
  }
}

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