:root {
  --black: #050505;
  --ink: #111111;
  --soft-black: #151515;
  --panel: #101010;
  --line-dark: rgba(255, 255, 255, 0.11);
  --white: #ffffff;
  --warm-white: #f6f5f1;
  --paper: #eceae4;
  --muted: #8f8d87;
  --muted-dark: #6f6f6c;
  --orange: #ff5a1f;
  --orange-light: #ff7a3d;
  --orange-dark: #ce3e0c;
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

button {
  cursor: pointer;
}

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

.noscript {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
}

.is-hidden {
  visibility: hidden;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #000;
  transition:
    opacity 0.85s var(--ease),
    visibility 0.85s;
}

.preloader.completed {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.skip-intro {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: 32px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.preloader-stage {
  position: relative;
  display: grid;
  width: min(860px, 90vw);
  min-height: 470px;
  place-items: center;
}

.logo-sequence {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 230px;
  transform: translate(-50%, -50%);
}

.official-logo-wave,
.logo-luminosity,
.preloader-logo {
  position: absolute;
  inset: 0;
  margin: auto;
}

.official-logo-wave {
  display: block;
  width: 220px;
  height: 170px;
  /* These are the four original vector bars from the official monogram. */
  opacity: 0;
  filter: blur(5px) drop-shadow(0 0 18px rgba(255, 255, 255, 0.38));
  transform: scale(2.55, 1.75);
  transform-origin: 29.5% 74%;
  will-change: opacity, filter, transform;
  animation: officialWaveDock 5.4s var(--ease) forwards;
}

.official-logo-wave .wave-bar {
  fill: #fff;
  transform-box: fill-box;
  transform-origin: center bottom;
  will-change: transform;
}

.wave-bar-one {
  animation: waveBarOne 5.4s cubic-bezier(0.37, 0, 0.63, 1) forwards;
}

.wave-bar-two {
  animation: waveBarTwo 5.4s cubic-bezier(0.37, 0, 0.63, 1) forwards;
}

.wave-bar-three {
  animation: waveBarThree 5.4s cubic-bezier(0.37, 0, 0.63, 1) forwards;
}

.wave-bar-four {
  animation: waveBarFour 5.4s cubic-bezier(0.37, 0, 0.63, 1) forwards;
}

.logo-luminosity {
  width: 260px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 90, 31, 0.38) 0,
    rgba(255, 90, 31, 0.14) 34%,
    transparent 70%
  );
  opacity: 0;
  filter: blur(14px);
  transform: scale(0.45);
  animation: logoLightBloom 5.4s var(--ease) forwards;
}

.preloader-logo {
  display: block;
  width: 220px;
  height: 170px;
  object-fit: contain;
}

.preloader-logo-white {
  opacity: 0;
  filter: blur(12px) drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  transform: scale(0.74);
  animation: whiteLogoReveal 5.4s var(--ease) forwards;
}

.preloader-logo-orange {
  opacity: 0;
  filter: blur(10px) drop-shadow(0 0 10px rgba(255, 90, 31, 0));
  transform: scale(0.9);
  animation: orangeLogoReveal 5.4s var(--ease) forwards;
}

.intro-copy {
  position: absolute;
  top: calc(50% + 130px);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-align: center;
}

.intro-copy span {
  display: block;
}

.intro-copy-one {
  opacity: 0;
  transform: translateY(18px);
  animation: copyOne 5.4s var(--ease) forwards;
}

.intro-copy-two {
  opacity: 0;
  transform: translateY(18px);
  animation: copyTwo 5.4s var(--ease) forwards;
}

.intro-copy em {
  color: var(--orange);
  font-style: normal;
}

.preloader-progress {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.preloader-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  animation: introProgress 5.4s linear forwards;
}

@keyframes officialWaveDock {
  0%,
  5% {
    opacity: 0;
    filter: blur(7px) drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    transform: scale(2.55, 1.55);
  }
  11% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 0 14px rgba(255, 255, 255, 0.34));
    transform: scale(2.55, 1.72);
  }
  17% {
    opacity: 1;
    transform: scale(2.55, 2.08);
  }
  23% {
    opacity: 1;
    transform: scale(2.55, 1.62);
  }
  29% {
    opacity: 1;
    transform: scale(2.42, 1.96);
  }
  35% {
    opacity: 1;
    transform: scale(2.12, 1.58);
  }
  43% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 0 18px rgba(255, 255, 255, 0.46));
    transform: scale(1.45, 1.22);
  }
  50%,
  61% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 0 11px rgba(255, 255, 255, 0.3));
    transform: scale(1);
  }
  68%,
  100% {
    opacity: 0;
    filter: blur(0) drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    transform: scale(1);
  }
}

@keyframes waveBarOne {
  0%,
  7% {
    transform: scaleY(0.56);
  }
  14% {
    transform: scaleY(1.02);
  }
  21% {
    transform: scaleY(0.72);
  }
  29% {
    transform: scaleY(1.08);
  }
  38%,
  100% {
    transform: scaleY(1);
  }
}

@keyframes waveBarTwo {
  0%,
  7% {
    transform: scaleY(0.82);
  }
  14% {
    transform: scaleY(0.58);
  }
  21% {
    transform: scaleY(1.12);
  }
  29% {
    transform: scaleY(0.76);
  }
  38%,
  100% {
    transform: scaleY(1);
  }
}

@keyframes waveBarThree {
  0%,
  7% {
    transform: scaleY(0.48);
  }
  14% {
    transform: scaleY(0.94);
  }
  21% {
    transform: scaleY(0.62);
  }
  29% {
    transform: scaleY(1.06);
  }
  38%,
  100% {
    transform: scaleY(1);
  }
}

@keyframes waveBarFour {
  0%,
  7% {
    transform: scaleY(0.9);
  }
  14% {
    transform: scaleY(0.52);
  }
  21% {
    transform: scaleY(1.08);
  }
  29% {
    transform: scaleY(0.7);
  }
  38%,
  100% {
    transform: scaleY(1);
  }
}

@keyframes whiteLogoReveal {
  0%,
  43% {
    opacity: 0;
    filter: blur(7px) drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    transform: scale(0.985);
  }
  50%,
  61% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 0 11px rgba(255, 255, 255, 0.2));
    transform: scale(1);
  }
  69%,
  100% {
    opacity: 0;
    filter: blur(2px) drop-shadow(0 0 18px rgba(255, 90, 31, 0.18));
    transform: scale(1);
  }
}

@keyframes orangeLogoReveal {
  0%,
  52% {
    opacity: 0;
    filter: blur(10px) drop-shadow(0 0 10px rgba(255, 90, 31, 0));
    transform: scale(0.9);
  }
  66%,
  100% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 0 12px rgba(255, 90, 31, 0.9))
      drop-shadow(0 0 42px rgba(255, 90, 31, 0.42));
    transform: scale(1);
  }
}

@keyframes logoLightBloom {
  0%,
  57% {
    opacity: 0;
    transform: scale(0.45);
  }
  65% {
    opacity: 1;
    transform: scale(1.08);
  }
  82%,
  100% {
    opacity: 0.64;
    transform: scale(0.92);
  }
}

@keyframes copyOne {
  0%,
  61% {
    opacity: 0;
    transform: translateY(18px);
  }
  69%,
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  85%,
  100% {
    opacity: 0;
    transform: translateY(-12px);
  }
}

@keyframes copyTwo {
  0%,
  81% {
    opacity: 0;
    transform: translateY(18px);
  }
  90%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introProgress {
  to {
    transform: scaleX(1);
  }
}

/* Private preview gate */
.access-gate {
  position: fixed;
  inset: 0;
  z-index: 9000;
  overflow: hidden;
  display: grid;
  visibility: hidden;
  min-height: 100svh;
  place-items: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 90, 31, 0.08), transparent 28%),
    #020202;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.7s var(--ease),
    visibility 0.7s;
}

.access-gate.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.access-gate.unlocked {
  opacity: 0;
  pointer-events: none;
}

.admin-entry {
  position: absolute;
  z-index: 4;
  top: 30px;
  right: 34px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  transition: color 0.35s ease;
}

.admin-entry i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0;
  transition:
    border-color 0.35s ease,
    color 0.35s ease,
    transform 0.5s var(--ease);
}

.admin-entry:hover {
  color: var(--white);
}

.admin-entry:hover i {
  border-color: var(--orange);
  color: var(--orange);
  transform: rotate(45deg);
}

.gate-orbits {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(720px, 76vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.gate-orbits::after {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background: rgba(255, 90, 31, 0.08);
  filter: blur(60px);
  content: "";
  animation: gateGlow 5s ease-in-out infinite;
}

.gate-orbits i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.gate-orbits i:nth-child(2) {
  inset: 14%;
  border-color: rgba(255, 90, 31, 0.09);
  animation: gateOrbit 15s linear infinite;
}

.gate-orbits i:nth-child(2)::before {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow:
    0 0 15px rgba(255, 90, 31, 0.9),
    0 0 38px rgba(255, 90, 31, 0.5);
  content: "";
}

.gate-orbits i:nth-child(3) {
  inset: 29%;
  border-color: rgba(255, 255, 255, 0.075);
}

.gate-message {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding: 40px 24px;
  text-align: center;
}

.gate-message > img {
  width: clamp(150px, 16vw, 220px);
  height: 92px;
  margin-bottom: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(255, 90, 31, 0.12));
}

.gate-message > p,
.admin-login-panel > p {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.27em;
}

.gate-message h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 8.4vw, 142px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.76;
  text-transform: uppercase;
}

.gate-message h1 em {
  color: var(--orange);
  font-style: normal;
}

.gate-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.gate-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 90, 31, 0.9);
  animation: gatePulse 1.8s ease-in-out infinite;
}

.admin-login-panel {
  position: absolute;
  z-index: 6;
  top: 0;
  right: 0;
  display: flex;
  visibility: hidden;
  width: min(500px, 100%);
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 74px);
  border-left: 1px solid rgba(255, 90, 31, 0.34);
  background:
    linear-gradient(155deg, rgba(255, 90, 31, 0.09), transparent 28%),
    rgba(8, 8, 8, 0.97);
  box-shadow: -40px 0 100px rgba(0, 0, 0, 0.66);
  opacity: 0;
  transform: translateX(104%);
  backdrop-filter: blur(28px);
  transition:
    transform 0.75s var(--ease),
    opacity 0.45s ease,
    visibility 0.75s;
}

.admin-login-panel.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.admin-login-panel > img {
  width: 74px;
  height: 58px;
  margin-bottom: 34px;
  object-fit: contain;
}

.admin-login-panel h2 {
  margin: 0 0 42px;
  font-family: var(--display);
  font-size: clamp(62px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.76;
  text-transform: uppercase;
}

.admin-login-close {
  position: absolute;
  top: 25px;
  right: 28px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
}

.admin-login-panel form {
  display: grid;
  gap: 24px;
}

.admin-login-panel label {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-login-panel input {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0.01em;
  transition: border-color 0.25s ease;
}

.admin-login-panel input:focus {
  border-color: var(--orange);
}

.admin-login-panel form > button {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 20px;
  border: 0;
  border-radius: 3px;
  background: var(--orange);
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-login-panel form > button span {
  font-size: 18px;
}

.admin-login-error {
  min-height: 18px;
  margin: -10px 0 0;
  color: #ff8a62;
  font-size: 11px;
}

.admin-login-panel small {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.31);
  font-size: 9px;
  letter-spacing: 0.07em;
}

.admin-login-panel.invalid {
  animation: adminShake 0.46s ease;
}

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

@keyframes gateGlow {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.12);
  }
}

@keyframes gatePulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes adminShake {
  0%,
  100% {
    transform: translateX(0);
  }
  28% {
    transform: translateX(-10px);
  }
  58% {
    transform: translateX(8px);
  }
}

/* Shared */
.site-shell {
  overflow: clip;
  background: var(--black);
}

.home-ribbon {
  position: fixed;
  z-index: 52;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 34px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 7px 20px;
  background: var(--orange);
  color: var(--black);
  font-size: 10px;
  letter-spacing: 0.015em;
  text-align: center;
}

.home-ribbon span {
  width: 5px;
  height: 5px;
  margin-right: 3px;
  border-radius: 50%;
  background: var(--black);
}

.home-ribbon strong {
  font-weight: 850;
}

.home-ribbon em {
  font-style: normal;
  font-weight: 620;
  opacity: 0.67;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 34px;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  display: block;
  width: 64px;
  height: 52px;
  object-fit: contain;
}

.monogram-logo {
  display: block;
  width: 42px;
  height: 36px;
  object-fit: contain;
}

.brand-symbol {
  display: inline-grid;
  width: 44px;
  height: 34px;
  place-items: center;
  color: var(--white);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 1;
}

.brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-on-light {
  color: var(--black);
}

.brand-symbol-dark {
  color: var(--black);
}

.desktop-nav {
  display: flex;
  gap: 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 650;
}

.desktop-nav a {
  transition: color 0.25s;
}

.desktop-nav a:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.text-button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pill-button {
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 780;
}

.pill-button-light {
  background: var(--white);
  color: var(--black);
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-light {
  color: var(--black);
  background: var(--warm-white);
}

.section-orange {
  color: var(--black);
  background: var(--orange);
}

.button {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: -0.01em;
  transition:
    transform 0.25s var(--ease),
    background 0.25s,
    color 0.25s;
}

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

.button span {
  margin-left: 16px;
}

.button-orange {
  background: var(--orange);
  color: var(--black);
}

.button-orange:hover {
  background: var(--orange-light);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--white);
}

.button-black {
  background: var(--black);
  color: var(--white);
}

.button-outline-dark {
  border: 1px solid rgba(0, 0, 0, 0.4);
  background: transparent;
  color: var(--black);
}

.section-label,
.eyebrow {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.18em;
}

.editorial-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 7.5vw, 118px);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.84;
  text-transform: uppercase;
}

.editorial-title em {
  color: var(--orange);
  font-style: normal;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 6vw;
  overflow: hidden;
  padding: 184px 7vw 90px;
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -14vw;
  bottom: -38vw;
  width: 75vw;
  height: 75vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.13), transparent 67%);
  content: "";
  pointer-events: none;
}

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

.display-title {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 9.2vw, 162px);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.79;
  text-transform: uppercase;
}

.display-title span {
  color: var(--orange);
}

.hero-support {
  max-width: 520px;
  margin: 34px 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.live-composition {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.5);
}

.composition-header,
.composition-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.composition-header {
  border-bottom: 1px solid var(--line-dark);
}

.composition-header > :nth-child(2) {
  text-align: center;
}

.composition-header > :last-child,
.composition-footer > :last-child {
  text-align: right;
}

.live-pill,
.guest-live,
.event-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-pill i,
.guest-live i,
.event-status i,
.event-live-card i,
.demo-topline strong i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.13);
}

.live-pill {
  color: var(--orange);
}

.incoming-moment {
  padding: clamp(46px, 7vw, 108px) clamp(28px, 4.5vw, 74px);
}

.incoming-moment > p {
  margin: 0 0 70px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.18em;
}

.incoming-moment h2 {
  max-width: 650px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 5vw, 90px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.incoming-moment > span {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 17px;
}

.moment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.moment-meta strong {
  color: var(--orange);
}

.composition-footer {
  border-top: 1px solid var(--line-dark);
}

.composition-footer .accent {
  color: var(--orange);
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  top: 16%;
  right: 28%;
  width: 440px;
  height: 440px;
  opacity: 0.25;
  pointer-events: none;
}

.hero-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 90, 31, 0.45);
  border-radius: 50%;
  animation: orbitFloat 12s linear infinite;
}

.hero-orbit span:nth-child(2) {
  inset: 16%;
  animation-direction: reverse;
  animation-duration: 16s;
}

.hero-orbit span:nth-child(3) {
  inset: 34%;
  animation-duration: 9s;
}

@keyframes orbitFloat {
  0% {
    border-radius: 50% 44% 58% 42%;
    transform: rotate(0deg) scale(1);
  }
  50% {
    border-radius: 44% 56% 43% 57%;
    transform: rotate(180deg) scale(1.06);
  }
  100% {
    border-radius: 50% 44% 58% 42%;
    transform: rotate(360deg) scale(1);
  }
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 7vw;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.scroll-cue span {
  width: 38px;
  height: 1px;
  background: var(--orange);
}

/* Statement */
.statement {
  padding: 130px 7vw 150px;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 10vw;
  align-items: end;
}

.statement-copy {
  max-width: 450px;
  margin: 0 0 6px;
  color: #6b6964;
  font-size: 18px;
  line-height: 1.6;
}

.planning-story {
  overflow: hidden;
}

.planner-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 9vw;
  align-items: end;
}

.planner-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 8.7vw, 136px);
  font-weight: 920;
  letter-spacing: -0.09em;
  line-height: 0.8;
  text-transform: uppercase;
}

.planner-title span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.33em;
  letter-spacing: -0.045em;
  line-height: 1;
}

.planner-intro-copy {
  padding-bottom: 8px;
}

.planner-intro-copy > p {
  max-width: 430px;
  margin: 0 0 28px;
  color: #6b6964;
  font-size: 17px;
  line-height: 1.65;
}

.pro-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  color: #4c4944;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.pro-feature-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.13);
}

.planner-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  min-height: 740px;
  margin-top: 105px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--black);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.18);
}

.planner-showcase::before {
  position: absolute;
  top: -180px;
  left: 26%;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 90, 31, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 90, 31, 0.035),
    0 0 0 160px rgba(255, 90, 31, 0.018);
  content: "";
  pointer-events: none;
}

.planner-send-panel {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  padding: 38px 48px 42px;
  color: var(--white);
  flex-direction: column;
}

.planner-panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.planner-panel-topline strong {
  color: var(--orange);
}

.planner-send-copy {
  margin: auto 0 54px;
}

.planner-mini-label,
.client-message-preview > span {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.planner-send-copy h3 {
  max-width: 680px;
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.planner-send-copy > p:last-child {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.65;
}

.client-message-preview {
  max-width: 620px;
  margin-bottom: 25px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.client-message-preview > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.32);
}

.client-message-preview p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.planning-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 11px 11px 11px 18px;
  border-radius: 17px;
  background: var(--white);
  color: var(--black);
}

.planning-link div {
  min-width: 0;
}

.planning-link small,
.planning-link strong {
  display: block;
}

.planning-link small {
  margin-bottom: 5px;
  color: #8a8780;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.planning-link strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.planning-link button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: var(--orange);
  color: var(--black);
  font-size: 11px;
  font-weight: 850;
}

.planning-link button span {
  margin-left: 9px;
}

.planning-link-status {
  min-height: 18px;
  margin: 10px 2px 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.planning-link-status.is-ready {
  color: var(--orange-light);
}

.planner-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 720;
}

.planner-benefits i {
  margin-right: 5px;
  color: var(--orange);
  font-style: normal;
}

.client-planner-preview {
  position: relative;
  z-index: 2;
  align-self: center;
  min-width: 0;
  margin: 48px 46px 48px 10px;
  padding: 24px 24px 22px;
  overflow: hidden;
  border-radius: 27px;
  background: var(--warm-white);
  color: var(--black);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  transform: rotate(1.6deg);
}

.client-planner-header {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.client-planner-header img {
  width: 44px;
  height: 36px;
  object-fit: contain;
}

.client-planner-header span,
.client-planner-header small {
  display: block;
}

.client-planner-header span {
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 860;
  letter-spacing: 0.07em;
}

.client-planner-header small {
  color: #8a8780;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.client-planner-header em {
  color: var(--orange);
  font-size: 12px;
  font-style: normal;
  font-weight: 880;
}

.client-planner-copy {
  padding: 45px 4px 35px;
}

.client-planner-copy > span {
  display: block;
  margin-bottom: 19px;
  color: #88847d;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.client-planner-copy h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(42px, 4.3vw, 66px);
  font-weight: 920;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.client-planner-copy h3 em {
  color: var(--orange);
  font-style: normal;
}

.client-planner-copy p {
  max-width: 430px;
  margin: 0;
  color: #77736d;
  font-size: 12px;
  line-height: 1.55;
}

.client-planner-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.1);
}

.client-planner-list > div {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 13px 16px;
  background: #fff;
}

.planner-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 17px;
  font-style: normal;
}

.planner-icon-heart {
  background: var(--orange);
  color: var(--black);
}

.client-planner-list p {
  margin: 0;
}

.client-planner-list strong,
.client-planner-list small {
  display: block;
}

.client-planner-list strong {
  margin-bottom: 5px;
  font-size: 12px;
}

.client-planner-list small {
  color: #928f88;
  font-size: 9px;
}

.client-planner-list b {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.05em;
}

.client-add-song {
  display: flex;
  width: 100%;
  min-height: 54px;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 0 17px;
  border: 1px dashed rgba(0, 0, 0, 0.22);
  border-radius: 15px;
  background: transparent;
  color: #716e68;
  font-size: 10px;
  font-weight: 720;
  text-align: left;
}

.client-add-song span {
  color: var(--orange);
  font-size: 19px;
}

.planner-progress {
  height: 3px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.1);
}

.planner-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 120px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.step {
  position: relative;
  min-height: 480px;
  padding: 28px;
  background: var(--warm-white);
}

.step-featured {
  background: var(--orange);
}

.step-number {
  color: #86837d;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.16em;
}

.step h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.step p {
  max-width: 280px;
  margin: 0;
  color: #77736c;
  font-size: 14px;
  line-height: 1.55;
}

.step-featured p,
.step-featured .step-number {
  color: rgba(0, 0, 0, 0.6);
}

.step-art {
  position: relative;
  display: grid;
  height: 260px;
  place-items: center;
}

.step-art-scan i {
  width: 116px;
  height: 116px;
  border: 15px dotted var(--black);
  border-radius: 8px;
  transform: rotate(5deg);
}

.step-art-scan::after {
  position: absolute;
  width: 150px;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 90, 31, 0.45);
  content: "";
  animation: scanLine 2.4s var(--ease) infinite;
}

@keyframes scanLine {
  0%,
  100% {
    transform: translateY(-64px);
  }
  50% {
    transform: translateY(64px);
  }
}

.step-art-request span {
  position: absolute;
  width: 150px;
  height: 74px;
  border: 2px solid var(--black);
  background: var(--warm-white);
}

.step-art-request span:nth-child(1) {
  transform: translate(-22px, -22px) rotate(-8deg);
}

.step-art-request span:nth-child(2) {
  transform: translate(20px, 10px) rotate(5deg);
}

.step-art-request span:nth-child(3) {
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  transform: translate(0, 52px) rotate(-2deg);
}

.step-art-request span:nth-child(3)::after {
  content: "REQUEST";
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.16em;
}

.step-art-dance {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 12px;
}

.step-art-dance i {
  display: block;
  width: 18px;
  background: var(--black);
  animation: bars 1.2s var(--ease) infinite alternate;
}

.step-art-dance i:nth-child(1) {
  height: 50px;
}

.step-art-dance i:nth-child(2) {
  height: 150px;
  animation-delay: -0.5s;
}

.step-art-dance i:nth-child(3) {
  height: 90px;
  animation-delay: -0.8s;
}

.step-art-dance i:nth-child(4) {
  height: 190px;
  animation-delay: -0.2s;
}

@keyframes bars {
  to {
    transform: scaleY(0.55);
  }
}

/* Product story */
.product-story {
  min-height: 100vh;
  padding: 140px 7vw;
}

.product-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 5vw;
  align-items: start;
}

.product-heading .editorial-title {
  font-size: clamp(58px, 7vw, 110px);
}

.request-demo {
  margin-top: 100px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.demo-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.demo-topline > div:first-child {
  display: flex;
  align-items: center;
  gap: 24px;
}

.demo-topline span,
.demo-topline strong {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-topline strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
}

.demo-metrics {
  display: flex;
  gap: 46px;
  color: rgba(255, 255, 255, 0.43);
}

.demo-metrics b {
  color: var(--white);
  font-size: 22px;
  letter-spacing: -0.05em;
}

.demo-stage {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 6vw;
  padding: 70px 0;
}

.demo-state-copy {
  align-self: center;
}

.demo-state-copy > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.17em;
}

.demo-state-copy h3 {
  max-width: 420px;
  margin: 26px 0 18px;
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 82px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: uppercase;
}

.demo-state-copy p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.6;
}

.request-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d0d0d;
  transition:
    transform 0.65s var(--ease),
    opacity 0.65s var(--ease),
    border 0.3s;
}

.request-card.moving {
  opacity: 0;
  transform: translateX(60px) rotate(2deg);
}

.request-card[data-story-state="played"] {
  border-color: rgba(255, 90, 31, 0.35);
}

.cover {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, var(--orange-light), transparent 22%),
    radial-gradient(circle at 35% 70%, rgba(255, 255, 255, 0.2), transparent 20%),
    linear-gradient(140deg, #ff5a1f, #20100a 70%);
}

.cover::after {
  position: absolute;
  width: 65%;
  height: 65%;
  border: 12px solid rgba(0, 0, 0, 0.74);
  border-radius: 50%;
  content: "";
}

.cover span {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.request-card-copy {
  align-self: center;
}

.request-tier {
  color: var(--orange);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.request-card-copy h4 {
  margin: 20px 0 3px;
  font-size: 36px;
  letter-spacing: -0.06em;
}

.request-card-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.request-card-copy small {
  display: block;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.32);
}

.request-card-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.request-card-actions button {
  min-height: 54px;
  border: 0;
  font-size: 12px;
  font-weight: 800;
}

.decline-action {
  background: #191919;
  color: rgba(255, 255, 255, 0.55);
}

.accept-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: var(--orange);
  color: var(--black);
}

.demo-tabs {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 16px;
  background: var(--line-dark);
}

.demo-tabs button {
  display: flex;
  justify-content: space-between;
  padding: 18px;
  border: 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 760;
}

.demo-tabs button.active {
  background: var(--orange);
  color: var(--black);
}

/* Guest story */
.guest-story {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6vw;
  align-items: center;
  overflow: hidden;
  padding: 130px 7vw;
}

.guest-copy > p:not(.section-label) {
  max-width: 440px;
  margin: 34px 0;
  color: #6c6963;
  font-size: 17px;
  line-height: 1.65;
}

.guest-copy .editorial-title {
  font-size: clamp(58px, 6vw, 96px);
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
}

.phone-stage::before {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.phone-shadow {
  position: absolute;
  z-index: 0;
  bottom: 40px;
  width: 370px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  filter: blur(28px);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(360px, 82vw);
  min-height: 720px;
  overflow: hidden;
  border: 10px solid var(--black);
  border-radius: 47px;
  background: var(--warm-white);
  box-shadow: 0 46px 80px rgba(0, 0, 0, 0.35);
  color: var(--black);
  transform: rotate(4deg);
  transition: transform 0.7s var(--ease);
}

.phone:hover {
  transform: rotate(1deg) translateY(-8px);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px 8px;
  font-size: 10px;
  font-weight: 800;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.guest-live {
  font-size: 8px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.phone-content {
  padding: 30px 22px;
}

.phone-content h3 {
  margin: 0 0 34px;
  font-family: var(--display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.89;
  text-transform: uppercase;
}

.phone-search {
  padding: 18px;
  border-bottom: 2px solid var(--black);
  color: #77746e;
  font-size: 12px;
}

.phone-result {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.mini-cover {
  width: 48px;
  height: 48px;
}

.mini-cover-one {
  background: linear-gradient(135deg, var(--orange), #42170c);
}

.mini-cover-two {
  background: linear-gradient(135deg, #141414, #b1b1b1);
}

.mini-cover-three {
  background: linear-gradient(135deg, #f1b127, #a00d0d);
}

.phone-result strong,
.phone-result span {
  display: block;
}

.phone-result strong {
  margin-bottom: 4px;
  font-size: 11px;
}

.phone-result span {
  color: #7c7973;
  font-size: 9px;
}

.phone-result b {
  font-size: 20px;
}

/* Final */
.final-cta {
  display: grid;
  min-height: 88vh;
  place-items: center;
  align-content: center;
  padding: 100px 7vw;
  text-align: center;
}

.brand-symbol-large {
  width: 130px;
  height: 100px;
  margin-bottom: 40px;
  object-fit: contain;
}

.final-cta p {
  margin: 0 0 28px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.final-cta h2 {
  margin: 0 0 56px;
  font-family: var(--display);
  font-size: clamp(68px, 10vw, 168px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.78;
  text-transform: uppercase;
}

.final-cta > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Mission + FAQ */
.mission-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 10vw;
  padding: 150px 7vw 165px;
  border-bottom: 1px solid var(--line-dark);
}

.mission-column {
  align-self: start;
}

.mission-column h2,
.faq-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 920;
  letter-spacing: -0.078em;
  text-transform: uppercase;
}

.mission-column h2 {
  max-width: 700px;
  font-size: clamp(56px, 6.4vw, 100px);
  line-height: 0.84;
}

.mission-column h2 em {
  color: var(--orange);
  font-style: normal;
}

.mission-copy {
  max-width: 560px;
  margin: 42px 0 64px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 1.7;
}

.mission-manifesto {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.mission-manifesto span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.08em;
}

.mission-manifesto span:nth-child(2) {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--black);
}

.mission-line {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

.mission-line > span {
  width: 54px;
  height: 1px;
  background: var(--orange);
}

.mission-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.faq-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 74px;
}

.faq-heading .section-label {
  margin: 0 0 7px;
}

.faq-heading h2 {
  font-size: clamp(50px, 5.4vw, 86px);
  line-height: 0.84;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 42px 1fr 36px;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 0 4px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary > span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.faq-item summary strong {
  font-family: var(--display);
  font-size: clamp(18px, 1.65vw, 26px);
  font-weight: 820;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-transform: uppercase;
}

.faq-item summary i {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.45s var(--ease);
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--white);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.35s var(--ease);
}

.faq-item[open] summary i {
  border-color: var(--orange);
  background: var(--orange);
  transform: rotate(180deg);
}

.faq-item[open] summary i::before,
.faq-item[open] summary i::after {
  background: var(--black);
}

.faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item summary:hover strong {
  color: var(--orange-light);
}

.faq-answer {
  padding: 0 58px 30px 60px;
}

.faq-answer p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  line-height: 1.75;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 30px 7vw;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}

.site-footer p {
  margin: 0;
}

.footer-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  text-align: right;
}

.footer-instagram {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s var(--ease);
}

.footer-instagram:hover {
  border-color: var(--orange);
  background: var(--orange);
  transform: translateY(-2px);
}

.footer-instagram i {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
}

.footer-instagram i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.footer-instagram i::after {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.footer-instagram:hover i {
  color: var(--black);
}

/* App view shared */
.app-view {
  position: fixed;
  z-index: 200;
  inset: 0;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease),
    visibility 0.45s;
}

.app-view.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.app-topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  min-height: 72px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
}

.dark-topbar {
  border-bottom: 1px solid var(--line-dark);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
}

.light-topbar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(246, 245, 241, 0.92);
  color: var(--black);
  backdrop-filter: blur(18px);
}

.back-to-site {
  width: max-content;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 11px;
  font-weight: 780;
  opacity: 0.55;
}

.portal-user {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.portal-user span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: #151515;
  color: var(--orange);
  font-weight: 820;
}

/* DJ portal */
.dj-view {
  background: var(--black);
  color: var(--white);
}

.dj-app {
  display: grid;
  min-height: calc(100vh - 72px);
  grid-template-columns: 230px 1fr;
}

.dj-sidebar {
  position: sticky;
  top: 72px;
  display: flex;
  height: calc(100vh - 72px);
  flex-direction: column;
  padding: 20px;
  border-right: 1px solid var(--line-dark);
}

.event-live-card {
  padding: 20px;
  background: var(--orange);
  color: var(--black);
}

.event-live-card > span {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.event-live-card i {
  background: var(--black);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.12);
}

.event-live-card h3 {
  margin: 38px 0 5px;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.event-live-card p {
  margin: 0;
  font-size: 10px;
  opacity: 0.62;
}

.dj-sidebar nav {
  display: grid;
  gap: 2px;
  margin-top: 28px;
}

.dj-sidebar nav button,
.sidebar-bottom button {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
  font-weight: 720;
  text-align: left;
}

.dj-sidebar nav button.active {
  background: #171717;
  color: var(--white);
}

.dj-sidebar nav button.active span {
  color: var(--orange);
}

.sidebar-bottom {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.sidebar-bottom .end-live-button {
  justify-content: center;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.dj-main {
  min-width: 0;
  padding: 54px 4vw 80px;
}

.dj-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.portal-eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.dj-heading h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 82px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
  text-transform: uppercase;
}

.new-request-button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 760;
}

.portal-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 54px 0 60px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.portal-stats > div {
  padding: 25px 0;
}

.portal-stats > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--line-dark);
}

.portal-stats strong,
.portal-stats span {
  display: block;
}

.portal-stats strong {
  margin-bottom: 6px;
  font-size: 30px;
  letter-spacing: -0.06em;
}

.portal-stats > div:first-child strong {
  color: var(--orange);
}

.portal-stats span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.request-workspace {
  display: grid;
  gap: 26px;
}

.request-zone {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #090909;
}

.zone-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding: 25px 27px 22px;
  border-bottom: 1px solid var(--line-dark);
}

.zone-heading.compact {
  padding: 22px 24px 20px;
}

.zone-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.zone-kicker i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 90, 31, 0.82);
}

.zone-heading h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.zone-heading h2 b {
  display: grid;
  min-width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: var(--orange);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0;
}

.zone-heading p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
}

.carousel-controls {
  display: flex;
  gap: 7px;
}

.carousel-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  transition:
    border-color 0.25s,
    background 0.25s,
    color 0.25s;
}

.carousel-controls button:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--black);
}

.incoming-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 18px 27px 26px;
  scroll-padding-inline: 27px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 90, 31, 0.45) transparent;
  scrollbar-width: thin;
}

.incoming-carousel::-webkit-scrollbar {
  height: 4px;
}

.incoming-carousel::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: rgba(255, 90, 31, 0.48);
}

.incoming-request-card {
  position: relative;
  width: min(620px, 78vw);
  min-width: min(620px, 78vw);
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 55%),
    #111;
  scroll-snap-align: start;
  transition:
    border-color 0.35s,
    transform 0.35s var(--ease),
    opacity 0.3s;
  animation: cardArrive 0.6s var(--ease);
}

.incoming-request-card:hover {
  border-color: rgba(255, 90, 31, 0.52);
  transform: translateY(-3px);
}

.incoming-request-card.is-moving,
.queue-request-row.is-moving {
  opacity: 0;
  transform: translateX(30px);
}

@keyframes cardArrive {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

.incoming-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.incoming-card-topline > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.incoming-card-topline i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 9px var(--orange);
}

.incoming-card-topline strong {
  color: var(--orange-light);
}

.incoming-card-main {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 19px;
}

.incoming-album-cover {
  position: relative;
  display: block;
  width: 116px;
  height: 116px;
  overflow: hidden;
  box-shadow: 12px 12px 0 rgba(255, 90, 31, 0.13);
}

.incoming-album-cover::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(255, 255, 255, 0.09) 12px 13px),
    linear-gradient(transparent, rgba(0, 0, 0, 0.28));
  content: "";
}

.incoming-album-cover i {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
}

.incoming-album-cover i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--white);
  content: "";
  transform: translate(-35%, -50%);
}

.track-heading-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.incoming-track-info h3,
.queue-track-copy h3,
.played-request-row h3 {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.incoming-track-info h3 {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 880;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.incoming-track-info p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.portal-request-price {
  height: max-content;
  padding: 7px 9px;
  border: 1px solid rgba(255, 90, 31, 0.42);
  border-radius: 999px;
  color: var(--orange);
  font-size: 8px;
  font-weight: 850;
  white-space: nowrap;
}

.mix-assist-label {
  margin: 17px 0 8px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.mix-assist-label span {
  color: var(--orange);
}

.mix-tags,
.queue-mix-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.mix-tags > span {
  display: grid;
  min-height: 33px;
  align-content: center;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 6px;
  font-weight: 780;
  letter-spacing: 0.09em;
}

.mix-tags b {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 8px;
}

.mix-tags .energy-tag {
  border-color: rgba(255, 90, 31, 0.3);
  background: rgba(255, 90, 31, 0.06);
}

.mix-tags .energy-tag b {
  color: var(--orange-light);
}

.requester-strip {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 19px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.requester-avatar {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: #242424;
  color: var(--orange);
  font-size: 10px;
  font-weight: 850;
}

.requester-strip p {
  margin: 0;
}

.requester-strip small,
.requester-strip strong {
  display: block;
}

.requester-strip small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.26);
  font-size: 6px;
  letter-spacing: 0.11em;
}

.requester-strip strong {
  font-size: 9px;
}

.requester-strip button,
.queue-row-side button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.incoming-card-actions {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 8px;
  margin-top: 13px;
}

.incoming-card-actions button {
  min-height: 43px;
  border: 0;
  font-size: 9px;
  font-weight: 840;
}

.portal-decline {
  background: #1b1b1b;
  color: rgba(255, 255, 255, 0.5);
}

.portal-accept,
.portal-play {
  background: var(--orange);
  color: var(--black);
}

.portal-accept span {
  margin-left: 14px;
}

.request-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 26px;
}

.queue-stack,
.played-stack {
  display: grid;
}

.queue-request-row {
  display: grid;
  grid-template-columns: 42px 72px minmax(0, 1fr) 126px;
  gap: 15px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-dark);
  background: #0d0d0d;
  transition:
    opacity 0.3s,
    transform 0.3s var(--ease),
    background 0.25s;
  animation: cardArrive 0.6s var(--ease);
}

.queue-request-row:last-child,
.played-request-row:last-child {
  border-bottom: 0;
}

.queue-request-row:hover {
  background: #121212;
}

.queue-index {
  color: rgba(255, 255, 255, 0.21);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 900;
}

.queue-album-cover {
  width: 72px;
  height: 72px;
}

.queue-track-copy {
  min-width: 0;
}

.queue-track-copy > div:first-child {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 10px;
  align-items: center;
}

.queue-state {
  grid-row: 1 / 3;
  display: grid;
  align-self: stretch;
  align-content: center;
  gap: 5px;
  padding-right: 11px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--orange);
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.queue-state i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 9px var(--orange);
}

.queue-track-copy h3 {
  font-size: 14px;
}

.queue-track-copy p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.queue-mix-tags {
  margin: 10px 0 8px;
}

.queue-mix-tags span {
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 7px;
}

.queue-track-copy > small {
  color: rgba(255, 255, 255, 0.24);
  font-size: 7px;
}

.queue-row-side {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.queue-row-side > strong {
  color: var(--orange);
  font-size: 15px;
}

.queue-row-side > span {
  color: rgba(255, 255, 255, 0.25);
  font-size: 6px;
  letter-spacing: 0.08em;
}

.queue-row-side .portal-play {
  width: 100%;
  min-height: 36px;
  margin-top: 5px;
  text-decoration: none;
}

.queue-row-side .portal-play span {
  margin-left: 8px;
}

.played-request-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  min-height: 83px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-dark);
  background: #0d0d0d;
  animation: cardArrive 0.6s var(--ease);
}

.played-album-cover {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 13px rgba(0, 0, 0, 0.3);
}

.played-request-row > div:nth-child(2) {
  min-width: 0;
}

.played-request-row h3 {
  margin-bottom: 4px;
  font-size: 11px;
}

.played-request-row p,
.played-request-row small {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 8px;
}

.played-request-row small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.22);
}

.played-row-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.played-row-meta strong {
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
}

.played-row-meta span {
  color: var(--orange);
  font-size: 7px;
  font-weight: 800;
}

/* Guest app */
.guest-view {
  background: var(--warm-white);
  color: var(--black);
}

.event-status {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  color: var(--black);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.event-status small {
  padding-left: 8px;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  color: #807c75;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.event-status.disconnected i {
  background: #aaa69f;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.05);
}

.event-status.disconnected span {
  color: var(--orange-dark);
}

.guest-main {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 100px;
}

.guest-search-step,
.guest-checkout-step,
.guest-status-step {
  display: none;
}

.guest-search-step.active,
.guest-checkout-step.active,
.guest-status-step.active {
  display: block;
  animation: viewIn 0.6s var(--ease);
}

@keyframes viewIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

.guest-event-heading {
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.7fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 65px;
}

.guest-event-heading > p {
  align-self: start;
  margin: 8px 0 0;
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.guest-event-heading h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(60px, 8vw, 116px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.8;
  text-transform: uppercase;
}

.guest-event-heading > span {
  color: #77736d;
  font-size: 13px;
  line-height: 1.55;
}

.song-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 3px solid var(--black);
}

.song-search > span {
  font-size: 32px;
  line-height: 1;
}

.song-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.song-search input::placeholder {
  color: #a3a099;
}

.song-search kbd {
  padding: 5px 7px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: #88847e;
  font-size: 8px;
}

.search-meta {
  display: flex;
  justify-content: space-between;
  margin: 34px 0 12px;
  color: #85817b;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.14em;
}

.song-results {
  border-top: 1px solid rgba(0, 0, 0, 0.13);
}

.song-row {
  display: grid;
  grid-template-columns: 62px 1fr auto auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  background: transparent;
  color: var(--black);
  text-align: left;
  transition: padding 0.3s var(--ease);
}

.song-row:hover {
  padding-right: 12px;
  padding-left: 12px;
}

.song-row-cover,
.selected-cover,
.status-track-cover {
  background: var(--cover);
}

.song-row-cover {
  width: 62px;
  height: 62px;
}

.song-row h3,
.song-row p {
  margin: 0;
}

.song-row h3 {
  margin-bottom: 5px;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.song-row p,
.song-duration {
  color: #77736d;
  font-size: 10px;
}

.song-add {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 18px;
}

.no-results {
  padding: 70px 0;
  color: #77736d;
  text-align: center;
}

/* Guest checkout */
.guest-checkout-step {
  width: min(760px, 100%);
  margin: 0 auto;
}

.checkout-back {
  margin-bottom: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #76726c;
  font-size: 11px;
  font-weight: 760;
}

.selected-track {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.selected-cover {
  width: 150px;
  height: 150px;
}

.selected-track span,
.tip-heading span {
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.selected-track h2 {
  margin: 25px 0 3px;
  font-family: var(--display);
  font-size: clamp(46px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-transform: uppercase;
}

.selected-track p {
  margin: 0;
  color: #77736d;
}

.tip-heading {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  margin: 48px 0 28px;
}

.tip-heading h3 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.tip-heading > strong {
  color: var(--orange);
  font-family: var(--display);
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.tip-control {
  position: relative;
  padding: 25px 26px 22px;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.tip-slider {
  --tip-progress: 20%;
  width: 100%;
  height: 4px;
  margin: 14px 0 0;
  appearance: none;
  border-radius: 0;
  outline: 0;
  background: linear-gradient(
    to right,
    var(--orange) 0,
    var(--orange) var(--tip-progress),
    rgba(0, 0, 0, 0.16) var(--tip-progress),
    rgba(0, 0, 0, 0.16) 100%
  );
}

.tip-slider::-webkit-slider-thumb {
  width: 26px;
  height: 26px;
  appearance: none;
  border: 6px solid var(--warm-white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--black);
  cursor: grab;
}

.tip-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 5px solid var(--warm-white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--black);
  cursor: grab;
}

.tip-slider:active::-webkit-slider-thumb {
  cursor: grabbing;
  transform: scale(1.08);
}

.tip-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.tip-range-labels button {
  min-width: 42px;
  padding: 6px 8px;
  border: 0;
  background: transparent;
  color: #7b7770;
  font-size: 10px;
  font-weight: 760;
  transition:
    color 0.2s,
    background 0.2s;
}

.tip-range-labels button:first-child {
  transform: translateX(-9px);
}

.tip-range-labels button:last-child {
  transform: translateX(9px);
}

.tip-range-labels button.active {
  background: var(--black);
  color: var(--white);
}

.tip-control p {
  max-width: 520px;
  margin: 0;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #75716b;
  font-size: 9px;
  line-height: 1.55;
}

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

.custom-tip-toggle,
.skip-tip {
  padding: 0;
  border: 0;
  background: transparent;
  color: #6f6b65;
  font-size: 9px;
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.custom-tip-toggle.active {
  color: var(--orange-dark);
}

.custom-tip-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.custom-tip-row label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.custom-tip-row label > span {
  color: var(--orange-dark);
  font-size: 18px;
  font-weight: 850;
}

.custom-tip-row input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font-size: 16px;
  font-weight: 720;
}

.custom-tip-row > button {
  padding: 0 18px;
  border: 0;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 830;
}

.guest-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.guest-fields label {
  color: #716e68;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guest-fields label > span {
  color: #9b9790;
  font-size: 8px;
  font-weight: 720;
}

.guest-fields input {
  width: 100%;
  margin-top: 9px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  outline: 0;
  background: transparent;
  color: var(--black);
  font-size: 15px;
  text-transform: none;
}

.request-consent {
  display: grid;
  gap: 13px;
  margin-top: 30px;
  padding: 22px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.13);
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}

.request-consent > label {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: center;
  width: max-content;
  max-width: 100%;
  color: #3f3d39;
  font-size: 10px;
  line-height: 1.4;
  cursor: pointer;
}

.request-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-box {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.34);
  background: transparent;
}

.request-consent input:checked + .consent-box {
  border-color: var(--orange);
  background: var(--orange);
}

.request-consent input:checked + .consent-box::after {
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  content: "✓";
}

.request-consent input:focus-visible + .consent-box {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

.request-consent > p {
  margin: 4px 0 0;
  color: #89857e;
  font-size: 8px;
  line-height: 1.5;
}

.request-consent a {
  color: var(--orange-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-error {
  display: none;
  color: #b32b00;
  font-size: 9px;
  font-weight: 760;
}

.request-consent.invalid {
  border-color: rgba(179, 43, 0, 0.45);
}

.request-consent.invalid .consent-error {
  display: block;
}

.send-request-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 62px;
  margin-top: 38px;
  padding: 0 24px;
  border: 0;
  background: var(--orange);
  color: var(--black);
  font-size: 12px;
  font-weight: 850;
}

.payment-security-note {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 11px;
  align-items: center;
  margin-top: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

.security-lock {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.055);
}

.security-lock::before {
  position: absolute;
  top: 6px;
  left: 9px;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--black);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  content: "";
}

.security-lock i {
  position: absolute;
  top: 12px;
  left: 8px;
  width: 12px;
  height: 10px;
  border-radius: 2px;
  background: var(--black);
}

.security-lock i::after {
  position: absolute;
  top: 3px;
  left: 5px;
  width: 2px;
  height: 4px;
  border-radius: 2px;
  background: var(--orange);
  content: "";
}

.payment-security-note p {
  margin: 0;
  line-height: 1.4;
}

.payment-security-note strong,
.payment-security-note p > span {
  display: block;
}

.payment-security-note strong {
  margin-bottom: 2px;
  color: #403e3a;
  font-size: 9px;
}

.payment-security-note p > span {
  color: #918d86;
  font-size: 8px;
}

.payment-security-note > b {
  color: #6f6b65;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.terms-copy {
  margin-top: 13px;
  color: #8d8982;
  font-size: 9px;
  text-align: center;
}

/* Guest status */
.guest-status-step {
  position: relative;
  width: min(680px, 100%);
  margin: 0 auto;
  padding-top: 30px;
  text-align: center;
}

.status-glow {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.26), transparent 67%);
  transform: translateX(-50%);
}

.status-track-cover {
  width: 180px;
  height: 180px;
  margin: 0 auto 44px;
  box-shadow: 20px 24px 0 var(--orange);
}

.status-eyebrow {
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.guest-status-step h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 11vw, 126px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.82;
  text-transform: uppercase;
}

.status-message {
  max-width: 460px;
  margin: 28px auto;
  color: #74716a;
  font-size: 13px;
  line-height: 1.55;
}

.status-position {
  display: inline-grid;
  margin: 12px auto 46px;
}

.status-position span {
  color: #7c7871;
  font-size: 8px;
  font-weight: 820;
  letter-spacing: 0.14em;
}

.status-position strong {
  margin-top: 7px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 48px;
  letter-spacing: -0.07em;
}

.status-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 34px;
}

.status-timeline::before {
  position: absolute;
  top: 5px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: rgba(0, 0, 0, 0.16);
  content: "";
}

.status-timeline::after {
  position: absolute;
  z-index: 0;
  top: 5px;
  left: 12.5%;
  width: var(--timeline-progress, 0%);
  height: 1px;
  background: var(--orange);
  box-shadow: 0 0 9px rgba(255, 90, 31, 0.48);
  content: "";
  transition: width 0.65s var(--ease);
}

.status-timeline div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #908c85;
  font-size: 9px;
}

.status-timeline i {
  position: relative;
  width: 11px;
  height: 11px;
  border: 3px solid var(--warm-white);
  border-radius: 50%;
  background: #b5b1aa;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.16);
}

.status-timeline div.active {
  color: var(--black);
  font-weight: 780;
}

.status-timeline div.active i {
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.status-timeline div.current i {
  background: var(--orange-light);
  box-shadow:
    0 0 0 1px var(--orange),
    0 0 0 7px rgba(255, 90, 31, 0.13),
    0 0 18px 7px rgba(255, 90, 31, 0.58);
  animation: statusNeonPulse 1.45s var(--ease) infinite;
}

.status-timeline div.current i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--black);
  content: "";
  transform: translate(-50%, -50%);
}

@keyframes statusNeonPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px var(--orange),
      0 0 0 5px rgba(255, 90, 31, 0.1),
      0 0 11px 4px rgba(255, 90, 31, 0.38);
    transform: scale(0.94);
  }
  50% {
    box-shadow:
      0 0 0 1px var(--orange-light),
      0 0 0 9px rgba(255, 90, 31, 0.16),
      0 0 24px 9px rgba(255, 90, 31, 0.72);
    transform: scale(1.08);
  }
}

.status-demo-button {
  min-width: 250px;
  min-height: 54px;
  border: 0;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 820;
}

.status-demo-button span {
  margin-left: 24px;
  color: var(--orange);
}

.new-song-link {
  display: block;
  margin: 20px auto 0;
  border: 0;
  background: transparent;
  color: #747069;
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.request-notification-card {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 44px;
  padding: 22px 24px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.58);
  text-align: left;
  transition:
    border-color 0.35s,
    background 0.35s,
    transform 0.35s var(--ease);
}

.request-notification-card:hover {
  border-color: rgba(255, 90, 31, 0.5);
  transform: translateY(-2px);
}

.notification-bell,
.notification-prompt-icon {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
}

.notification-bell {
  width: 44px;
  height: 44px;
}

.notification-bell::before,
.notification-prompt-icon::before {
  width: 13px;
  height: 15px;
  border-radius: 8px 8px 4px 4px;
  background: var(--orange);
  content: "";
}

.notification-bell::after,
.notification-prompt-icon::after {
  position: absolute;
  bottom: 11px;
  width: 17px;
  height: 2px;
  border-radius: 3px;
  background: var(--orange);
  content: "";
}

.notification-bell i,
.notification-prompt-icon i {
  position: absolute;
  bottom: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.request-notification-card > div > span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange-dark);
  font-size: 8px;
  font-weight: 880;
  letter-spacing: 0.14em;
}

.request-notification-card h3 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 860;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.request-notification-card p {
  margin: 0;
  color: #7a766f;
  font-size: 9px;
  line-height: 1.5;
}

.request-notification-card > button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 820;
}

.request-notification-card > button span {
  margin-left: 8px;
  color: var(--orange);
}

.request-notification-card.notifications-on {
  border-color: rgba(255, 90, 31, 0.5);
  background: rgba(255, 90, 31, 0.08);
}

.request-notification-card.notifications-on .notification-bell {
  box-shadow: 0 0 20px rgba(255, 90, 31, 0.44);
}

.request-notification-card.notifications-on > button {
  background: var(--orange);
  color: var(--black);
  cursor: default;
}

.request-notification-card.notifications-on > button span {
  color: var(--black);
}

/* Notification permission concept */
.notification-prompt-overlay {
  position: fixed;
  z-index: 850;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 20px;
  background: rgba(5, 5, 5, 0.78);
  opacity: 0;
  backdrop-filter: blur(16px);
  transition:
    opacity 0.35s,
    visibility 0.35s;
}

.notification-prompt-overlay.active {
  visibility: visible;
  opacity: 1;
}

.notification-prompt-dialog {
  position: relative;
  width: min(520px, 100%);
  padding: 48px;
  background: var(--black);
  color: var(--white);
  box-shadow:
    0 35px 130px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(255, 90, 31, 0.12);
  text-align: center;
  transform: translateY(22px) scale(0.98);
  transition: transform 0.45s var(--ease);
}

.notification-prompt-overlay.active .notification-prompt-dialog {
  transform: translateY(0) scale(1);
}

.notification-prompt-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 20px;
}

.notification-prompt-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  border: 1px solid rgba(255, 90, 31, 0.42);
  box-shadow:
    0 0 0 10px rgba(255, 90, 31, 0.05),
    0 0 35px rgba(255, 90, 31, 0.32);
}

.notification-prompt-icon::before {
  width: 17px;
  height: 20px;
}

.notification-prompt-icon::after {
  bottom: 18px;
  width: 22px;
}

.notification-prompt-icon i {
  bottom: 13px;
  width: 5px;
  height: 5px;
}

.notification-prompt-eyebrow {
  margin: 0 0 17px;
  color: var(--orange);
  font-size: 8px;
  font-weight: 880;
  letter-spacing: 0.16em;
}

.notification-prompt-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(53px, 7vw, 78px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-transform: uppercase;
}

.notification-prompt-copy {
  max-width: 390px;
  margin: 26px auto 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.65;
}

.notification-events {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.notification-events span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 8px;
  font-weight: 760;
}

.notification-events i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}

.allow-notifications {
  display: flex;
  width: 100%;
  min-height: 56px;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border: 0;
  background: var(--orange);
  color: var(--black);
  font-size: 10px;
  font-weight: 860;
}

.notification-not-now {
  margin-top: 17px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.notification-prompt-dialog > small {
  display: block;
  max-width: 370px;
  margin: 25px auto 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: 8px;
  line-height: 1.55;
}

/* Customer DJ finder */
.dj-finder-overlay {
  position: fixed;
  z-index: 700;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 20px;
  background: rgba(5, 5, 5, 0.76);
  opacity: 0;
  backdrop-filter: blur(14px);
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s;
}

.dj-finder-overlay.active {
  visibility: visible;
  opacity: 1;
}

.dj-finder-dialog {
  position: relative;
  width: min(590px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 46px;
  background: var(--warm-white);
  color: var(--black);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.44);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.45s var(--ease);
}

.dj-finder-overlay.active .dj-finder-dialog {
  transform: translateY(0) scale(1);
}

.finder-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 50%;
  background: transparent;
  color: var(--black);
  font-size: 22px;
  line-height: 1;
}

.finder-eyebrow {
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.dj-finder-dialog h2 {
  max-width: 500px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-transform: uppercase;
}

.finder-copy {
  max-width: 450px;
  margin: 22px 0 32px;
  color: #706c66;
  font-size: 13px;
  line-height: 1.55;
}

.dj-handle-search {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 2px solid var(--black);
}

.dj-handle-search span {
  color: var(--orange-dark);
  font-size: 23px;
  font-weight: 850;
}

.dj-handle-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font-size: 20px;
  font-weight: 720;
}

.found-dj {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 15px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  opacity: 1;
  transition:
    opacity 0.25s,
    transform 0.25s var(--ease);
}

.found-dj.filtered-out {
  display: none;
}

.found-dj img {
  width: 58px;
  height: 50px;
  object-fit: contain;
}

.found-dj span,
.found-dj h3,
.found-dj p {
  margin: 0;
}

.found-dj span {
  color: var(--orange-dark);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.found-dj h3 {
  margin: 5px 0 3px;
  font-size: 15px;
}

.found-dj p {
  color: #77736d;
  font-size: 9px;
}

.found-dj button {
  min-height: 40px;
  padding: 0 15px;
  border: 0;
  background: var(--orange);
  color: var(--black);
  font-size: 9px;
  font-weight: 850;
}

.finder-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 25px 0;
  color: #918d86;
  font-size: 8px;
  font-weight: 800;
}

.finder-divider::before,
.finder-divider::after {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.13);
  content: "";
}

.scan-qr-button {
  display: grid;
  width: 100%;
  grid-template-columns: 44px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 17px;
  border: 0;
  background: var(--black);
  color: var(--white);
  text-align: left;
}

.scan-qr-button b,
.scan-qr-button small {
  display: block;
}

.scan-qr-button b {
  margin-bottom: 5px;
  font-size: 11px;
}

.scan-qr-button small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
}

.scan-qr-button > strong {
  color: var(--orange);
}

.qr-corners {
  width: 40px;
  height: 40px;
  border: 4px dotted var(--white);
}

.no-dj-demo {
  display: block;
  margin: 18px auto 0;
  border: 0;
  background: transparent;
  color: #817d76;
  font-size: 9px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.toast {
  position: fixed;
  z-index: 500;
  right: 22px;
  bottom: 22px;
  max-width: 330px;
  padding: 15px 18px;
  background: var(--orange);
  color: var(--black);
  font-size: 11px;
  font-weight: 780;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition:
    opacity 0.3s,
    transform 0.3s var(--ease);
}

.toast.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 184px;
  }

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

  .live-composition {
    width: min(740px, 100%);
    margin-left: auto;
  }

  .statement-grid,
  .product-heading,
  .planner-intro {
    grid-template-columns: 1fr;
  }

  .statement-copy {
    margin-top: 40px;
  }

  .planner-intro-copy {
    max-width: 620px;
    margin-top: 42px;
  }

  .planner-showcase {
    grid-template-columns: 1fr;
  }

  .client-planner-preview {
    width: min(650px, calc(100% - 72px));
    margin: 0 auto 48px;
    transform: rotate(0.8deg);
  }

  .mission-faq {
    grid-template-columns: 1fr;
    gap: 110px;
  }

  .mission-column {
    max-width: 760px;
  }

  .faq-heading {
    grid-template-columns: 1fr;
  }

  .request-lower-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .admin-entry {
    top: 18px;
    right: 18px;
  }

  .admin-entry span {
    display: none;
  }

  .gate-orbits {
    width: 118vw;
  }

  .gate-message {
    margin-top: -4vh;
  }

  .gate-message > img {
    width: 142px;
    height: 76px;
    margin-bottom: 28px;
  }

  .gate-message h1 {
    font-size: clamp(56px, 18vw, 82px);
    line-height: 0.8;
  }

  .gate-status {
    max-width: 240px;
    justify-content: center;
    line-height: 1.45;
  }

  .admin-login-panel {
    width: 100%;
    padding: 42px 26px 34px;
    border-left: 0;
  }

  .admin-login-panel h2 {
    margin-bottom: 34px;
  }

  #lockPreview {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    font-size: 0;
  }

  #lockPreview::before {
    font-size: 13px;
    content: "↙";
  }

  .site-header,
  .app-topbar {
    min-height: 64px;
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .site-header {
    top: 32px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .home-ribbon {
    gap: 5px;
    min-height: 32px;
    padding: 6px 12px;
    font-size: 9px;
  }

  .brand-name {
    display: none;
  }

  .brand-logo {
    width: 54px;
    height: 44px;
  }

  .header-actions .text-button {
    display: none;
  }

  .pill-button {
    padding: 10px 15px;
  }

  .hero {
    min-height: auto;
    padding: 164px 20px 80px;
  }

  .display-title {
    font-size: clamp(62px, 21vw, 104px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .composition-header,
  .composition-footer {
    grid-template-columns: 1fr 1fr;
  }

  .composition-header > :last-child,
  .composition-footer > :last-child {
    display: none;
  }

  .incoming-moment {
    padding: 44px 22px;
  }

  .incoming-moment > p {
    margin-bottom: 48px;
  }

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

  .scroll-cue {
    display: none;
  }

  .statement,
  .product-story,
  .guest-story {
    padding: 90px 20px;
  }

  .editorial-title {
    font-size: clamp(52px, 17vw, 82px);
  }

  .planner-title {
    font-size: clamp(54px, 17vw, 86px);
  }

  .planner-showcase {
    min-height: auto;
    margin-top: 66px;
    border-radius: 22px;
  }

  .planner-send-panel {
    padding: 28px 22px 34px;
  }

  .planner-panel-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .planner-send-copy {
    margin: 92px 0 40px;
  }

  .planner-send-copy h3 {
    font-size: clamp(43px, 13vw, 66px);
  }

  .planning-link {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .planning-link button {
    width: 100%;
  }

  .client-planner-preview {
    width: calc(100% - 28px);
    margin-bottom: 14px;
    padding: 20px 16px 18px;
    border-radius: 21px;
  }

  .client-planner-copy h3 {
    font-size: clamp(41px, 13vw, 59px);
  }

  .client-planner-list > div {
    padding: 12px;
  }

  .request-notification-card {
    grid-template-columns: 42px 1fr;
    padding: 18px;
  }

  .request-notification-card > button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .notification-prompt-dialog {
    padding: 46px 24px 34px;
  }

  .mission-faq {
    gap: 90px;
    padding: 100px 20px 110px;
  }

  .mission-column h2 {
    font-size: clamp(52px, 16vw, 82px);
  }

  .mission-copy {
    margin: 32px 0 46px;
  }

  .faq-heading {
    gap: 18px;
    margin-bottom: 46px;
  }

  .faq-heading h2 {
    font-size: clamp(46px, 14vw, 70px);
  }

  .faq-item summary {
    grid-template-columns: 30px 1fr 32px;
    gap: 10px;
    min-height: 78px;
  }

  .faq-item summary i {
    width: 30px;
    height: 30px;
  }

  .faq-answer {
    padding: 0 42px 27px 40px;
  }

  .steps {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .step {
    min-height: 420px;
  }

  .demo-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .demo-metrics {
    width: 100%;
    justify-content: space-between;
  }

  .demo-stage {
    grid-template-columns: 1fr;
    padding: 45px 0;
  }

  .request-card {
    grid-template-columns: 94px 1fr;
    gap: 17px;
  }

  .request-card-copy h4 {
    font-size: 28px;
  }

  .demo-tabs {
    grid-column: 1;
  }

  .demo-tabs button {
    padding: 14px 10px;
    font-size: 9px;
  }

  .guest-story {
    grid-template-columns: 1fr;
  }

  .guest-copy .button {
    width: auto;
  }

  .phone-stage {
    min-height: 720px;
  }

  .phone-stage::before {
    width: 390px;
    height: 390px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .brand {
    margin: 0 auto;
  }

  .footer-meta {
    justify-content: center;
    text-align: center;
  }

  .back-to-site {
    grid-column: 1;
  }

  .app-topbar .brand {
    display: none;
  }

  .portal-user,
  .event-status {
    grid-column: 2;
  }

  .event-status small {
    display: none;
  }

  .dj-app {
    grid-template-columns: 1fr;
  }

  .dj-sidebar {
    position: static;
    display: flex;
    height: auto;
    flex-direction: column;
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .event-live-card {
    padding: 16px;
  }

  .event-live-card h3 {
    margin-top: 20px;
  }

  .dj-sidebar nav {
    order: -1;
    display: flex;
    overflow-x: auto;
    margin: 0 0 12px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .dj-sidebar nav button {
    flex: 0 0 auto;
  }

  .sidebar-bottom {
    display: none;
  }

  .dj-main {
    padding: 38px 18px 70px;
  }

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

  .portal-stats {
    grid-template-columns: 1fr 1fr;
    margin: 42px 0;
  }

  .portal-stats > div:nth-child(3) {
    border-left: 0;
  }

  .portal-stats > div:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .zone-heading {
    padding: 21px 18px 18px;
  }

  .incoming-carousel {
    padding: 14px 18px 22px;
    scroll-padding-inline: 18px;
  }

  .incoming-request-card {
    width: calc(100vw - 72px);
    min-width: calc(100vw - 72px);
  }

  .incoming-card-main {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .incoming-album-cover {
    width: 86px;
    height: 86px;
    box-shadow: 8px 8px 0 rgba(255, 90, 31, 0.13);
  }

  .incoming-track-info h3 {
    font-size: 20px;
  }

  .mix-tags > span {
    padding: 4px 6px;
  }

  .requester-strip {
    grid-template-columns: 31px 1fr;
  }

  .requester-strip button {
    display: none;
  }

  .incoming-card-actions {
    grid-template-columns: 0.45fr 1fr;
  }

  .queue-request-row {
    grid-template-columns: 34px 58px minmax(0, 1fr);
    gap: 11px;
    padding: 15px;
  }

  .queue-album-cover {
    width: 58px;
    height: 58px;
  }

  .queue-row-side {
    grid-column: 2 / -1;
    grid-template-columns: auto 1fr auto;
    justify-items: start;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--line-dark);
  }

  .queue-row-side > span {
    display: none;
  }

  .queue-row-side .portal-play {
    width: auto;
    min-width: 130px;
    margin: 0 0 0 auto;
  }

  .guest-main {
    width: calc(100% - 32px);
    padding-top: 52px;
  }

  .guest-event-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 46px;
  }

  .guest-event-heading h1 {
    font-size: clamp(64px, 20vw, 94px);
  }

  .guest-event-heading > span {
    max-width: 300px;
  }

  .song-search kbd {
    display: none;
  }

  .song-row {
    grid-template-columns: 54px 1fr auto;
    gap: 12px;
  }

  .song-duration {
    display: none;
  }

  .song-row-cover {
    width: 54px;
    height: 54px;
  }

  .selected-track {
    grid-template-columns: 96px 1fr;
    gap: 18px;
  }

  .selected-cover {
    width: 96px;
    height: 96px;
  }

  .tip-heading {
    align-items: flex-start;
  }

  .tip-heading > strong {
    font-size: 58px;
  }

  .tip-control {
    padding: 20px 18px 24px;
  }

  .tip-control p {
    max-width: none;
  }

  .tip-secondary-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .custom-tip-row {
    grid-template-columns: 1fr;
  }

  .custom-tip-row > button {
    min-height: 46px;
  }

  .guest-fields {
    grid-template-columns: 1fr;
  }

  .status-track-cover {
    width: 150px;
    height: 150px;
  }

  .status-timeline {
    font-size: 8px;
  }

  .dj-finder-dialog {
    padding: 38px 22px 28px;
  }

  .found-dj {
    grid-template-columns: 48px 1fr;
  }

  .found-dj img {
    width: 48px;
    height: 42px;
  }

  .found-dj button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .skip-intro {
    top: 18px;
    right: 18px;
  }
}

@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;
  }
}
