:root {
  --bg: #050505;
  --bg-soft: #090909;
  --surface: rgba(14, 14, 14, 0.92);
  --surface-strong: rgba(24, 24, 24, 0.94);
  --surface-glass: rgba(255, 255, 255, 0.055);
  --ink: #f6f3ea;
  --ink-strong: #ffffff;
  --muted: #a79f91;
  --muted-strong: #d9cfbc;
  --line: rgba(210, 176, 101, 0.22);
  --line-soft: rgba(255, 255, 255, 0.10);
  --gold: #d6ad5b;
  --gold-soft: #f4d58b;
  --bronze: #8b6a32;
  --primary: #d6ad5b;
  --primary-strong: #f4d58b;
  --cyan: #23c7d9;
  --coral: #ff7866;
  --green: #1fca70;
  --amber: #f2a936;
  --danger: #ff5b5b;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  --radius: 8px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 180px),
    linear-gradient(125deg, rgba(214, 173, 91, 0.13), transparent 32%),
    linear-gradient(245deg, rgba(35, 199, 217, 0.10), transparent 30%),
    var(--bg);
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
}

body::before {
  background-image:
    linear-gradient(rgba(214, 173, 91, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 173, 91, 0.08) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
  animation: gridDrift 22s linear infinite;
}

body::after {
  z-index: -1;
  background:
    linear-gradient(100deg, transparent 0%, rgba(246, 213, 139, 0.08) 48%, transparent 62%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 7px);
  opacity: 0.62;
  transform: translateX(-40%);
  animation: scanSweep 8s ease-in-out infinite;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 6vw;
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(168px, 16vw, 238px);
  height: auto;
  filter: drop-shadow(0 0 24px rgba(214, 173, 91, 0.28));
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.primary-nav a {
  padding: 10px 14px;
  color: var(--muted-strong);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: #111111;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 22px rgba(214, 173, 91, 0.22);
}

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

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--gold-soft);
  border-radius: 999px;
}

.nav-backdrop {
  display: none;
}

.dashboard-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, 88vw);
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  padding: 44px 0 70px;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.dashboard-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--ink-strong);
  font-size: clamp(2.5rem, 4.6vw, 4.45rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  margin-bottom: 10px;
  color: var(--ink-strong);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 16px;
  color: var(--ink-strong);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted-strong);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.7;
  overflow-wrap: break-word;
}

.hero-actions,
.form-footer,
.status-checker,
.status-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  overflow: hidden;
  font-weight: 900;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

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

.button:hover::before {
  transform: translateX(120%);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button:disabled::before {
  display: none;
}

.button.primary {
  color: #0d0b07;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 52%, #a77a2c);
  box-shadow: 0 18px 36px rgba(214, 173, 91, 0.22);
}

.button.secondary {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line);
}

.dashboard-visual {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 420px;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(35, 199, 217, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(214, 173, 91, 0.12), transparent 36%),
    rgba(7, 7, 7, 0.94);
  border: 1px solid rgba(214, 173, 91, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 54px rgba(214, 173, 91, 0.10);
  animation: visualFloat 7s ease-in-out infinite;
}

.dashboard-visual::before,
.dashboard-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.dashboard-visual::before {
  z-index: 2;
  background: linear-gradient(105deg, transparent 0%, rgba(244, 213, 139, 0.18) 48%, transparent 55%);
  mix-blend-mode: screen;
  transform: translateX(-120%);
  animation: cardSweep 6.5s ease-in-out infinite;
}

.dashboard-visual::after {
  z-index: 1;
  background:
    linear-gradient(rgba(214, 173, 91, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 199, 217, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.42;
  animation: gridDrift 18s linear infinite;
}

.ticket-visual {
  grid-template-rows: auto minmax(270px, 1fr) auto;
  gap: 16px;
}

.ticket-topline,
.ticket-stage,
.ticket-metrics {
  position: relative;
  z-index: 4;
}

.ticket-topline {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.ticket-topline img {
  width: min(270px, 56%);
  filter: drop-shadow(0 0 24px rgba(214, 173, 91, 0.24));
}

.ticket-topline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
}

.ticket-stage {
  min-height: 284px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 22%, rgba(35, 199, 217, 0.16), transparent 30%),
    rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.ticket-stage::before {
  position: absolute;
  inset: 34px 13% 30px 14%;
  content: "";
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(214, 173, 91, 0.30);
  border-radius: 20px;
  box-shadow: 22px 22px 30px rgba(0, 0, 0, 0.38);
}

.status-panel {
  position: absolute;
  top: 78px;
  right: 14%;
  width: min(43%, 310px);
  padding: 24px 22px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(214, 173, 91, 0.28);
  border-radius: 16px;
  box-shadow: 16px 18px 30px rgba(0, 0, 0, 0.38);
}

.status-panel span {
  display: block;
  height: 8px;
  margin: 0 0 14px;
  background: linear-gradient(90deg, rgba(244, 213, 139, 0.48), rgba(244, 213, 139, 0.34), rgba(255, 255, 255, 0.10));
  border-radius: 999px;
  transform-origin: left;
  animation: statusLineFlow 3.8s ease-in-out infinite;
}

.status-panel span:nth-child(1) {
  width: 36%;
}

.status-panel span:nth-child(2) {
  width: 54%;
  animation-delay: 260ms;
}

.status-panel span:nth-child(3) {
  width: 68%;
  animation-delay: 520ms;
}

.status-panel span:nth-child(4) {
  width: 42%;
  margin-bottom: 0;
  animation-delay: 780ms;
}

.check-badge {
  position: absolute;
  top: 50px;
  right: 33%;
  width: 54px;
  height: 54px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(31, 202, 112, 0.42);
  animation: checkPulse 3s ease-in-out infinite;
}

.check-badge::before {
  position: absolute;
  top: 14px;
  left: 17px;
  width: 12px;
  height: 24px;
  content: "";
  border-right: 6px solid #ffffff;
  border-bottom: 6px solid #ffffff;
  transform: rotate(42deg);
}

.ticket-card {
  position: absolute;
  display: block;
  width: clamp(128px, 18vw, 206px);
  height: clamp(58px, 6.7vw, 80px);
  border-radius: 16px;
  box-shadow: 14px 18px 28px rgba(0, 0, 0, 0.34);
  transform-origin: center;
  animation: ticketFloat 6.4s ease-in-out infinite;
}

.ticket-card::before,
.ticket-card::after {
  position: absolute;
  top: 50%;
  width: 28px;
  height: 28px;
  content: "";
  background: rgba(7, 7, 7, 0.96);
  border-radius: 50%;
  transform: translateY(-50%);
}

.ticket-card::before {
  left: -14px;
}

.ticket-card::after {
  right: -14px;
}

.ticket-card.ticket-black {
  top: 126px;
  left: 13%;
  z-index: 2;
  background: linear-gradient(95deg, rgba(13, 11, 7, 0.96), rgba(63, 47, 18, 0.78));
  transform: rotate(-10deg);
  animation-delay: 720ms;
}

.ticket-card.ticket-gold {
  top: 86px;
  left: 20%;
  z-index: 4;
  background: linear-gradient(105deg, #d5a84a, #f2d682 58%, #d9a948);
  transform: rotate(8deg);
}

.ticket-card.ticket-cream {
  top: 158px;
  left: 32%;
  z-index: 5;
  background: linear-gradient(105deg, #d8ccb0, #ad9455);
  transform: rotate(-7deg);
  animation-delay: 460ms;
}

.ticket-card.ticket-cyan {
  top: 136px;
  right: 11%;
  z-index: 3;
  background: linear-gradient(105deg, #23c7d9, #117885);
  transform: rotate(12deg);
  animation-delay: 920ms;
}

.ticket-card.ticket-front {
  right: 25%;
  bottom: 28px;
  z-index: 6;
  background: linear-gradient(105deg, #be8125, #f1ce75);
  transform: rotate(-9deg);
  animation-delay: 260ms;
}

.ticket-card.ticket-front::before {
  box-shadow:
    38px 0 0 rgba(255, 255, 255, 0.14),
    78px 0 0 rgba(255, 255, 255, 0.14),
    118px 0 0 rgba(255, 255, 255, 0.14);
}

.ticket-dots {
  position: absolute;
  bottom: 58px;
  left: 13%;
  display: flex;
  gap: 14px;
  align-items: center;
  z-index: 7;
}

.ticket-dots span {
  display: block;
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotFloat 4.2s ease-in-out infinite;
}

.ticket-dots span:nth-child(2) {
  width: 24px;
  height: 24px;
  background: var(--cyan);
  animation-delay: 360ms;
}

.ticket-dots span:nth-child(3) {
  width: 36px;
  height: 36px;
  background: #e45f61;
  animation-delay: 720ms;
}

.ticket-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ticket-metrics span {
  min-width: 0;
  min-height: 54px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  color: var(--gold-soft);
  font-size: 0.94rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(244, 213, 139, 0.24);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  overflow-wrap: anywhere;
  animation: panelPulse 4.8s ease-in-out infinite;
}

.ticket-metrics span:nth-child(2) {
  animation-delay: 600ms;
}

.ticket-metrics span:nth-child(3) {
  animation-delay: 1200ms;
}

.simple-ticket-visual {
  grid-template-rows: auto minmax(292px, 1fr) auto;
  gap: 16px;
}

.simple-ticket-visual .ticket-topline img {
  width: min(285px, 58%);
}

.simple-ticket-visual .ticket-topline span {
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.simple-ticket-visual .ticket-stage {
  min-height: 292px;
  background:
    radial-gradient(circle at 68% 18%, rgba(35, 199, 217, 0.18), transparent 34%),
    radial-gradient(circle at 24% 74%, rgba(214, 173, 91, 0.14), transparent 32%),
    rgba(0, 0, 0, 0.24);
}

.simple-ticket-visual .ticket-stage::before {
  inset: 34px 13% 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 45%),
    rgba(5, 5, 5, 0.52);
  border-color: rgba(214, 173, 91, 0.28);
}

.simple-ticket-visual .ticket-stage::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(244, 213, 139, 0.12), transparent);
  transform: translateX(-120%);
  animation: cardSweep 6.8s ease-in-out infinite;
}

.simple-ticket-visual .check-badge {
  top: 54px;
  right: 30%;
  z-index: 8;
  width: 50px;
  height: 50px;
}

.simple-ticket-visual .check-badge::before {
  top: 13px;
  left: 16px;
  width: 11px;
  height: 22px;
  border-right-width: 6px;
  border-bottom-width: 6px;
}

.simple-ticket-visual .ticket-card {
  width: clamp(140px, 18vw, 206px);
  height: clamp(62px, 6.6vw, 78px);
  overflow: hidden;
}

.simple-ticket-visual .ticket-card::before,
.simple-ticket-visual .ticket-card::after {
  width: 26px;
  height: 26px;
}

.simple-ticket-visual .ticket-card::before {
  left: -13px;
}

.simple-ticket-visual .ticket-card::after {
  right: -13px;
}

.simple-ticket-visual .ticket-card.ticket-black {
  top: 132px;
  left: 15%;
  transform: rotate(-11deg);
}

.simple-ticket-visual .ticket-card.ticket-gold {
  top: 88px;
  left: 24%;
  transform: rotate(7deg);
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.22) 50%, transparent 51%),
    linear-gradient(105deg, #d5a84a, #f2d682 58%, #d9a948);
}

.simple-ticket-visual .ticket-card.ticket-cream {
  top: 166px;
  left: 32%;
  transform: rotate(-6deg);
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.20) 50%, transparent 51%),
    linear-gradient(105deg, #d8ccb0, #ad9455);
}

.simple-ticket-visual .ticket-card.ticket-cyan {
  top: 140px;
  right: 15%;
  transform: rotate(13deg);
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.20) 50%, transparent 51%),
    linear-gradient(105deg, #23c7d9, #117885);
}

.simple-ticket-visual .ticket-card.ticket-front {
  right: 27%;
  bottom: 34px;
  transform: rotate(-8deg);
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.18) 50%, transparent 51%),
    linear-gradient(105deg, #be8125, #f1ce75);
}

.simple-ticket-visual .ticket-dots {
  bottom: 66px;
  left: 15%;
}

.simple-ticket-visual .ticket-dots span {
  width: 26px;
  height: 26px;
}

.simple-ticket-visual .ticket-dots span:nth-child(2) {
  width: 23px;
  height: 23px;
}

.simple-ticket-visual .ticket-dots span:nth-child(3) {
  width: 34px;
  height: 34px;
}

.simple-ticket-visual .ticket-metrics {
  gap: 12px;
}

.simple-ticket-visual .ticket-metrics span {
  min-height: 50px;
  justify-content: center;
  padding: 0 14px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(244, 213, 139, 0.28);
}

.ops-visual {
  grid-template-rows: auto minmax(268px, 1fr) auto;
  gap: 16px;
}

.ops-topline,
.ops-board,
.ops-metrics {
  position: relative;
  z-index: 4;
}

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

.ops-topline img {
  width: min(260px, 56%);
  filter: drop-shadow(0 0 22px rgba(214, 173, 91, 0.22));
}

.ops-topline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.ops-board {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(250px, 0.85fr);
  gap: 16px;
  align-items: stretch;
  min-height: 270px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(35, 199, 217, 0.14), transparent 34%),
    rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.ops-board::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, transparent, rgba(244, 213, 139, 0.10), transparent);
  transform: translateX(-120%);
  animation: cardSweep 7s ease-in-out infinite;
}

.ops-timeline,
.ops-live-card {
  position: relative;
  z-index: 1;
}

.ops-timeline {
  display: grid;
  gap: 12px;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  animation: queueLift 5.2s ease-in-out infinite;
}

.timeline-step:nth-child(2) {
  animation-delay: 420ms;
}

.timeline-step:nth-child(3) {
  animation-delay: 840ms;
}

.timeline-step i {
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 5px;
  background: var(--muted);
  border-radius: 50%;
}

.timeline-step.done i,
.timeline-step.active i {
  background: var(--green);
  box-shadow: 0 0 18px rgba(31, 202, 112, 0.44);
}

.timeline-step strong,
.timeline-step span {
  display: block;
}

.timeline-step strong {
  margin-bottom: 4px;
  color: var(--ink-strong);
}

.timeline-step span {
  color: var(--muted);
  line-height: 1.45;
}

.ops-live-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 38%),
    rgba(8, 8, 8, 0.78);
  border: 1px solid rgba(214, 173, 91, 0.25);
  border-radius: var(--radius);
  box-shadow: 16px 20px 34px rgba(0, 0, 0, 0.28);
}

.ops-card-head {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.ops-card-head span {
  color: var(--gold-soft);
  font-weight: 900;
}

.ops-card-head b {
  color: var(--ink-strong);
  font-size: 0.92rem;
}

.seat-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-content: center;
}

.seat-map span {
  aspect-ratio: 1;
  min-height: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  animation: panelPulse 4.6s ease-in-out infinite;
}

.seat-map span:nth-child(2),
.seat-map span:nth-child(5),
.seat-map span:nth-child(9) {
  background: rgba(214, 173, 91, 0.22);
  border-color: rgba(244, 213, 139, 0.38);
}

.seat-map span:nth-child(7),
.seat-map span:nth-child(12) {
  background: rgba(35, 199, 217, 0.18);
  border-color: rgba(35, 199, 217, 0.38);
}

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

.ops-progress i {
  display: block;
  width: 76%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-soft), var(--cyan));
  border-radius: inherit;
  transform-origin: left;
  animation: signalLine 2.8s ease-in-out infinite;
}

.ops-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ops-metrics div {
  min-width: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(244, 213, 139, 0.22);
  border-radius: var(--radius);
}

.ops-metrics span,
.ops-metrics strong {
  display: block;
}

.ops-metrics span {
  margin-bottom: 4px;
  color: rgba(246, 243, 234, 0.68);
  font-size: 0.78rem;
}

.ops-metrics strong {
  color: var(--gold-soft);
}

.panel-topline,
.queue-monitor,
.ops-strip {
  position: relative;
  z-index: 4;
}

.panel-topline {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.panel-topline img {
  width: min(270px, 58%);
  filter: drop-shadow(0 0 24px rgba(214, 173, 91, 0.24));
}

.panel-topline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.queue-monitor {
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 220px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.queue-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 54px;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 0 14px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  animation: queueLift 4.8s ease-in-out infinite;
}

.queue-row:nth-child(2) {
  animation-delay: 420ms;
}

.queue-row:nth-child(3) {
  animation-delay: 840ms;
}

.queue-row span {
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 900;
}

.queue-row strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink-strong);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.queue-row i {
  display: block;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, var(--gold-soft), var(--cyan), transparent);
  border-radius: 999px;
  transform-origin: left;
  animation: signalLine 2.8s ease-in-out infinite;
}

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

.ops-strip div {
  min-width: 0;
  padding: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(244, 213, 139, 0.24);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  animation: panelPulse 4.8s ease-in-out infinite;
}

.ops-strip div:nth-child(2) {
  animation-delay: 600ms;
}

.ops-strip div:nth-child(3) {
  animation-delay: 1200ms;
}

.ops-strip span,
.ops-strip strong {
  display: block;
  overflow-wrap: anywhere;
}

.ops-strip span {
  margin-bottom: 4px;
  color: rgba(246, 243, 234, 0.72);
  font-size: 0.78rem;
}

.ops-strip strong {
  color: var(--gold-soft);
  font-size: 0.94rem;
}

.flow-band {
  padding: 34px 0;
  background: #080808;
  border-block: 1px solid var(--line-soft);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 88vw);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.flow-item {
  position: relative;
  min-width: 0;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(10, 10, 10, 0.96));
}

.flow-item::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(214, 173, 91, 0.13), transparent);
  transform: translateX(-120%);
}

.flow-item:hover {
  transform: translateY(-2px);
  transition: transform 180ms ease;
}

.flow-item:hover::before {
  animation: cardSweep 900ms ease;
}

.flow-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #0d0b07;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(214, 173, 91, 0.24);
}

.flow-item h2 {
  margin-bottom: 8px;
  font-size: 1.04rem;
  line-height: 1.25;
}

.flow-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: break-word;
}

.section-shell {
  width: min(1180px, 88vw);
  margin: 0 auto;
  padding: 86px 0;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

.form-section .section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.terms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.terms-copy,
.login-terms,
.booking-form,
.status-tool {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.terms-copy,
.login-terms {
  padding: clamp(22px, 3vw, 34px);
}

.login-terms > p {
  color: var(--muted);
  line-height: 1.65;
  margin: 10px 0 18px;
}

.login-terms > p strong {
  color: var(--ink-strong);
  font-weight: 800;
}

.terms-list {
  display: grid;
  gap: 16px;
  padding-left: 24px;
  margin: 0;
}

.terms-list li::marker {
  color: var(--gold-soft);
  font-weight: 900;
}

.terms-list strong,
.terms-list span {
  display: block;
}

.terms-list strong {
  margin-bottom: 6px;
  color: var(--ink-strong);
}

.terms-list span,
.login-terms li {
  color: var(--muted);
  line-height: 1.65;
}

.login-terms ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 0 0 24px;
}

.login-terms li::marker {
  color: var(--gold);
}

.agree-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  color: var(--ink);
  background: rgba(214, 173, 91, 0.09);
  border: 1px solid rgba(214, 173, 91, 0.28);
  border-radius: var(--radius);
}

.agree-box input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.agree-box a {
  color: var(--gold-soft);
  font-weight: 900;
}

.booking-form {
  padding: clamp(20px, 4vw, 42px);
}

.order-form {
  max-width: 1120px;
  padding: clamp(18px, 3vw, 30px);
  margin: 0 auto;
}

.war-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: start;
}

.war-form-layout fieldset {
  padding: 20px;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.order-form .field-grid {
  gap: 14px;
}

.order-form .field {
  gap: 7px;
  margin-bottom: 14px;
}

.order-form .field input,
.order-form .field select,
.order-form .field textarea {
  min-height: 52px;
  padding: 0 16px;
}

.order-form .field textarea {
  min-height: 118px;
  padding: 14px 16px;
}

.order-form legend {
  width: 100%;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(214, 173, 91, 0.22);
}

.compact-controls {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 14px;
  margin-bottom: 14px;
}

.compact-controls .choice {
  flex-basis: 92px;
}

.order-form .choice {
  min-height: 50px;
}

.membership-field[hidden] {
  display: none;
}

/* Loket form (menyatu di /order) */
.loket-dob {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.loket-group-label {
  display: block;
}
.loket-sale {
  margin-bottom: 14px;
}
/* .field sets display:grid which would override the [hidden] attribute, so the
   presale-only Code Invitation field needs an explicit hide (same trick as
   .membership-field above). */
[data-loket-invitation][hidden] {
  display: none;
}

.consent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0 20px;
}

/* ── Fee jaswar card ── */
.fee-card {
  max-width: 1120px;
  margin: 0 auto 22px;
  padding: 20px clamp(18px, 3vw, 26px);
  background: linear-gradient(135deg, rgba(214, 173, 91, 0.14), rgba(35, 199, 217, 0.07));
  border: 1px solid rgba(214, 173, 91, 0.30);
  border-radius: var(--radius);
}

.fee-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.fee-card-head h2 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.fee-spark {
  color: var(--gold);
}

.fee-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fee-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.fee-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
}

.fee-ic {
  font-size: 1.05rem;
}

.fee-badge {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(214, 173, 91, 0.22);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.fee-price {
  font-weight: 900;
  color: var(--gold-soft);
  white-space: nowrap;
}

.refund-field small {
  color: var(--muted);
  line-height: 1.5;
}

.reference-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  margin-bottom: 26px;
  background: rgba(214, 173, 91, 0.09);
  border: 1px solid rgba(214, 173, 91, 0.28);
  border-radius: var(--radius);
}

.reference-panel[hidden] {
  display: none;
}

.reference-panel span {
  color: var(--muted);
  font-weight: 900;
}

.reference-panel strong {
  color: var(--gold-soft);
  overflow-wrap: anywhere;
}

.reference-panel .compact-button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.88rem;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 30px;
}

.form-progress span,
.form-progress a {
  min-width: 0;
  padding: 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.form-progress a:hover {
  color: var(--gold-soft);
  border-color: rgba(244, 213, 139, 0.44);
}

.form-progress .active {
  color: #0d0b07;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: rgba(244, 213, 139, 0.72);
}

fieldset {
  padding: 0;
  margin: 0 0 32px;
  border: 0;
}

legend {
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.compact-grid {
  grid-template-columns: minmax(150px, 0.48fr) minmax(0, 1fr);
}

.field {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
  margin-bottom: 18px;
}

.field.full {
  width: 100%;
}

.field span,
.control-label {
  color: var(--muted-strong);
  font-weight: 900;
}

.field span em {
  display: inline-flex;
  margin-left: 8px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

/* native dropdown list is OS-rendered (usually light) — keep option text dark */
.field select option {
  color: #111;
}

.field textarea {
  min-height: 128px;
  padding: 16px 18px;
  resize: vertical;
  line-height: 1.6;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #837a6c;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(244, 213, 139, 0.72);
  box-shadow: 0 0 0 4px rgba(214, 173, 91, 0.14);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: rgba(255, 91, 91, 0.72);
}

.field small {
  color: var(--muted);
  line-height: 1.5;
}

.file-field input[type="file"] {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.file-field input[type="file"]:hover {
  border-color: rgba(244, 213, 139, 0.48);
  background: rgba(255, 255, 255, 0.06);
}

.file-field input[type="file"]::file-selector-button {
  min-height: 38px;
  margin-right: 14px;
  padding: 0 16px;
  color: #0d0b07;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: filter 160ms ease;
}

.file-field input[type="file"]::file-selector-button:hover {
  filter: brightness(1.08);
}

.password-field input {
  padding-right: 88px;
}

.ghost-button {
  position: absolute;
  right: 10px;
  bottom: 9px;
  min-width: 68px;
  min-height: 40px;
  color: var(--gold-soft);
  font-weight: 900;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
}

.ghost-button:hover {
  color: #0d0b07;
  background: var(--gold);
}

.control-row {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: 18px;
}

.control-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.control-label {
  flex: 1 0 100%;
}

.choice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 130px;
  min-height: 54px;
  padding: 0 16px;
  color: var(--muted-strong);
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.choice:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 213, 139, 0.48);
}

.choice.active {
  color: #0d0b07;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: rgba(244, 213, 139, 0.72);
}

.form-agree {
  margin-top: -2px;
}

.form-footer {
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.form-message.success {
  color: var(--green);
}

.form-message.error {
  color: var(--danger);
}

.submit-button {
  min-width: min(100%, 260px);
}

.otp-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 22px;
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(214, 173, 91, 0.12), rgba(35, 199, 217, 0.08));
  border: 1px solid rgba(214, 173, 91, 0.28);
  border-radius: var(--radius);
}

.otp-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.otp-channels[hidden] {
  display: none;
}

.otp-channel-btn {
  flex: 1 1 200px;
}

#otpCodeBlock[hidden] {
  display: none;
}

.otp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.button.ghost {
  background: transparent;
  border: 1px solid rgba(214, 173, 91, 0.4);
  color: var(--gold-soft);
}

.button.ghost::before {
  display: none;
}

.otp-done {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.08);
  border-radius: var(--radius);
  text-align: center;
}

.otp-done[hidden] {
  display: none;
}

.otp-done-check {
  width: 46px;
  height: 46px;
  margin: 0 auto 4px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  font-size: 1.6rem;
  font-weight: 900;
}

.otp-done h3 {
  margin: 0;
  color: #4ade80;
}

.otp-done p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.otp-panel[hidden] {
  display: none;
}

.otp-panel h3 {
  margin-bottom: 8px;
}

.otp-panel p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.otp-field {
  margin-bottom: 0;
}

.otp-field input {
  color: var(--gold-soft);
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
}

.status-tool {
  display: grid;
  gap: 20px;
  padding: clamp(20px, 3vw, 34px);
}

.status-checker {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.status-checker .field {
  margin-bottom: 0;
}

.status-result {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 96px;
  padding: 20px;
  border: 1px solid;
  border-radius: var(--radius);
  animation: statusBreathe 3.4s ease-in-out infinite;
}

.status-result strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-strong);
  font-size: 1.16rem;
}

.status-result p {
  margin-bottom: 0;
  color: var(--muted-strong);
  line-height: 1.6;
}

.status-dot {
  width: 16px;
  height: 16px;
  margin-top: 5px;
  border-radius: 50%;
}

.status-result.secured {
  background: rgba(31, 202, 112, 0.10);
  border-color: rgba(31, 202, 112, 0.34);
}

.status-result.secured .status-dot {
  background: var(--green);
  box-shadow: 0 0 18px rgba(31, 202, 112, 0.6);
}

.status-result.pending {
  background: rgba(35, 199, 217, 0.10);
  border-color: rgba(35, 199, 217, 0.34);
}

.status-result.pending .status-dot {
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(35, 199, 217, 0.56);
}

.status-result.changed {
  background: rgba(242, 169, 54, 0.12);
  border-color: rgba(242, 169, 54, 0.40);
}

.status-result.changed .status-dot {
  background: var(--amber);
  box-shadow: 0 0 18px rgba(242, 169, 54, 0.58);
}

.status-result.failed {
  background: rgba(255, 91, 91, 0.10);
  border-color: rgba(255, 91, 91, 0.34);
}

.status-result.failed .status-dot {
  background: var(--danger);
  box-shadow: 0 0 18px rgba(255, 91, 91, 0.54);
}

.status-result.not_found {
  background: rgba(255, 91, 91, 0.10);
  border-color: rgba(255, 91, 91, 0.34);
}

.status-result.not_found .status-dot {
  background: var(--danger);
  box-shadow: 0 0 18px rgba(255, 91, 91, 0.54);
}

.status-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 12px;
  padding-top: 14px;
  margin: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.status-summary dt,
.status-summary dd {
  min-width: 0;
  margin: 0;
}

.status-summary dt {
  color: var(--gold-soft);
  font-weight: 900;
}

.status-summary dd {
  color: var(--muted-strong);
  overflow-wrap: anywhere;
}

/* ── Lapor hasil war ── */
.status-report {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.status-report[hidden] {
  display: none;
}

.status-report-head h3 {
  margin: 4px 0 6px;
}

.status-report-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.status-report-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.report-option {
  display: grid;
  gap: 4px;
  padding: 16px 14px;
  text-align: left;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.report-option:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 213, 139, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.report-option.active {
  border-color: rgba(244, 213, 139, 0.85);
  background: rgba(214, 173, 91, 0.12);
}

.report-emoji {
  font-size: 1.5rem;
}

.report-label {
  font-weight: 900;
  color: var(--ink-strong);
}

.report-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}

.status-report-seat {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.status-report-seat[hidden] {
  display: none;
}

@media (max-width: 720px) {
  .status-report-options {
    grid-template-columns: 1fr;
  }
}

.status-examples button {
  min-height: 38px;
  padding: 0 12px;
  color: var(--muted-strong);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.status-examples button:hover {
  color: #0d0b07;
  background: var(--gold);
  border-color: var(--gold);
}

.testimonials-section {
  position: relative;
  padding-top: 74px;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.testimonial-board {
  display: grid;
  grid-template-columns: minmax(220px, 0.24fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.testimonial-summary {
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: 22px;
  background: rgba(14, 14, 14, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.testimonial-summary span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-summary strong {
  color: var(--ink-strong);
  font-size: clamp(3.6rem, 7vw, 6rem);
  line-height: 0.95;
}

.testimonial-summary p {
  margin-bottom: 0;
  color: var(--muted-strong);
  line-height: 1.55;
}

.testimonial-slider {
  position: relative;
  min-width: 0;
}

.testimonial-viewport {
  min-width: 0;
  overflow: hidden;
}

.slider-controls {
  position: absolute;
  top: -58px;
  right: 0;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  color: var(--gold-soft);
  font-size: 1.2rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.slider-controls button:hover {
  color: #0d0b07;
  background: var(--gold);
  border-color: var(--gold);
}

.testimonial-console {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.30fr) minmax(0, 1fr);
  gap: 20px;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(214, 173, 91, 0.16), transparent 30%),
    linear-gradient(225deg, rgba(35, 199, 217, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(5, 5, 5, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 52px rgba(35, 199, 217, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.testimonial-console::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(214, 173, 91, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 173, 91, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.45;
  animation: gridDrift 18s linear infinite;
}

.testimonial-console::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(105deg, transparent 0%, rgba(244, 213, 139, 0.20) 48%, transparent 54%);
  transform: translateX(-120%);
  animation: cardSweep 6s ease-in-out infinite;
}

.testimonial-signal {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  min-height: 100%;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.74), rgba(17, 17, 17, 0.68)),
    repeating-linear-gradient(90deg, rgba(244, 213, 139, 0.06) 0 1px, transparent 1px 12px);
  border: 1px solid rgba(244, 213, 139, 0.32);
  border-radius: var(--radius);
}

.testimonial-signal span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-signal strong {
  color: var(--ink-strong);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.92;
}

.testimonial-signal p {
  margin-bottom: 0;
  color: var(--muted-strong);
  line-height: 1.55;
}

.signal-orbit {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.signal-orbit span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-soft), var(--cyan), transparent 76%);
  box-shadow: 0 0 18px rgba(35, 199, 217, 0.18);
  transform-origin: left;
  animation: signalLine 3.2s ease-in-out infinite;
}

.signal-orbit span:nth-child(2) {
  width: 74%;
  animation-delay: 360ms;
}

.signal-orbit span:nth-child(3) {
  width: 52%;
  animation-delay: 720ms;
}

.testimonial-grid {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.testimonial-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  flex: 0 0 clamp(300px, 32vw, 388px);
  gap: 16px;
  min-height: 250px;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 34%),
    linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(10, 10, 10, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  scroll-snap-align: start;
  animation: statusBreathe 5.2s ease-in-out infinite;
}

.testimonial-card:nth-child(2) {
  animation-delay: 520ms;
}

.testimonial-card:nth-child(3) {
  animation-delay: 1040ms;
}

.testimonial-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-soft), var(--cyan), transparent);
  opacity: 0.86;
}

.testimonial-card::after {
  position: absolute;
  inset: auto 16px 16px auto;
  width: 46px;
  height: 46px;
  content: "";
  border-right: 1px solid rgba(244, 213, 139, 0.36);
  border-bottom: 1px solid rgba(244, 213, 139, 0.36);
}

.testimonial-card-head {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.testimonial-card-head span {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(31, 202, 112, 0.56);
}

.testimonial-card p {
  margin-bottom: 0;
  color: var(--muted-strong);
  line-height: 1.62;
}

.testimonial-card footer strong,
.testimonial-card footer span {
  display: block;
}

.testimonial-card footer strong {
  margin-bottom: 4px;
  color: var(--ink-strong);
}

.testimonial-card footer span {
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 900;
}

.testimonial-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(214, 173, 91, 0.10), transparent 36%),
    rgba(14, 14, 14, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.testimonial-form-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 24px;
}

.testimonial-form-panel > div,
.testimonial-form-panel .field.full,
.testimonial-form-panel .form-message {
  grid-column: 1 / -1;
}

.testimonial-form-panel .button {
  grid-column: 1 / -1;
  justify-self: end;
  width: min(100%, 260px);
}

.testimonial-form h3 {
  margin-bottom: 8px;
}

.testimonial-form p:not(.eyebrow):not(.form-message) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.testimonial-form .field {
  margin-bottom: 0;
}

.testimonial-form .button {
  width: 100%;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(160px, 0.45fr);
  gap: 28px;
  align-items: start;
  width: min(1180px, 88vw);
  padding: 34px 0 46px;
  margin: 0 auto;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 360px;
}

.footer-brand img {
  width: 176px;
  filter: drop-shadow(0 0 20px rgba(214, 173, 91, 0.22));
}

.footer-brand p {
  margin-bottom: 0;
  line-height: 1.65;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
}

.footer-nav a {
  color: var(--muted-strong);
  font-weight: 900;
}

.footer-nav a:hover {
  color: var(--gold-soft);
}

.footer-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  color: var(--gold-soft);
  font-weight: 900;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 56px 56px;
  }
}

@keyframes scanSweep {
  0%,
  100% {
    transform: translateX(-48%);
    opacity: 0.32;
  }
  48% {
    transform: translateX(48%);
    opacity: 0.70;
  }
}

@keyframes cardSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

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

@keyframes artDrift {
  0%,
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.05) translate3d(-10px, 8px, 0);
  }
}

@keyframes panelPulse {
  0%,
  100% {
    border-color: rgba(244, 213, 139, 0.20);
    transform: translateY(0);
  }
  50% {
    border-color: rgba(244, 213, 139, 0.48);
    transform: translateY(-3px);
  }
}

@keyframes queueLift {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.10);
    transform: translateY(0);
  }
  50% {
    border-color: rgba(244, 213, 139, 0.34);
    transform: translateY(-2px);
  }
}

@keyframes statusBreathe {
  0%,
  100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 0 26px rgba(214, 173, 91, 0.08);
  }
}

@keyframes signalLine {
  0%,
  100% {
    opacity: 0.54;
    transform: scaleX(0.76);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes ticketFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes statusLineFlow {
  0%,
  100% {
    opacity: 0.52;
    transform: scaleX(0.74);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes checkPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 22px rgba(31, 202, 112, 0.34);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 34px rgba(31, 202, 112, 0.62);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .js .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .dashboard-section,
  .terms-layout,
  .testimonial-layout,
  .testimonial-board {
    grid-template-columns: 1fr;
  }

  .dashboard-section {
    min-height: auto;
    padding-top: 44px;
  }

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

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

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

  .testimonial-card {
    flex-basis: min(78vw, 360px);
  }

  .ops-board {
    grid-template-columns: 1fr;
  }

  .war-form-layout,
  .testimonial-console {
    grid-template-columns: 1fr;
  }

  .testimonial-signal {
    min-height: 260px;
  }

  .compact-controls {
    grid-template-columns: 1fr;
  }

  .control-row,
  .otp-panel {
    grid-template-columns: 1fr;
  }

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

  .status-checker .button {
    width: 100%;
  }

  .otp-panel .button {
    width: 100%;
  }
}

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

  .brand-logo {
    width: 154px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 51;
    transition: background 160ms ease, border-color 160ms ease;
  }

  .nav-toggle.open {
    background: rgba(214, 173, 91, 0.12);
    border-color: rgba(244, 213, 139, 0.48);
  }

  .nav-toggle span {
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

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

  .nav-backdrop {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 35;
    display: block;
    background: rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(4px);
  }

  .primary-nav {
    position: fixed;
    top: calc(var(--header-height) + 12px);
    right: 16px;
    left: auto;
    z-index: 50;
    display: grid;
    width: min(286px, calc(100vw - 32px));
    gap: 6px;
    padding: 10px;
    background:
      linear-gradient(145deg, rgba(244, 213, 139, 0.08), transparent 38%),
      rgba(7, 7, 7, 0.985);
    border: 1px solid rgba(244, 213, 139, 0.34);
    border-radius: var(--radius);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.68), 0 0 34px rgba(214, 173, 91, 0.12);
    backdrop-filter: blur(18px);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .primary-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 14px;
    color: var(--muted-strong);
    font-size: 0.98rem;
    font-weight: 900;
    border-radius: var(--radius);
  }

  .primary-nav a::after {
    color: rgba(244, 213, 139, 0.58);
    content: ">";
  }

  .primary-nav a.active::after {
    color: rgba(13, 11, 7, 0.72);
  }

  .dashboard-section,
  .section-shell,
  .flow-grid,
  .site-footer {
    width: calc(100vw - 32px);
    max-width: 1180px;
  }

  .dashboard-section {
    padding-bottom: 48px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.6vw, 2.9rem);
    line-height: 1.02;
  }

  .lead {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .flow-item p,
  .section-heading p {
    overflow-wrap: anywhere;
  }

  .dashboard-visual {
    min-height: auto;
    padding: 18px;
  }

  .ticket-visual {
    grid-template-rows: auto minmax(260px, 1fr) auto;
  }

  .ticket-topline {
    align-items: flex-start;
  }

  .ticket-topline img {
    width: 178px;
  }

  .ticket-topline span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.64rem;
  }

  .ticket-stage {
    min-height: 290px;
  }

  .status-panel {
    top: 76px;
    right: 8%;
    width: 58%;
    padding: 22px 18px;
  }

  .check-badge {
    top: 48px;
    right: 26%;
    width: 48px;
    height: 48px;
  }

  .check-badge::before {
    top: 12px;
    left: 15px;
    width: 11px;
    height: 22px;
    border-right-width: 6px;
    border-bottom-width: 6px;
  }

  .ticket-card {
    width: 142px;
    height: 62px;
  }

  .ticket-card.ticket-black {
    top: 128px;
    left: 8%;
  }

  .ticket-card.ticket-gold {
    top: 92px;
    left: 17%;
  }

  .ticket-card.ticket-cream {
    top: 166px;
    left: 25%;
  }

  .ticket-card.ticket-cyan {
    top: 148px;
    right: 7%;
  }

  .ticket-card.ticket-front {
    right: 20%;
    bottom: 28px;
  }

  .ticket-dots {
    bottom: 54px;
    left: 9%;
  }

  .ticket-metrics {
    grid-template-columns: 1fr;
  }

  .ops-topline {
    align-items: flex-start;
  }

  .ops-topline img {
    width: 178px;
  }

  .ops-topline span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.64rem;
  }

  .ops-board {
    padding: 14px;
  }

  .ops-metrics {
    grid-template-columns: 1fr;
  }

  .panel-topline {
    align-items: flex-start;
  }

  .panel-topline img {
    width: 178px;
  }

  .panel-topline span {
    min-height: 30px;
    font-size: 0.68rem;
  }

  .queue-monitor {
    min-height: auto;
    padding: 12px;
  }

  .queue-row {
    grid-template-columns: 66px minmax(0, 1fr);
    min-height: 54px;
  }

  .queue-row i {
    grid-column: 1 / -1;
  }

  .ops-strip {
    grid-template-columns: 1fr;
  }

  .flow-grid,
  .field-grid,
  .compact-grid,
  .status-checker {
    grid-template-columns: 1fr;
  }

  .flow-item {
    padding: 20px;
  }

  .section-shell {
    padding: 58px 0;
  }

  .form-section .section-heading {
    margin-bottom: 18px;
  }

  .form-progress {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 18px;
  }

  .form-progress span,
  .form-progress a {
    min-height: 42px;
    padding: 8px 5px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .testimonial-grid,
  .consent-grid,
  .site-footer,
  .testimonial-form-panel {
    grid-template-columns: 1fr;
  }

  .slider-controls {
    position: static;
    justify-content: flex-end;
    margin-bottom: 12px;
  }

  .testimonial-card {
    flex-basis: min(86vw, 340px);
  }

  .war-form-layout {
    gap: 14px;
  }

  .war-form-layout fieldset {
    padding: 16px 18px 10px;
  }

  .order-form .field {
    margin-bottom: 12px;
  }

  .order-form .field input,
  .order-form .field textarea {
    min-height: 50px;
  }

  .order-form .field textarea {
    min-height: 112px;
  }

  .order-form .choice {
    min-height: 46px;
  }

  .compact-controls {
    gap: 12px;
    margin-bottom: 12px;
  }

  .consent-grid {
    gap: 10px;
    margin: 14px 0 16px;
  }

  .testimonial-signal {
    min-height: 180px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-meta {
    justify-items: start;
  }

  .form-footer {
    align-items: stretch;
  }

  .submit-button,
  .form-footer .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 148px;
  }

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

  h1 {
    font-size: clamp(1.88rem, 8.6vw, 2.45rem);
  }

  .form-section .section-heading h1 {
    font-size: clamp(2rem, 9vw, 2.48rem);
  }

  .booking-form,
  .terms-copy,
  .login-terms,
  .status-tool {
    padding: 18px;
  }

  .order-form {
    padding: 16px;
  }
}

/* ═══════════ /order UI polish pass (2026-06-18) ═══════════ */
.form-section .section-heading h1 { font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 12px; }
.section-heading p:not(.eyebrow) { color: var(--muted-strong); font-size: 1.02rem; line-height: 1.7; max-width: 56ch; }

.order-form { max-width: 1120px; padding: clamp(20px, 3vw, 32px); margin: 0 auto; }

.fee-card { max-width: 1120px; margin: 0 auto 24px; padding: 20px clamp(18px, 3vw, 26px); background: linear-gradient(135deg, rgba(214,173,91,0.14), rgba(35,199,217,0.07)); border: 1px solid rgba(214,173,91,0.30); border-left: 3px solid var(--gold); border-radius: var(--radius); box-shadow: 0 18px 50px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.08); backdrop-filter: blur(14px); }
.fee-card-head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; margin-bottom: 14px; border-bottom: 1px solid rgba(214,173,91,0.20); }
.fee-card-head h2 { margin: 0; font-size: 0.92rem; letter-spacing: 0.10em; text-transform: uppercase; color: var(--gold-soft); }
.fee-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.fee-list li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; transition: border-color 160ms ease, background 160ms ease, transform 160ms ease; }
.fee-list li:hover { transform: translateX(2px); border-color: rgba(244,213,139,0.40); background: rgba(255,255,255,0.06); }
.fee-list li:nth-child(1), .fee-list li:nth-child(2) { background: linear-gradient(90deg, rgba(214,173,91,0.16), rgba(255,255,255,0.04)); border-color: rgba(214,173,91,0.34); box-shadow: inset 3px 0 0 var(--gold); }
.fee-price { font-size: 1.02rem; font-weight: 900; color: var(--gold-soft); white-space: nowrap; font-variant-numeric: tabular-nums; }

.form-progress { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 8px; margin-bottom: 24px; counter-reset: step; }
.form-progress::after { content: ""; position: absolute; left: 14%; right: 14%; top: 50%; height: 1px; background: var(--line-soft); z-index: 0; }
.form-progress span, .form-progress a { position: relative; z-index: 1; counter-increment: step; display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-width: 0; padding: 12px; overflow: hidden; color: var(--muted); font-size: 0.9rem; font-weight: 900; text-align: center; text-overflow: ellipsis; white-space: nowrap; background: rgba(255,255,255,0.045); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.form-progress span::before, .form-progress a::before { content: counter(step); display: grid; place-items: center; width: 20px; height: 20px; flex: 0 0 20px; border-radius: 999px; font-size: 0.72rem; background: rgba(255,255,255,0.10); color: var(--muted); }
.form-progress span:not(.active), .form-progress a:not(.active) { color: var(--muted-strong); background: rgba(255,255,255,0.025); border-style: dashed; border-color: rgba(255,255,255,0.14); }
.form-progress .active { color: #0d0b07; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); border-color: rgba(244,213,139,0.72); box-shadow: 0 10px 24px rgba(214,173,91,0.24); }
.form-progress .active::before { background: rgba(13,11,7,0.28); color: #0d0b07; }

.war-form-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); gap: 22px; align-items: stretch; }
.war-form-layout fieldset { position: relative; display: flex; flex-direction: column; height: 100%; padding: clamp(20px, 2.4vw, 28px); margin-bottom: 0; background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 6px 22px rgba(0,0,0,0.18); }
.war-form-layout fieldset::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; border-radius: var(--radius) var(--radius) 0 0; background: linear-gradient(90deg, rgba(214,173,91,0.55), rgba(35,199,217,0.28), transparent); }
.war-form-layout fieldset > .field:last-child, .war-form-layout fieldset > .field-grid:last-child, .war-form-layout fieldset > .compact-controls:last-child { margin-bottom: 0; }

.order-form legend { position: relative; display: flex; align-items: center; gap: 10px; width: 100%; margin-bottom: 18px; padding-bottom: 12px; font-size: 0.98rem; letter-spacing: 0.06em; border-bottom: 1px solid rgba(214,173,91,0.20); }
.order-form legend::before { content: ""; flex: 0 0 auto; width: 3px; height: 15px; border-radius: 2px; background: linear-gradient(180deg, var(--gold-soft), var(--gold)); }

.field span, .control-label { color: var(--muted-strong); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; }
.field:focus-within > span, .field:focus-within > .control-label { color: var(--gold-soft); transition: color 160ms ease; }
.field span em { display: inline-flex; align-items: center; margin-left: 8px; padding: 1px 7px; color: var(--muted); font-size: 0.66rem; font-style: normal; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: rgba(255,255,255,0.05); border: 1px solid var(--line-soft); border-radius: 999px; }
.field span em.req { color: #0d0b07; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); border-color: rgba(244,213,139,0.72); }

.field input:user-invalid, .field textarea:user-invalid { border-color: rgba(255,91,91,0.72); box-shadow: 0 0 0 4px rgba(255,91,91,0.12); }
.order-form .file-field input[type="file"] { min-height: 52px; padding: 7px 10px; border-style: dashed; border-color: rgba(214,173,91,0.32); }
.order-form .file-field input[type="file"]::file-selector-button { min-height: 36px; }
.order-form .file-field input[type="file"]:hover { border-color: rgba(244,213,139,0.55); }
.order-form .field small { margin-top: 2px; font-size: 0.82rem; }

.compact-controls .choice { flex: 0 1 132px; min-width: 96px; }
.control-group { gap: 8px; }
.control-label { flex: 1 0 100%; margin-bottom: 2px; }
.order-form .choice.active { box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 8px 20px rgba(214,173,91,0.22); }

.order-form .password-field .ghost-button { top: 50%; bottom: auto; transform: translateY(-50%); min-height: 34px; font-size: 0.84rem; }

.refund-field { margin-top: 22px; padding: clamp(18px, 2.2vw, 22px); background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); }

.agree-box { display: flex; gap: 12px; align-items: flex-start; padding: 16px; color: var(--ink); line-height: 1.55; background: rgba(214,173,91,0.09); border: 1px solid rgba(214,173,91,0.28); border-radius: var(--radius); cursor: pointer; transition: border-color 160ms ease, background 160ms ease; }
.agree-box:hover { border-color: rgba(214,173,91,0.45); }
.consent-grid .agree-box:has(input:checked) { border-color: rgba(244,213,139,0.70); background: rgba(214,173,91,0.14); box-shadow: 0 0 0 3px rgba(214,173,91,0.10); }
.agree-box input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--gold); }
.consent-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 22px 0 22px; }

.form-footer { justify-content: space-between; margin-top: 4px; padding-top: 20px; gap: 16px; border-top: 1px solid var(--line); }
.form-message { flex: 1 1 200px; }
.submit-button { min-width: min(100%, 280px); min-height: 56px; padding: 0 32px; font-size: 1.02rem; letter-spacing: 0.03em; box-shadow: 0 16px 34px rgba(214,173,91,0.30); }
.submit-button:hover { box-shadow: 0 22px 44px rgba(214,173,91,0.40); }
.submit-button .cta-arrow { margin-left: 10px; transition: transform 160ms ease; }
.submit-button:hover .cta-arrow { transform: translateX(3px); }

.otp-panel h3 { font-size: 1.32rem; letter-spacing: -0.01em; }
.otp-field input { color: var(--gold-soft); font-size: 1.4rem; font-weight: 900; text-align: center; letter-spacing: 0.4em; padding-left: calc(18px + 0.4em); }

.choice:focus-visible, .ghost-button:focus-visible, .file-field input[type="file"]:focus-visible, .form-progress a:focus-visible, .button:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 2px; box-shadow: 0 0 0 4px rgba(214,173,91,0.20); }
.agree-box input:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 2px; }
.field input:focus-visible, .field textarea:focus-visible { border-color: var(--gold-soft); box-shadow: 0 0 0 4px rgba(214,173,91,0.22); }

@media (max-width: 980px) {
  .war-form-layout { grid-template-columns: 1fr; gap: 16px; }
  .war-form-layout fieldset { height: auto; }
}
@media (max-width: 760px) {
  .war-form-layout fieldset { height: auto; padding: 16px 18px; }
  .compact-grid { grid-template-columns: minmax(110px, 0.4fr) minmax(0, 1fr); }
  .consent-grid { margin: 14px 0 16px; }
  .form-progress { margin-bottom: 18px; }
}

/* ── /order: natural column heights (fee card removed; refund moved to left) ── */
.war-form-layout { align-items: start; }
.war-form-layout fieldset { height: auto; }

/* ═══════════ dashboard + testimoni polish (2026-06-18) ═══════════ */

/* testimonial summary — gold-gradient count + accent hairline */
.testimonial-summary { position: relative; overflow: hidden; }
.testimonial-summary::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, rgba(214,173,91,0.60), rgba(35,199,217,0.30), transparent); }
.testimonial-summary strong { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* testimonial form panel — card framing + clearer heading */
.testimonial-form-panel { position: relative; overflow: hidden; }
.testimonial-form-panel::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, rgba(214,173,91,0.60), rgba(35,199,217,0.30), transparent); }
.testimonial-form-panel h3 { font-size: 1.3rem; letter-spacing: -0.01em; }

/* testimonial cards — calm on hover (pause breathe) + gold border hint */
.testimonial-card { transition: border-color 200ms ease; }
.testimonial-card:hover { animation-play-state: paused; border-color: rgba(244,213,139,0.32); }

/* flow-band — richer hover */
.flow-item { transition: transform 180ms ease, background 200ms ease; }
.flow-item:hover { background: linear-gradient(180deg, rgba(30,30,30,0.96), rgba(12,12,12,0.96)); }

/* a11y focus rings (consistency with /order) */
.slider-controls button:focus-visible,
.testimonial-form .button:focus-visible,
.testimonial-form-panel .button:focus-visible,
.flow-item:focus-visible,
.hero-actions .button:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(214,173,91,0.18);
  border-radius: var(--radius);
}

/* ═══════════ mobile nav redesign + /order fixes (2026-06-18) ═══════════ */

/* Choice buttons: Gen Sale|Presale share the column side-by-side; lone Day sizes to content */
.control-group[data-choice-group="saleType"] .choice { flex: 1 1 0; min-width: 0; }
.control-group[data-choice-group="concertDay"] .choice { flex: 0 0 auto; min-width: 112px; }

@media (max-width: 760px) {
  /* ── premium mobile nav menu ── */
  .primary-nav { gap: 8px; padding: 12px; width: min(300px, calc(100vw - 28px)); }
  .primary-nav a {
    min-height: 52px; padding: 0 14px; gap: 10px;
    font-size: 0.96rem; font-weight: 800; color: var(--ink);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px; box-shadow: none;
  }
  .primary-nav a::after {
    content: "\203A"; /* › */
    display: grid; place-items: center;
    width: 24px; height: 24px; flex: 0 0 24px;
    font-size: 1.05rem; font-weight: 700; line-height: 1;
    color: var(--gold-soft);
    background: rgba(214,173,91,0.12);
    border-radius: 999px;
  }
  .primary-nav a:hover, .primary-nav a:focus-visible {
    color: var(--ink-strong);
    background: rgba(214,173,91,0.10);
    border-color: rgba(244,213,139,0.45);
  }
  .primary-nav a.active {
    color: #0d0b07;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    border-color: rgba(244,213,139,0.72);
    box-shadow: 0 8px 22px rgba(214,173,91,0.28);
  }
  .primary-nav a.active::after { color: #0d0b07; background: rgba(13,11,7,0.20); }

  /* ── /order: tighter stepper so it doesn't cramp ── */
  .form-progress { gap: 6px; }
  .form-progress span, .form-progress a { padding: 10px 8px; font-size: 0.78rem; }
  .form-progress span::before, .form-progress a::before { width: 18px; height: 18px; flex: 0 0 18px; font-size: 0.66rem; }
  .form-progress::after { left: 18%; right: 18%; }
}

/* ═══════════ rekening pembayaran card (/order) ═══════════ */
.pay-card { max-width: 1120px; margin: 0 auto 22px; padding: 20px clamp(18px,3vw,26px); background: linear-gradient(135deg, rgba(35,199,217,0.08), rgba(214,173,91,0.11)); border: 1px solid rgba(214,173,91,0.28); border-left: 3px solid var(--gold); border-radius: var(--radius); box-shadow: 0 16px 44px rgba(0,0,0,0.36), inset 0 1px 0 rgba(255,255,255,0.06); }
.pay-head .eyebrow { margin-bottom: 6px; }
.pay-head h2 { margin: 0 0 4px; font-size: 1.16rem; letter-spacing: -0.01em; }
.pay-head p { margin: 0 0 14px; color: var(--muted); line-height: 1.55; font-size: 0.92rem; }
.pay-accounts { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 12px; }
.pay-acc { display: grid; gap: 7px; padding: 13px 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; }
.pay-acc-bank { font-size: 0.74rem; font-weight: 900; letter-spacing: 0.10em; text-transform: uppercase; color: var(--gold-soft); }
.pay-acc-num { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; padding: 9px 12px; color: var(--ink-strong); font-size: 1.12rem; font-weight: 800; letter-spacing: 0.04em; font-variant-numeric: tabular-nums; background: rgba(0,0,0,0.28); border: 1px solid rgba(255,255,255,0.10); border-radius: 10px; cursor: pointer; transition: border-color 160ms ease, background 160ms ease; }
.pay-acc-num:hover { border-color: rgba(244,213,139,0.50); background: rgba(0,0,0,0.4); }
.pay-acc-num:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 2px; }
.pay-copy { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-soft); white-space: nowrap; }
.pay-acc-num.copied { border-color: rgba(31,202,112,0.6); background: rgba(31,202,112,0.10); }
.pay-acc-num.copied .pay-copy { color: #4ade80; }
.pay-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); }
.pay-name { color: var(--muted-strong); font-size: 0.94rem; }
.pay-name b { color: var(--ink-strong); font-weight: 900; }
.pay-wa { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 20px; color: #052e16; font-weight: 900; background: linear-gradient(135deg, #34d399, #10b981); border-radius: 999px; box-shadow: 0 8px 22px rgba(16,185,129,0.28); transition: filter 160ms ease, transform 160ms ease; }
.pay-wa:hover { filter: brightness(1.07); transform: translateY(-1px); }
.pay-wa:focus-visible { outline: 2px solid #6ee7b7; outline-offset: 2px; }

/* pay-card: compact */
.pay-card { margin: 0 auto 18px; padding: 14px clamp(14px,2.2vw,18px); }
.pay-head .eyebrow { margin-bottom: 2px; font-size: 0.7rem; }
.pay-head h2 { font-size: 0.98rem; margin-bottom: 2px; }
.pay-head p { margin-bottom: 11px; font-size: 0.82rem; }
.pay-accounts { gap: 10px; }
.pay-acc { padding: 9px 11px; gap: 4px; border-radius: 11px; }
.pay-acc-bank { font-size: 0.66rem; }
.pay-acc-num { padding: 6px 10px; font-size: 0.96rem; border-radius: 8px; }
.pay-copy { font-size: 0.62rem; }
.pay-foot { margin-top: 11px; padding-top: 11px; }
.pay-name { font-size: 0.86rem; }
.pay-wa { min-height: 36px; padding: 0 15px; font-size: 0.88rem; box-shadow: 0 6px 16px rgba(16,185,129,0.25); }

/* ═══════════ pay popup (trigger + modal) ═══════════ */
.pay-trigger-row { max-width: 1120px; margin: 0 auto 18px; }
.pay-trigger { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 18px; color: var(--gold-soft); font-weight: 800; font-size: 0.92rem; background: rgba(214,173,91,0.10); border: 1px solid rgba(214,173,91,0.34); border-radius: 999px; cursor: pointer; transition: background 160ms ease, border-color 160ms ease, transform 160ms ease; }
.pay-trigger:hover { background: rgba(214,173,91,0.16); border-color: rgba(244,213,139,0.55); transform: translateY(-1px); }
.pay-trigger:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 2px; }

.pay-modal { position: fixed; inset: 0; z-index: 80; display: flex; align-items: center; justify-content: center; padding: 20px; }
.pay-modal[hidden] { display: none; }
.pay-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.62); backdrop-filter: blur(6px); }
.pay-modal-card { position: relative; z-index: 1; width: min(440px, 100%); padding: 20px clamp(18px,3vw,22px); background: linear-gradient(135deg, rgba(35,199,217,0.07), rgba(214,173,91,0.10)), rgba(12,12,12,0.98); border: 1px solid rgba(214,173,91,0.32); border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,0.70); animation: payPop 180ms ease; }
@keyframes payPop { from { opacity: 0; transform: translateY(8px) scale(0.98); } to { opacity: 1; transform: none; } }
.pay-modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.pay-modal-head .eyebrow { margin-bottom: 2px; font-size: 0.7rem; }
.pay-modal-head h3 { margin: 0; font-size: 1.1rem; letter-spacing: -0.01em; }
.pay-modal-x { color: var(--muted-strong); font-size: 1.7rem; line-height: 1; background: transparent; border: 0; cursor: pointer; padding: 0 4px; }
.pay-modal-x:hover { color: var(--ink-strong); }
.pay-modal-sub { margin: 4px 0 14px; color: var(--muted); font-size: 0.86rem; line-height: 1.5; }

/* pay/fee triggers side-by-side */
.pay-trigger-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pay-modal .fee-list { margin-top: 2px; }

/* ═══════════ mobile nav open animation ═══════════ */
@keyframes navItemIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
@media (max-width: 760px) {
  .primary-nav { transform: translateY(-12px) scale(0.96); transition: opacity 200ms ease, transform 240ms cubic-bezier(0.2,0.8,0.2,1); }
  .primary-nav.open { transform: translateY(0) scale(1); }
  .primary-nav a { opacity: 0; }
  .primary-nav.open a { animation: navItemIn 360ms cubic-bezier(0.2,0.7,0.2,1) both; }
  .primary-nav.open a:nth-child(1) { animation-delay: 70ms; }
  .primary-nav.open a:nth-child(2) { animation-delay: 120ms; }
  .primary-nav.open a:nth-child(3) { animation-delay: 170ms; }
  .primary-nav.open a:nth-child(4) { animation-delay: 220ms; }
  .nav-toggle { transition: background 160ms ease, border-color 160ms ease, transform 160ms ease; }
  .nav-toggle.open { transform: rotate(0); }
}
@media (prefers-reduced-motion: reduce) {
  .primary-nav, .primary-nav.open a { animation: none !important; transition: none !important; }
  .primary-nav a { opacity: 1; }
}

/* ═══════════ guide login tiket.com popup ═══════════ */
.pay-modal-card { max-height: calc(100vh - 40px); overflow-y: auto; }
.guide-card { width: min(540px, 100%); }
.guide-list { margin: 6px 0 2px; padding-left: 20px; display: grid; gap: 11px; }
.guide-list li { color: var(--muted-strong); line-height: 1.6; font-size: 0.9rem; }
.guide-list li b { color: var(--ink-strong); }
.guide-list li::marker { color: var(--gold-soft); font-weight: 900; }
.guide-link { display: inline-block; margin-top: 6px; padding: 7px 12px; color: #0d0b07; font-weight: 800; font-size: 0.84rem; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); border-radius: 999px; }
.guide-link:hover { filter: brightness(1.06); }

/* ── Order form closed state ─────────────────────────────────────── */
.closed-card {
  position: relative;
  max-width: 560px;
  margin: 12px auto 0;
  padding: 56px 40px 48px;
  text-align: center;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 2.4);
  box-shadow: var(--shadow);
}
.closed-glow {
  position: absolute;
  inset: -40% 30% auto;
  height: 320px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(246, 213, 139, 0.22), transparent 62%);
  animation: closedGlow 6s ease-in-out infinite;
}
.closed-ticket {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 22px;
  color: var(--gold-soft);
  background: rgba(214, 173, 91, 0.10);
  border: 1px solid var(--line);
  border-radius: 24px;
  animation: closedTicket 4.2s ease-in-out infinite;
}
.closed-ticket svg { filter: drop-shadow(0 6px 18px rgba(214, 173, 91, 0.35)); }
.closed-title {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
}
.closed-title span {
  display: block;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.closed-sub {
  max-width: 420px;
  margin: 0 auto 30px;
  color: var(--muted-strong);
  line-height: 1.6;
  font-size: 0.96rem;
}
.closed-carousel {
  position: relative;
  margin: 0 auto 32px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.closed-track {
  position: relative;
  height: 62px;
}
.closed-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: opacity 520ms ease, transform 520ms ease;
}
.closed-slide.is-active {
  opacity: 1;
  transform: none;
}
.closed-slide strong {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--gold-soft), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.closed-slide em {
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.closed-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 16px;
}
.closed-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--line);
  transition: width 320ms ease, background 320ms ease;
}
.closed-dots span.is-active {
  width: 20px;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
}
.closed-cta { margin-top: 4px; }
.closed-cta .cta-arrow { margin-left: 10px; transition: transform 160ms ease; }
.closed-cta:hover .cta-arrow { transform: translateX(3px); }

@keyframes closedGlow {
  0%, 100% { opacity: 0.55; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}
@keyframes closedTicket {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}
@media (prefers-reduced-motion: reduce) {
  .closed-glow, .closed-ticket { animation: none; }
  .closed-slide { transition: none; }
}

/* ===== Waitlist War (form + animated success) ===== */
.wl-shell {
  max-width: 560px;
  margin: 12px auto 0;
}
.wl-card {
  position: relative;
  padding: 44px 36px 32px;
  text-align: center;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 2.4);
  box-shadow: var(--shadow);
  transition: opacity 300ms ease, transform 300ms ease;
}
.wl-card.is-leaving {
  opacity: 0;
  transform: translateY(-10px) scale(0.985);
}
.wl-glow {
  position: absolute;
  inset: -44% 22% auto;
  height: 320px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(246, 213, 139, 0.22), transparent 62%);
  animation: closedGlow 6s ease-in-out infinite;
}
.wl-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
  opacity: 0.5;
}
.wl-orb-a {
  top: 18%; left: -28px;
  width: 70px; height: 70px;
  background: radial-gradient(circle, rgba(120, 224, 215, 0.30), transparent 70%);
  animation: wlOrb 9s ease-in-out infinite;
}
.wl-orb-b {
  bottom: 12%; right: -22px;
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(246, 213, 139, 0.22), transparent 70%);
  animation: wlOrb 11s ease-in-out infinite reverse;
}
.wl-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
  color: var(--gold-soft);
  background: rgba(214, 173, 91, 0.10);
  border: 1px solid var(--line);
  border-radius: 24px;
  animation: closedTicket 4.2s ease-in-out infinite;
}
.wl-badge svg { filter: drop-shadow(0 6px 18px rgba(214, 173, 91, 0.35)); animation: wlBellSwing 3.4s ease-in-out infinite; transform-origin: 50% 18%; }
.wl-badge-ping {
  position: absolute;
  top: 14px; right: 14px;
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--cyan, #78e0d7);
  box-shadow: 0 0 0 0 rgba(120, 224, 215, 0.55);
  animation: wlPing 1.9s ease-out infinite;
}
.wl-eyebrow { justify-content: center; }
.wl-title {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4.2vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
}
.wl-title span {
  display: block;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wl-sub {
  max-width: 420px;
  margin: 0 auto 26px;
  color: var(--muted-strong);
  line-height: 1.6;
  font-size: 0.95rem;
}
.wl-form { text-align: left; }
.wl-form .field { margin-bottom: 14px; }
.wl-form .field-grid { margin-bottom: 4px; }

/* ── custom concert dropdown ── */
.wl-cs-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gold-soft);
}
.wl-cs { position: relative; }
.wl-cs-trigger {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(214, 173, 91, 0.08), rgba(214, 173, 91, 0)) ,
    var(--surface-strong);
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.wl-cs-trigger:hover { border-color: rgba(214, 173, 91, 0.55); }
.wl-cs.is-open .wl-cs-trigger {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 173, 91, 0.18);
}
.wl-cs.is-invalid .wl-cs-trigger {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 91, 91, 0.16);
  animation: wlCsShake .4s ease;
}
.wl-cs-ic {
  font-size: 1.05rem;
  line-height: 1;
  filter: saturate(1.1);
}
.wl-cs-value { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wl-cs-value.is-placeholder { color: var(--muted); }
.wl-cs-caret {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.wl-cs.is-open .wl-cs-caret { transform: rotate(180deg); }

.wl-cs-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  margin: 0;
  padding: 6px;
  list-style: none;
  max-height: 264px;
  overflow-y: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(24, 21, 15, 0.98), rgba(12, 11, 9, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(-6px) scale(0.985);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.wl-cs.is-open .wl-cs-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wl-cs-opt {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--muted-strong);
  transition: background .15s, color .15s;
}
.wl-cs-opt:hover {
  background: linear-gradient(90deg, rgba(214, 173, 91, 0.16), rgba(214, 173, 91, 0.05));
  color: var(--ink-strong);
}
.wl-cs-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 3px rgba(139, 106, 50, 0.18);
  transition: background .15s, box-shadow .15s;
}
.wl-cs-opt:hover .wl-cs-dot,
.wl-cs-opt[aria-selected="true"] .wl-cs-dot {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(214, 173, 91, 0.6);
}
.wl-cs-opt-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.wl-cs-opt-name { font-weight: 600; font-size: 0.96rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wl-cs-opt-date { font-size: 0.76rem; color: var(--muted); }
.wl-cs-check {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity .15s, transform .15s;
}
.wl-cs-opt[aria-selected="true"] { color: var(--ink-strong); }
.wl-cs-opt[aria-selected="true"] .wl-cs-check { opacity: 1; transform: scale(1); }
.wl-cs-opt[aria-selected="true"] {
  background: linear-gradient(90deg, rgba(214, 173, 91, 0.14), rgba(214, 173, 91, 0.03));
}
@keyframes wlCsShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}
.wl-message { min-height: 0; margin: 4px 0 0; }
.wl-message.is-error { color: #ff9b8a; }
.wl-submit {
  width: 100%;
  margin-top: 18px;
  justify-content: center;
}
.wl-submit.is-loading { opacity: 0.75; cursor: progress; }
.wl-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.wl-perks span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 6px 12px;
}

/* success card */
.wl-done.is-in { animation: wlDoneIn 520ms cubic-bezier(0.16, 1, 0.3, 1) both; }
.wl-check {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
  color: var(--cyan, #78e0d7);
}
.wl-check svg { position: relative; z-index: 1; filter: drop-shadow(0 6px 18px rgba(120, 224, 215, 0.35)); }
.wl-check-ring {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: wlDraw 620ms ease-out 120ms forwards;
}
.wl-check-mark {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: wlDraw 360ms ease-out 600ms forwards;
}
.wl-check-burst {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(120, 224, 215, 0.5);
  opacity: 0;
  animation: wlBurst 700ms ease-out 640ms;
}
.wl-wa {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin: 6px auto 14px;
}
.wl-wa-ic {
  position: relative;
  z-index: 1;
  font-size: 1.7rem;
  animation: closedTicket 3.6s ease-in-out infinite;
}
.wl-wa-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(120, 224, 215, 0.45);
  animation: wlWaRing 2.4s ease-out infinite;
}
.wl-wa-ring-2 { animation-delay: 1.2s; }
.wl-wa-note {
  margin: 0 0 24px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes wlOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -14px); }
}
@keyframes wlBellSwing {
  0%, 86%, 100% { transform: rotate(0deg); }
  90% { transform: rotate(11deg); }
  94% { transform: rotate(-8deg); }
  98% { transform: rotate(4deg); }
}
@keyframes wlPing {
  0% { box-shadow: 0 0 0 0 rgba(120, 224, 215, 0.55); }
  70%, 100% { box-shadow: 0 0 0 12px rgba(120, 224, 215, 0); }
}
@keyframes wlDraw { to { stroke-dashoffset: 0; } }
@keyframes wlBurst {
  0% { opacity: 0.9; transform: scale(0.7); }
  100% { opacity: 0; transform: scale(1.5); }
}
@keyframes wlWaRing {
  0% { opacity: 0.8; transform: scale(0.6); }
  100% { opacity: 0; transform: scale(1.5); }
}
@keyframes wlDoneIn {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wl-glow, .wl-orb, .wl-badge, .wl-badge svg, .wl-badge-ping,
  .wl-wa-ic, .wl-wa-ring, .wl-check-burst { animation: none; }
  .wl-check-ring, .wl-check-mark { stroke-dashoffset: 0; animation: none; }
  .wl-done.is-in { animation: none; }
}
