:root {
  --bg: #050505;
  --bg-2: #101010;
  --panel: rgba(255, 255, 255, 0.052);
  --panel-2: rgba(255, 255, 255, 0.078);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f3f3f3;
  --muted: #d7d7d7;
  --accent: #f4f4f4;
  --accent-dark: #111;
  --electric-blue: #ffffff;
  --electric-blue-soft: rgba(255, 255, 255, 0.24);
  --electric-blue-deep: rgba(255, 255, 255, 0.18);
  --radius: 20px;
  --max: 1140px;
  --shadow: 0 30px 110px rgba(0, 0, 0, 0.45);
  --motion-fast: 170ms;
  --motion-mid: 260ms;
  --motion-slow: 420ms;
  --motion-curve-fluid: cubic-bezier(0.22, 1, 0.36, 1);
  --font-condensed: 'SF Pro Condensed', 'SF Pro Display', 'SF Pro Text', 'HelveticaNeue-CondensedBold', 'Arial Narrow', -apple-system,
    BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ambient-drift-x: 0;
  --ambient-drift-y: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at 12% 8%, #1a1a1a 0%, transparent 34%),
    radial-gradient(circle at 88% 86%, #131313 0%, transparent 37%),
    linear-gradient(180deg, #080808, #050505 35%, #0a0a0a);
  color: var(--text);
  font-family: 'SF Pro Display', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  letter-spacing: -0.01em;
  padding: 1.4rem clamp(0.95rem, 2.2vw, 2.4rem) 4rem;
  overflow-x: hidden;
  --ambient-drift-x: 0;
  --ambient-drift-y: 0;
}

body.modal-open {
  overflow: hidden;
}

body.scuff-loader-active {
  overflow: hidden;
}

body.scuff-loader-transition > :not(#scuffPageLoader) {
  filter: blur(12px);
  transition: filter 420ms var(--motion-curve-fluid);
}

body.scuff-loader-transition.scuff-loader-transition-done > :not(#scuffPageLoader) {
  filter: blur(0);
}

.scuff-page-loader {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  background: #000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 320ms var(--motion-curve-fluid), visibility 320ms step-end;
}

.scuff-page-loader::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 4.2vh, 42px);
  transform: translateX(-50%);
  width: clamp(108px, 20vw, 160px);
  height: clamp(22px, 4vw, 32px);
  background: center / contain no-repeat url("assets/brand/scufflogotext.svg");
  opacity: 0.44;
  pointer-events: none;
}

.scuff-page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scuff-page-loader__frame {
  width: 60px;
  aspect-ratio: 1;
  --scuff-loader-color: #fff;
  --g: conic-gradient(from -90deg at 10px 10px, var(--scuff-loader-color) 90deg, #0000 0);
  background:
    var(--g),
    var(--g) 10px 10px,
    var(--g) 20px 20px;
  background-size: 50% 50%;
  animation: scuffLoaderConic 1s infinite;
}

.scuff-page-loader__frame::before,
.scuff-page-loader__frame::after {
  content: none;
}

.scuff-page-loader__frame::before {
  content: none;
}

.scuff-page-loader__frame::after {
  content: none;
}

.scuff-page-loader__ring {
  display: none;
}

.scuff-page-loader__ring--outer {
  display: none;
}

.scuff-page-loader__ring--mid {
  display: none;
}

.scuff-page-loader__ring--inner {
  display: none;
}

.scuff-page-loader__core {
  display: none;
}

@keyframes scuffLoaderConic {
  90%,
  100% {
    background-position: -30px 30px, -20px 40px, -10px 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scuff-page-loader,
  .scuff-page-loader__frame,
  .scuff-page-loader__ring,
  .scuff-page-loader__core {
    animation: none !important;
    transition: none !important;
  }
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: -3;
  transition: transform 760ms var(--motion-curve-fluid), opacity var(--motion-mid) ease;
}

.ambient-a {
  width: 45vw;
  height: 45vw;
  left: -12vw;
  top: -16vw;
  background: rgba(255, 255, 255, 0.04);
  transform: translate3d(calc(var(--ambient-drift-x) * -18px), calc(var(--ambient-drift-y) * -14px), 0);
  animation: ambientFloatA 18s ease-in-out infinite;
}

.ambient-b {
  width: 40vw;
  height: 40vw;
  right: -10vw;
  bottom: -12vw;
  background: rgba(255, 255, 255, 0.035);
  transform: translate3d(calc(var(--ambient-drift-x) * 18px), calc(var(--ambient-drift-y) * 14px), 0);
  animation: ambientFloatB 22s ease-in-out infinite;
}

.grid-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.09;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, #000 54%, transparent 100%);
  transform: translate3d(calc(var(--ambient-drift-x) * 6px), calc(var(--ambient-drift-y) * 6px), 0);
  transition: transform 860ms var(--motion-curve-fluid);
}

.shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0.7rem;
  z-index: 30;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: linear-gradient(148deg, rgba(9, 9, 9, 0.9), rgba(6, 6, 6, 0.86));
  backdrop-filter: blur(14px);
  padding: 0.65rem 0.75rem;
  transition: border-color 180ms ease, background 220ms ease, box-shadow 220ms ease;
}

.topbar.is-scrolled {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(8, 8, 8, 0.9);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
}

.brand-logo {
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: brightness(0) invert(1) contrast(1.03);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand:hover .brand-logo {
  transform: rotate(-9deg) scale(1.05);
}

.brand-wordmark {
  font-family: 'Arial Narrow', 'HelveticaNeue-CondensedBold', 'Bricolage Grotesque', 'SF Pro Display', 'SF Pro Text', -apple-system,
    BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-stretch: condensed;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  font-size: 1.2rem;
  padding-inline: 0.12rem 0.16rem;
}

.brand-scuff-logo {
  height: 14px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.topnav {
  display: inline-flex;
  gap: 0.46rem;
}

.section-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.46rem 0.8rem;
  transition: color var(--motion-fast) ease, border-color var(--motion-fast) ease,
    background var(--motion-mid) ease, transform var(--motion-fast) var(--motion-curve-fluid);
}

.section-nav a:hover {
  color: var(--text);
  border-color: var(--line);
  transform: translateY(-1px);
}

.section-nav a.active {
  color: #111;
  background: #f3f3f3;
  border-color: #f3f3f3;
  font-weight: 620;
}

.topbar-actions {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.search-inline-shell {
  --search-burst-x: 50%;
  --search-burst-y: 50%;
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 0.42rem;
  min-width: 0;
  isolation: isolate;
}

.search-inline-shell::before,
.search-inline-shell::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--motion-mid) ease, transform var(--motion-slow) var(--motion-curve-fluid);
}

.search-inline-shell::before {
  z-index: -2;
  background:
    radial-gradient(circle at var(--search-burst-x) var(--search-burst-y), rgba(255, 255, 255, 0.26), transparent 18%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  transform: scale(0.9);
}

.search-inline-shell::after {
  z-index: -1;
  inset: -14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 70%);
  transform: scale(0.78);
}

.search-inline-shell.is-open::before,
.search-inline-shell.has-value::before {
  opacity: 1;
  transform: scale(1);
}

.search-inline-shell.is-open::after {
  opacity: 0.72;
  transform: scale(1);
}

.search-inline-shell.is-morphing::after {
  animation: searchBurst 520ms var(--motion-curve-fluid);
}

.icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-mid) ease, box-shadow var(--motion-mid) ease, color var(--motion-fast) ease;
}

.icon-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 65%);
  opacity: 0.6;
  transition: opacity var(--motion-mid) ease, transform var(--motion-mid) var(--motion-curve-fluid);
}

.icon-btn::after {
  content: '';
  position: absolute;
  inset: -36%;
  background: linear-gradient(125deg, transparent 18%, rgba(255, 255, 255, 0.54) 50%, transparent 82%);
  opacity: 0;
  transform: translateX(-72%) skewX(-18deg);
}

.icon-btn:hover {
  transform: translateY(-1px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.icon-btn:hover::before {
  opacity: 0.94;
  transform: scale(1.05);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  position: relative;
  z-index: 1;
  transition: transform 300ms var(--motion-curve-fluid);
}

.search-toggle.active {
  background: #f0f0f0;
  color: #0b0b0b;
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28), 0 0 28px rgba(255, 255, 255, 0.2);
}

.search-toggle.active::before {
  opacity: 1;
}

.search-toggle.active::after {
  opacity: 1;
  animation: searchSheen 560ms var(--motion-curve-fluid);
}

.search-toggle.active svg {
  transform: rotate(-9deg) scale(0.92);
}

.search-tray {
  --search-open-width: clamp(190px, 34vw, 330px);
  position: relative;
  width: var(--search-open-width);
  max-width: 0;
  opacity: 0;
  transform: translateX(10px) scaleX(0.78) scaleY(0.82);
  transform-origin: left center;
  pointer-events: none;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: max-width 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1), border-color var(--motion-fast) ease,
    box-shadow var(--motion-mid) ease;
}

.search-tray::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 62%);
  opacity: 0;
  transform: scaleX(0.82);
  transform-origin: left center;
  transition: opacity 220ms ease 30ms, transform 320ms var(--motion-curve-fluid);
  pointer-events: none;
}

.search-tray.open {
  max-width: var(--search-open-width);
  opacity: 1;
  transform: translateX(0) scaleX(1) scaleY(1);
  pointer-events: auto;
  border-color: var(--line);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 28px rgba(255, 255, 255, 0.08);
}

.search-tray.open::before {
  opacity: 1;
  transform: scaleX(1);
}

.search-tray input {
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0.58rem 0.84rem;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 160ms ease 70ms, transform 220ms cubic-bezier(0.22, 1, 0.36, 1) 40ms;
}

.search-tray.open input {
  opacity: 1;
  transform: translateX(0);
}

.search-tray input:focus {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.mobile-app-nav {
  display: none;
}

.mobile-app-nav a.mobile-nav-item {
  text-decoration: none;
  display: grid;
  justify-items: center;
  gap: 0.18rem;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.28rem 0.18rem;
  transition: background var(--motion-fast) ease, border-color var(--motion-fast) ease, color var(--motion-fast) ease;
}

.mobile-nav-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-app-nav a.mobile-nav-item:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.mobile-app-nav a.mobile-nav-item.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-nav-item.active .mobile-nav-icon {
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
}

@keyframes scuffImageLoadingPulse {
  0% {
    filter: grayscale(1) saturate(0) brightness(0.4);
    opacity: 0.66;
  }

  50% {
    filter: grayscale(1) saturate(0) brightness(0.63);
    opacity: 0.96;
  }

  100% {
    filter: grayscale(1) saturate(0) brightness(0.4);
    opacity: 0.66;
  }
}

img.scuff-image-loading {
  animation: scuffImageLoadingPulse 1.18s ease-in-out infinite;
  transition: filter var(--motion-mid) var(--motion-curve-fluid), opacity var(--motion-mid) var(--motion-curve-fluid);
}

@keyframes scuffImageFailedPulse {
  0% {
    filter: grayscale(1) saturate(0) brightness(0.34);
    opacity: 0.62;
  }

  50% {
    filter: grayscale(1) saturate(0) brightness(0.62);
    opacity: 0.96;
  }

  100% {
    filter: grayscale(1) saturate(0) brightness(0.34);
    opacity: 0.62;
  }
}

img.scuff-image-failed {
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.98), rgba(88, 88, 88, 0.72), rgba(10, 10, 10, 0.98));
  animation: scuffImageFailedPulse 1.22s ease-in-out infinite;
  transition: filter var(--motion-mid) var(--motion-curve-fluid), opacity var(--motion-mid) var(--motion-curve-fluid);
}

.scuff-media-failed img.scuff-image-failed {
  opacity: 0;
  animation: none;
  filter: none;
  background: transparent;
}

.section {
  margin-top: clamp(2.2rem, 4.5vw, 4.4rem);
}

.section:not(.cronoview-section):not(.magic) {
  --section-accent: rgba(255, 255, 255, 0.34);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.085), transparent 44%),
    linear-gradient(160deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.93));
  padding: clamp(0.9rem, 1.9vw, 1.4rem);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.36);
}

.section:not(.cronoview-section):not(.magic)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 42%);
  pointer-events: none;
}

.section:not(.cronoview-section):not(.magic)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--section-accent) 88%, #fff 12%), transparent 94%);
  opacity: 0.92;
  pointer-events: none;
}

.fomo-gate-section {
  --section-accent: rgba(255, 175, 131, 0.92);
}

.lock-window-section {
  --section-accent: rgba(255, 222, 148, 0.9);
}

.commitment-clock-section {
  --section-accent: rgba(255, 143, 143, 0.9);
}

.pulse-atlas-section {
  --section-accent: rgba(192, 219, 255, 0.92);
}

.deal-radar-section {
  --section-accent: rgba(164, 234, 196, 0.9);
}

.rebound-radar-section {
  --section-accent: rgba(173, 232, 215, 0.9);
}

.scarcity-runway-section {
  --section-accent: rgba(255, 214, 171, 0.9);
}

.signal-compare-section {
  --section-accent: rgba(156, 217, 255, 0.88);
}

.price-shield-lane-section {
  --section-accent: rgba(201, 230, 255, 0.9);
}

.surge-cooldown-section {
  --section-accent: rgba(176, 235, 214, 0.88);
}

.sellout-clock-section {
  --section-accent: rgba(255, 191, 159, 0.9);
}

.saved-pulse-section {
  --section-accent: rgba(154, 204, 255, 0.9);
}

.hero-canvas {
  margin-top: clamp(1.9rem, 4.7vw, 4.8rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.35rem;
  align-items: start;
}

.hero-copy {
  --pointer-x: 50%;
  --pointer-y: 20%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(1rem, 3vw, 2.2rem);
  background: linear-gradient(155deg, rgba(23, 23, 23, 0.96), rgba(10, 10, 10, 0.94));
  box-shadow: var(--shadow);
  height: fit-content;
}

.hero-copy::after {
  content: '';
  position: absolute;
  inset: -22%;
  pointer-events: none;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.hero-copy.hero-interactive-ready::after {
  opacity: 1;
}

.eyebrow {
  margin: 0;
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: 0.69rem;
  color: #d4d4d4;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 0.7rem;
  font-size: clamp(2.25rem, 7.8vw, 6.4rem);
  line-height: 0.9;
  font-weight: 670;
}

.hero-title {
  text-transform: none;
  font-size: clamp(1.9rem, 6.2vw, 4.6rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.city-switch {
  display: inline;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 0;
  padding: 0;
  margin: 0;
  color: inherit;
  background: transparent;
  text-transform: none;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  position: relative;
  transition: color var(--motion-fast) ease, text-shadow var(--motion-mid) ease, border-color var(--motion-fast) ease;
}

.city-switch::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.08));
  transform: scaleX(0.16);
  transform-origin: left center;
  opacity: 0.32;
  transition: transform 280ms var(--motion-curve-fluid), opacity 220ms ease;
}

.scope-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 0;
  padding: 0;
  margin: 0;
  color: inherit;
  background: transparent;
  text-transform: none;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  cursor: pointer;
  position: relative;
  transition: color var(--motion-fast) ease, text-shadow var(--motion-mid) ease, border-color var(--motion-fast) ease;
}

.scope-switch::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.08));
  transform: scaleX(0.16);
  transform-origin: left center;
  opacity: 0.32;
  transition: transform 280ms var(--motion-curve-fluid), opacity 220ms ease;
}

.city-switch:hover,
.city-switch[aria-expanded='true'],
.scope-switch:hover,
.scope-switch[aria-expanded='true'] {
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.2);
}

.city-switch:hover::after,
.city-switch[aria-expanded='true']::after,
.scope-switch:hover::after,
.scope-switch[aria-expanded='true']::after {
  transform: scaleX(1);
  opacity: 1;
}

.scope-switch-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.52em;
  transform: translateY(-0.03em);
  transition: transform 180ms ease;
}

.scope-switch[aria-expanded='true'] .scope-switch-caret {
  transform: translateY(-0.03em) rotate(180deg);
}

.scope-switch-menu {
  margin-top: 0.65rem;
  width: min(550px, 100%);
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(5, 5, 5, 0.98);
  padding: 0.82rem;
  display: grid;
  gap: 0.5rem;
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.62);
}

.scope-switch-menu:not(.hidden),
.city-switch-menu:not(.hidden) {
  animation: menuBloomIn 280ms var(--motion-curve-fluid);
  transform-origin: top left;
}

.scope-menu-item {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.44rem 0.5rem;
  text-align: left;
  color: #f2f2f2;
  background: transparent;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  text-transform: lowercase;
  cursor: pointer;
}

.scope-menu-item img {
  width: 58px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
}

.scope-menu-label {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.95rem;
  font-weight: 560;
  letter-spacing: -0.015em;
}

.scope-menu-arrow {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  transform: translateX(-4px);
  transition: transform 180ms ease;
}

.scope-menu-note {
  color: var(--muted);
  font-size: 0.75rem;
}

.scope-menu-item.active {
  color: #ff4f4f;
}

.scope-menu-item.active .scope-menu-arrow,
.scope-menu-item:hover .scope-menu-arrow {
  transform: translateX(0);
}

.scope-menu-item,
.city-menu-item {
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-mid) ease, box-shadow var(--motion-mid) ease;
}

.scope-menu-item:hover,
.city-menu-item:hover:not(:disabled) {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.scope-menu-item:disabled {
  opacity: 0.54;
  cursor: not-allowed;
}

.city-switch-menu {
  margin-top: 0.65rem;
  width: min(380px, 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(9, 9, 9, 0.96);
  padding: 0.42rem;
  display: grid;
  gap: 0.32rem;
}

.city-menu-item {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.52rem 0.6rem;
  text-align: left;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  text-transform: lowercase;
  cursor: pointer;
}

.city-menu-item span {
  margin-left: 0.42rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.city-menu-item.active {
  background: #efefef;
  color: #0a0a0a;
}

.city-menu-item:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

h2 {
  font-size: clamp(1.38rem, 2.7vw, 2.3rem);
  font-weight: 630;
}

h3 {
  font-size: clamp(1.04rem, 1.8vw, 1.4rem);
  font-weight: 620;
}

.lede {
  margin-top: 1.15rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.62;
}

.hero-controls {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0.7rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: #9d9d9d;
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0.02em;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 15, 15, 0.88);
  color: var(--text);
  padding: 0.7rem 0.75rem;
  transition: border-color var(--motion-mid) var(--motion-curve-fluid), box-shadow var(--motion-mid) var(--motion-curve-fluid),
    background var(--motion-mid) ease, transform var(--motion-fast) var(--motion-curve-fluid);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--line-strong);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

input.is-typing,
textarea.is-typing,
select.is-typing {
  animation: inputPulse 360ms var(--motion-curve-fluid) 1;
  border-color: rgba(255, 255, 255, calc(0.28 + var(--typing-strength, 0.24) * 0.22));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, calc(0.16 + var(--typing-strength, 0.24) * 0.18)),
    0 0 22px rgba(255, 255, 255, calc(0.08 + var(--typing-strength, 0.24) * 0.14));
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.filter-row {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.filter-reset-btn {
  padding-inline: 0.8rem;
}

.city-pill,
.mood-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  padding: 0.38rem 0.7rem;
  cursor: pointer;
}

.city-pill.active,
.city-pill:hover {
  color: #060606;
  background: #ececec;
  border-color: transparent;
}

.hero-spotlight {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 0.75rem;
  background: rgba(10, 10, 10, 0.83);
  display: grid;
  align-content: start;
  min-height: clamp(168px, 20vw, 246px);
}

.hero-spotlight.hero-spotlight-empty {
  align-content: stretch;
}

.hero-spotlight > .muted {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 1.05rem 0.96rem;
  min-height: clamp(126px, 16vw, 174px);
  font-size: 0.98rem;
  text-align: center;
  line-height: 1.45;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(138deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-spotlight.hero-spotlight-empty > .muted {
  min-height: 100%;
}

.hero-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #070707;
  isolation: isolate;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, box-shadow 320ms ease;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 8px;
  border-radius: inherit;
  background:
    linear-gradient(
      122deg,
      rgba(255, 255, 255, 0.28),
      rgba(255, 255, 255, 0.08) 34%,
      rgba(255, 199, 199, 0.16) 54%,
      rgba(170, 214, 255, 0.14) 72%,
      rgba(255, 255, 255, 0.2)
    );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  mix-blend-mode: screen;
  opacity: 0.42;
  z-index: 2;
  pointer-events: none;
}

.hero-card img {
  display: block;
  width: 100%;
  height: clamp(320px, 38vw, 430px);
  object-fit: contain;
  object-position: center top;
  background: #050505;
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.01);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 120%, rgba(0, 0, 0, 0.78), transparent 54%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.34) 82%, rgba(0, 0, 0, 0.62) 100%);
  pointer-events: none;
  transition: opacity 300ms ease, background 300ms ease;
}

.hero-card-body {
  position: relative;
  z-index: 4;
  margin-top: -136px;
  padding: 1.1rem 0.92rem 0.82rem;
  display: grid;
  gap: 0.34rem;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.04) 0%, rgba(8, 8, 8, 0.32) 34%, rgba(8, 8, 8, 0.58) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-card-body::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(24px) saturate(165%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
}

.hero-card-body::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.14), transparent 62%);
  pointer-events: none;
  transition: background 320ms ease;
}

.hero-card-body h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.62rem);
  letter-spacing: -0.02em;
}

.hero-card-body .muted {
  color: rgba(241, 241, 241, 0.86);
  font-size: 0.92rem;
  line-height: 1.38;
}

.hero-card-foot .price-chip {
  background: rgba(0, 0, 0, 0.46);
  border-color: rgba(255, 255, 255, 0.32);
  color: #efefef;
}

.hero-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.subdomain-pill {
  font-size: 0.74rem;
  color: #0c0c0c;
  background: #d8d8d8;
  border-radius: 999px;
  padding: 0.22rem 0.56rem;
}

.cronoview-section {
  margin-top: clamp(1.4rem, 4vw, 3rem);
}

.cronoview-shell {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(165deg, rgba(10, 10, 10, 0.96), rgba(4, 4, 4, 0.95));
  padding: clamp(0.9rem, 2.2vw, 1.7rem);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.54);
}

.cronoview-headline {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 720;
  letter-spacing: -0.038em;
}

.cronoview-upcoming-headline {
  margin-top: clamp(1.7rem, 4vw, 2.8rem);
}

.cronoview-list {
  margin-top: 0.76rem;
}

.cronoview-day-group + .cronoview-day-group {
  margin-top: 1.32rem;
}

.cronoview-day-title {
  font-size: clamp(1.25rem, 2.6vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0 0 0.36rem;
}

.cronoview-day-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.cronoview-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.72rem;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.02rem 0;
}

.cronoview-item:first-child {
  border-top: 0;
}

.cronoview-day-list .cronoview-item:first-child {
  border-top: 0;
}

.cronoview-hit {
  min-width: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.cronoview-cover {
  width: 92px;
  height: 92px;
  border-radius: 4px;
  object-fit: cover;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cronoview-main {
  min-width: 0;
  display: grid;
  gap: 0.18rem;
}

.cronoview-title-line {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.58rem;
  min-width: 0;
}

.cronoview-title-text {
  font-size: clamp(1rem, 1.85vw, 1.36rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cronoview-live-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff281f;
  border-radius: 2px;
  min-height: 20px;
  padding: 0.08rem 0.4rem;
  font-size: 0.93rem;
  font-weight: 700;
  color: #ff3c2f;
  background: #130000;
  animation: cronoviewLiveBlink 420ms linear infinite;
}

@keyframes cronoviewLiveBlink {
  0% {
    color: #ff4f43;
    border-color: #ff4034;
    background: #130000;
    box-shadow: 0 0 0 rgba(255, 40, 31, 0);
  }

  50% {
    color: #420000;
    border-color: #2e0000;
    background: #ff2f24;
    box-shadow: 0 0 8px rgba(255, 38, 29, 0.35);
  }

  100% {
    color: #ff4f43;
    border-color: #ff4034;
    background: #130000;
    box-shadow: 0 0 0 rgba(255, 40, 31, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cronoview-live-pill {
    animation: none;
  }
}

.cronoview-venue-line,
.cronoview-subline {
  margin: 0;
  font-size: clamp(0.9rem, 1.35vw, 1.1rem);
  letter-spacing: -0.015em;
}

.cronoview-venue-line {
  display: flex;
  align-items: center;
  gap: 0.34rem;
  font-weight: 550;
}

.cronoview-subline {
  color: rgba(255, 255, 255, 0.84);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cronoview-pin {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cronoview-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.24rem;
}

.cronoview-favorite-btn,
.cronoview-video-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
}

.cronoview-video-btn {
  text-decoration: none;
}

.cronoview-favorite-btn {
  cursor: pointer;
}

.cronoview-favorite-btn svg,
.cronoview-video-btn svg {
  width: 25px;
  height: 25px;
}

.cronoview-favorite-btn svg {
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
}

.cronoview-favorite-btn.is-saved {
  color: #ff3f33;
}

.cronoview-favorite-btn.is-saved svg {
  stroke: none;
  fill: currentColor;
}

.cronoview-favorite-btn:disabled {
  cursor: wait;
  opacity: 0.6;
}

.cronoview-video-btn svg {
  fill: currentColor;
}

.cronoview-hit:focus-visible,
.cronoview-favorite-btn:focus-visible,
.cronoview-video-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 2px;
}

.cronoview-empty {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  padding: 0.94rem 1rem;
  min-height: 64px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.93rem;
  font-weight: 520;
  line-height: 1.45;
  letter-spacing: 0.008em;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.17), transparent 48%),
    linear-gradient(136deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(4px);
}

.cronoview-empty::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(102deg, rgba(255, 255, 255, 0.085) 0%, rgba(255, 255, 255, 0) 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  opacity: 0.65;
}

.hero-title,
.cronoview-headline,
.section-head h2,
.fomo-gate-title,
.pulse-atlas-title {
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: -0.015em;
}

.fomo-gate-section {
  margin-top: 0.4rem;
}

.fomo-gate-shell {
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 255, 255, 0.095), transparent 38%),
    linear-gradient(155deg, rgba(12, 12, 12, 0.96), rgba(6, 6, 6, 0.95));
  padding: 1.05rem;
}

.fomo-gate-title {
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.fomo-gate-lede {
  margin: -0.5rem 0 0.8rem;
  max-width: 64ch;
}

.fomo-gate-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.72rem;
}

.fomo-gate-item {
  --card-tint-a: rgba(255, 122, 154, 0.28);
  --card-tint-b: rgba(112, 198, 255, 0.19);
  --card-tint-c: rgba(255, 214, 124, 0.15);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.5rem;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015) 45%, rgba(255, 255, 255, 0.03));
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 0.55rem;
  transition: transform 240ms var(--motion-curve-fluid), border-color 190ms ease, box-shadow 280ms ease;
  isolation: isolate;
}

.fomo-gate-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 150% at 0% 0%, var(--card-tint-a), transparent 64%),
    radial-gradient(120% 160% at 100% 100%, var(--card-tint-b), transparent 68%),
    linear-gradient(130deg, transparent 0%, var(--card-tint-c) 100%);
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
}

.fomo-gate-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}

.fomo-gate-cover {
  width: 100%;
  height: 100%;
  min-height: 108px;
  border-radius: 10px;
  object-fit: contain;
  background: #050505;
  position: relative;
  z-index: 2;
}

.fomo-gate-main {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.fomo-gate-main h3 {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.fomo-gate-main p {
  margin: 0.28rem 0 0.45rem;
  font-size: 0.82rem;
}

.fomo-gate-foot {
  display: flex;
  gap: 0.36rem;
  align-items: center;
  flex-wrap: wrap;
}

.fomo-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 8, 0.68);
  border-radius: 999px;
  padding: 0.26rem 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.fomo-countdown {
  border-color: rgba(255, 255, 255, 0.28);
}

.fomo-countdown.is-live {
  background: rgba(255, 80, 80, 0.18);
  border-color: rgba(255, 120, 120, 0.42);
  color: #ffd6d6;
}

.lock-window-section {
  margin-top: 0.5rem;
}

.lock-window-shell {
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 170, 136, 0.12), transparent 38%),
    radial-gradient(circle at 12% 78%, rgba(255, 255, 255, 0.08), transparent 44%),
    linear-gradient(154deg, rgba(12, 12, 12, 0.97), rgba(6, 6, 6, 0.96));
  padding: 1.05rem;
}

.lock-window-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lock-window-lede {
  margin: -0.5rem 0 0.8rem;
  max-width: 64ch;
}

.lock-window-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.7rem;
}

.lock-window-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.58rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.lock-window-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.lock-window-main strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
}

.lock-window-main p {
  margin: 0.2rem 0 0.34rem;
}

.lock-window-bar {
  width: clamp(132px, 22vw, 200px);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.lock-window-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 230, 181, 0.92), rgba(255, 255, 255, 0.96));
  transition: width 240ms var(--motion-curve-fluid);
}

.lock-window-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.lock-window-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.lock-window-pill.is-lock {
  border-color: rgba(255, 193, 130, 0.58);
  background: rgba(255, 193, 130, 0.2);
  color: #fff2e1;
}

.lock-window-pill.is-stage {
  border-color: rgba(255, 223, 168, 0.56);
  background: rgba(255, 223, 168, 0.17);
  color: #fff6e5;
}

.lock-window-pill.is-watch {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
  color: #f4f4f4;
}

.commitment-clock-section {
  margin-top: 0.3rem;
}

.commitment-clock-shell {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 120, 126, 0.22), transparent 48%),
    radial-gradient(circle at 86% 76%, rgba(255, 205, 126, 0.16), transparent 52%),
    linear-gradient(154deg, rgba(12, 12, 12, 0.97), rgba(6, 6, 6, 0.97));
  padding: 1.05rem;
}

.commitment-clock-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.commitment-clock-lede {
  margin: -0.5rem 0 0.8rem;
  max-width: 66ch;
}

.commitment-clock-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.7rem;
}

.commitment-clock-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.58rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.commitment-clock-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.commitment-clock-main strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
}

.commitment-clock-main p {
  margin: 0.2rem 0 0.34rem;
}

.commitment-clock-bar {
  width: clamp(132px, 22vw, 200px);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.commitment-clock-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 170, 152, 0.94), rgba(255, 232, 198, 0.96));
  transition: width 240ms var(--motion-curve-fluid);
}

.commitment-clock-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.commitment-clock-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.commitment-clock-pill.is-now {
  border-color: rgba(255, 174, 142, 0.6);
  background: rgba(255, 174, 142, 0.2);
  color: #fff0e5;
}

.commitment-clock-pill.is-soon {
  border-color: rgba(255, 220, 173, 0.56);
  background: rgba(255, 220, 173, 0.16);
  color: #fff7ea;
}

.commitment-clock-pill.is-watch {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
  color: #f4f4f4;
}

.pulse-atlas-section {
  margin-top: 0.3rem;
}

.pulse-atlas-shell {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.14), transparent 48%),
    radial-gradient(circle at 86% 78%, rgba(255, 186, 128, 0.18), transparent 52%),
    linear-gradient(154deg, rgba(12, 12, 12, 0.97), rgba(6, 6, 6, 0.97));
  padding: 1.05rem;
}

.pulse-atlas-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pulse-atlas-lede {
  margin: -0.5rem 0 0.8rem;
  max-width: 68ch;
}

.pulse-atlas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.7rem;
}

.pulse-atlas-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.58rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.pulse-atlas-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.pulse-atlas-main strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
}

.pulse-atlas-main p {
  margin: 0.2rem 0 0.34rem;
}

.pulse-atlas-bar {
  width: clamp(132px, 22vw, 200px);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.pulse-atlas-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 198, 147, 0.94), rgba(255, 241, 210, 0.96));
  transition: width 240ms var(--motion-curve-fluid);
}

.pulse-atlas-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.pulse-atlas-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.pulse-atlas-pill.is-critical {
  border-color: rgba(255, 165, 129, 0.62);
  background: rgba(255, 165, 129, 0.22);
  color: #fff0e5;
}

.pulse-atlas-pill.is-rising {
  border-color: rgba(255, 218, 166, 0.56);
  background: rgba(255, 218, 166, 0.17);
  color: #fff7ea;
}

.pulse-atlas-pill.is-stable {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
  color: #f4f4f4;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.92rem;
}

.section-head h2 {
  font-size: clamp(1.04rem, 2.1vw, 1.34rem);
  font-weight: 670;
  letter-spacing: -0.018em;
  color: #f0f0f0;
}

.section-head > .muted {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.32rem 0.66rem;
  background: rgba(10, 10, 10, 0.72);
  color: #e4e4e4;
  font-size: 0.79rem;
  letter-spacing: 0.012em;
  line-height: 1.15;
}

.section-head > .muted:empty {
  display: none;
}

.fomo-gate-lede,
.lock-window-lede,
.commitment-clock-lede,
.pulse-atlas-lede,
.deal-radar-panel > .muted {
  color: #dfdfdf;
  line-height: 1.5;
  font-size: 0.95rem;
  max-width: 66ch;
}

body.page-discover.mode-clubs .topbar {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(4, 4, 4, 0.9);
}

body.page-discover.mode-clubs .hero-copy {
  border-color: rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.1), transparent 44%),
    linear-gradient(155deg, rgba(16, 16, 16, 0.95), rgba(6, 6, 6, 0.96));
}

body.page-discover.mode-clubs #categoryControl {
  display: none;
}

body.page-discover.mode-clubs .split {
  grid-template-columns: 1fr;
}

body.page-discover.mode-clubs .side-column {
  display: none;
}

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

.ok {
  color: #a3ffd2;
}

.error {
  color: #ff9ea3;
}

.tiny {
  font-size: 0.82rem;
}

.spotlight-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.quick-brief-section {
  margin-top: 0.35rem;
}

.quick-brief-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 15% 14%, rgba(255, 255, 255, 0.13), transparent 44%),
    radial-gradient(circle at 84% 82%, rgba(255, 201, 148, 0.18), transparent 52%),
    linear-gradient(152deg, rgba(13, 13, 13, 0.96), rgba(7, 7, 7, 0.97));
  padding: 1.05rem;
}

.quick-brief-panel::before {
  content: '';
  position: absolute;
  inset: -38% -24% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 74%);
  pointer-events: none;
}

.quick-brief-head {
  margin-bottom: 0.54rem;
}

.quick-brief-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.015em;
  font-weight: 760;
}

.quick-brief-lede {
  margin: 0;
}

.quick-brief-kpis {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.56rem;
}

.quick-brief-kpi {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.5rem 0.6rem;
  display: grid;
  gap: 0.2rem;
}

.quick-brief-kpi span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.quick-brief-kpi strong {
  font-family: var(--font-condensed);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.quick-brief-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
}

.quick-brief-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.quick-brief-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.quick-brief-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.quick-brief-main p {
  margin: 0.18rem 0 0;
}

.quick-brief-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.quick-brief-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.quick-brief-pill.is-move {
  border-color: rgba(255, 174, 133, 0.58);
  background: rgba(255, 174, 133, 0.2);
  color: #fff1e7;
}

.quick-brief-pill.is-value {
  border-color: rgba(152, 255, 191, 0.56);
  background: rgba(152, 255, 191, 0.18);
  color: #eafff1;
}

.quick-brief-pill.is-crew {
  border-color: rgba(186, 213, 255, 0.56);
  background: rgba(186, 213, 255, 0.17);
  color: #eef5ff;
}

.quick-brief-pill.is-watch {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
  color: #f4f4f4;
}

.spotlight-item {
  --card-tint-a: rgba(255, 122, 154, 0.3);
  --card-tint-b: rgba(103, 190, 255, 0.2);
  --card-tint-c: rgba(255, 214, 124, 0.16);
  --card-glow: 0.32;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.015) 42%,
    rgba(255, 255, 255, 0.02)
  );
  padding: 0.55rem;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, box-shadow 320ms ease;
}

.spotlight-item img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 120px;
  border-radius: 12px;
  object-fit: contain;
  background: #050505;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms ease;
}

.spotlight-item > div {
  position: relative;
  z-index: 2;
}

.spotlight-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 14% 12%, var(--card-tint-a), transparent 48%),
    radial-gradient(circle at 84% 82%, var(--card-tint-b), transparent 52%),
    linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.44) 100%);
  opacity: 0.96;
  pointer-events: none;
  transition: opacity 240ms ease, filter 280ms ease, background 320ms ease;
}

.spotlight-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 36%);
  mix-blend-mode: screen;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), transparent 42%);
  pointer-events: none;
  opacity: 0.5;
  will-change: opacity;
  transition: opacity 240ms ease;
}

.spotlight-item h3 {
  font-size: 0.97rem;
  line-height: 1.16;
  margin: 0.15rem 0;
}

.spotlight-buyby-row {
  margin: 0.2rem 0 0.18rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.46rem;
}

.inline-sort-control {
  width: min(220px, 100%);
}

.inline-sort-control select {
  margin-top: 0.32rem;
}

.venue-search-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(10, 10, 11, 0.9);
  padding: 0.72rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.venue-search-panel::after {
  content: '';
  position: absolute;
  inset: -40% 24% auto -20%;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
  pointer-events: none;
}

.venue-search-label {
  display: grid;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.84rem;
}

.venue-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 4%, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(150deg, rgba(16, 16, 18, 0.98), rgba(7, 7, 8, 0.98));
  display: grid;
  gap: 0.78rem;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.venue-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.46), transparent 86%);
  pointer-events: none;
  z-index: 2;
}

.venue-card-cover {
  position: relative;
  min-height: 136px;
  background-color: #070707;
  background-size: cover;
  background-position: center;
}

.venue-card-top {
  position: absolute;
  top: 0.72rem;
  left: 0.72rem;
  right: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.48rem;
  z-index: 1;
}

.venue-card-cover-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.22), transparent 40%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.2), rgba(6, 6, 6, 0.86));
}

.venue-count-pill {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.2rem 0.56rem;
  font-size: 0.7rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #ededed;
  background: rgba(10, 10, 10, 0.66);
}

.venue-range-pill {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  font-size: 0.74rem;
  font-weight: 560;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(9, 9, 11, 0.74);
}

.venue-card-focus {
  position: absolute;
  left: 0.78rem;
  right: 0.78rem;
  bottom: 0.68rem;
  display: grid;
  gap: 0.06rem;
  z-index: 1;
}

.venue-focus-label {
  margin: 0;
  font-size: 0.61rem;
  text-transform: none;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.64);
}

.venue-focus-date {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.venue-card-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  padding: 0 0.82rem;
}

.venue-logo-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 8, 8, 0.9);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.venue-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-logo-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 660;
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
}

.venue-meta {
  min-width: 0;
  display: grid;
  gap: 0.2rem;
}

.venue-meta h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.venue-meta p {
  margin: 0;
  line-height: 1.25;
}

.venue-events-list {
  display: grid;
  gap: 0.42rem;
  padding: 0 0.82rem 0.82rem;
}

.venue-event-chip {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 0.48rem 0.58rem;
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.52rem;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.venue-event-chip:hover,
.venue-event-chip:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.venue-event-order {
  min-width: 2.2ch;
  font-family: 'JetBrains Mono', 'SFMono-Regular', ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.54);
}

.venue-event-meta {
  min-width: 0;
}

.venue-event-chip strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 620;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.venue-event-chip p {
  margin: 0.16rem 0 0;
}

.venue-event-side {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.venue-arrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(240px, auto);
  grid-auto-flow: dense;
  gap: 1.05rem;
}

.club-list {
  display: grid;
  gap: 0.65rem;
}

.club-row {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 255, 255, 0.1), transparent 42%),
    linear-gradient(150deg, rgba(15, 15, 15, 0.96), rgba(7, 7, 7, 0.96));
  padding: 0.68rem;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  color: inherit;
}

.club-row-cover {
  width: 104px;
  height: 76px;
  border-radius: 12px;
  object-fit: cover;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.club-row-main {
  display: grid;
  gap: 0.2rem;
}

.club-row-main h3 {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.club-row-tags {
  display: inline-flex;
  gap: 0.36rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.club-tag {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0.18rem 0.46rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #efefef;
}

.club-row-meta {
  display: grid;
  justify-items: end;
  gap: 0.22rem;
}

.club-row-meta .muted {
  font-size: 0.74rem;
}

.event-card {
  --card-tint-a: rgba(255, 122, 154, 0.3);
  --card-tint-b: rgba(103, 190, 255, 0.2);
  --card-tint-c: rgba(255, 214, 124, 0.16);
  --card-glow: 0.32;
  position: relative;
  display: grid;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(18, 18, 18, 0.98), rgba(7, 7, 7, 0.96));
  isolation: isolate;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, box-shadow 320ms ease;
}

.event-card:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
}

.event-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
  background: #0a0a0a;
  transform: scale(1.01);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 360ms ease;
}

.event-card.wide {
  grid-column: span 2;
}

.event-card.wide img {
  height: 220px;
  object-fit: cover;
  object-position: center;
  background: #0a0a0a;
}

.event-card.tall {
  grid-row: span 2;
}

.event-card.tall img {
  height: 300px;
  object-fit: cover;
  object-position: center;
  background: #0a0a0a;
}

.event-card .body {
  position: relative;
  z-index: 3;
  padding: 1.02rem;
  display: grid;
  gap: 0.58rem;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.06) 0%, rgba(8, 8, 8, 0.42) 40%, rgba(8, 8, 8, 0.68) 100%);
}

.event-card .body h3 {
  line-height: 1.15;
}

.event-card .body::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
  transition: backdrop-filter 240ms ease, -webkit-backdrop-filter 240ms ease;
}

.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 10%, var(--card-tint-a), transparent 45%),
    radial-gradient(circle at 88% 84%, var(--card-tint-b), transparent 52%),
    radial-gradient(circle at 50% 100%, var(--card-tint-c), transparent 54%);
  pointer-events: none;
  transition: background 320ms ease, opacity 240ms ease;
}

.event-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 36%);
  mix-blend-mode: screen;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.76), transparent 40%);
  pointer-events: none;
  opacity: 0.48;
  will-change: opacity;
  transition: opacity 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero-card:hover {
    transform: translateY(-3px) scale(1.003);
    border-color: rgba(255, 255, 255, 0.46);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.22), 0 0 24px var(--electric-blue-soft);
  }

  .hero-card:hover img {
    transform: scale(1.03);
    filter: saturate(1.2) contrast(1.1) brightness(1.03);
  }

  .hero-card:hover::after {
    background:
      radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.22), transparent 34%),
      radial-gradient(circle at 74% 78%, rgba(255, 255, 255, 0.14), transparent 36%),
      radial-gradient(circle at 50% 120%, rgba(0, 0, 0, 0.74), transparent 54%),
      linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.34) 82%, rgba(0, 0, 0, 0.62) 100%);
  }

  .hero-card:hover .hero-card-body::after {
    background:
      radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.22), transparent 44%),
      radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.12), transparent 46%),
      radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.08), transparent 62%);
    animation: blueHoverBreath 2.8s ease-in-out infinite;
  }

  .spotlight-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 20px var(--electric-blue-deep);
  }

  .spotlight-item:hover img {
    transform: scale(1.03);
    filter: saturate(1.18) contrast(1.08) brightness(1.04);
  }

  .spotlight-item:hover::before {
    background:
      radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.22), transparent 36%),
      radial-gradient(circle at 84% 82%, rgba(255, 255, 255, 0.16), transparent 40%),
      linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.44) 100%);
    filter: saturate(1.1);
  }

  .spotlight-item:hover::after {
    opacity: 0.62;
  }

  .event-card:hover {
    transform: translateY(-4px) scale(1.006);
    border-color: rgba(255, 255, 255, 0.44);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 24px var(--electric-blue-soft),
      0 0 46px rgba(255, 255, 255, 0.12);
  }

  .event-card:hover img {
    transform: scale(1.04);
    filter: saturate(1.2) contrast(1.1) brightness(1.02);
  }

  .event-card:hover::before {
    background:
      radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.24), transparent 36%),
      radial-gradient(circle at 86% 84%, rgba(255, 255, 255, 0.15), transparent 40%),
      radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.1), transparent 44%);
    animation: blueHoverBreath 2.5s ease-in-out infinite;
  }

  .event-card:hover::after {
    opacity: 0.62;
  }

  .event-card:hover .body::before {
    backdrop-filter: blur(26px) saturate(172%);
    -webkit-backdrop-filter: blur(26px) saturate(172%);
  }

  .ticket-card:hover {
    border-color: rgba(255, 255, 255, 0.36);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04) 58%, rgba(255, 255, 255, 0.08));
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 0 18px rgba(255, 255, 255, 0.16);
  }
}

.event-row {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.91rem;
}

.event-fomo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.event-fomo-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.16rem 0.55rem;
  font-size: 0.69rem;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  white-space: nowrap;
}

.event-fomo-pill.is-now {
  color: #ffe3d1;
  border-color: rgba(255, 142, 106, 0.44);
  background: rgba(255, 118, 74, 0.22);
}

.event-fomo-pill.is-soon {
  color: #f6ecff;
  border-color: rgba(185, 129, 255, 0.38);
  background: rgba(126, 96, 244, 0.22);
}

.event-fomo-pill.is-open {
  color: #dcf3ff;
  border-color: rgba(118, 197, 255, 0.38);
  background: rgba(66, 144, 229, 0.2);
}

.event-fomo-note {
  text-align: right;
}

.event-buyby-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.event-buyby-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.14rem 0.52rem;
  font-size: 0.65rem;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  white-space: nowrap;
}

.event-buyby-pill.is-now {
  color: #ffe8d9;
  border-color: rgba(255, 146, 114, 0.46);
  background: rgba(255, 120, 89, 0.23);
}

.event-buyby-pill.is-soon {
  color: #ffefce;
  border-color: rgba(255, 194, 116, 0.46);
  background: rgba(255, 171, 70, 0.2);
}

.event-buyby-pill.is-open {
  color: #d9f3ff;
  border-color: rgba(108, 199, 255, 0.4);
  background: rgba(54, 142, 222, 0.2);
}

.event-buyby-note {
  text-align: right;
}

.price-chip {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.22rem 0.56rem;
  font-size: 0.75rem;
  color: #d8d8d8;
}

.availability-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.availability-pill--selling_fast {
  color: #fff0d7;
  background: rgba(182, 108, 38, 0.26);
  border-color: rgba(246, 171, 96, 0.36);
}

.availability-pill--almost_sold_out {
  color: #ffe7df;
  background: rgba(168, 61, 52, 0.28);
  border-color: rgba(255, 133, 119, 0.4);
}

.availability-pill--sold_out {
  color: #e4e4e4;
  background: rgba(112, 112, 118, 0.22);
  border-color: rgba(196, 196, 204, 0.24);
}

.side-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 0.9rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(21, 21, 21, 0.94), rgba(10, 10, 10, 0.9));
  padding: 1.05rem;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  transition: border-color var(--motion-mid) ease, box-shadow var(--motion-slow) ease, background var(--motion-mid) ease;
}

.fomo-control-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(142deg, rgba(14, 14, 14, 0.95), rgba(7, 7, 7, 0.95));
}

.fomo-control-panel::before {
  content: '';
  position: absolute;
  inset: -34% -26% auto;
  height: 56%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 74%);
  pointer-events: none;
}

.fomo-control-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fomo-control-select-wrap {
  margin-top: 0.68rem;
  display: grid;
  gap: 0.32rem;
}

.fomo-control-select-wrap > span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fomo-control-select-wrap select {
  width: 100%;
}

.fomo-control-meta {
  margin: 0.56rem 0 0;
}

.field-active-shell {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.14), 0 0 26px rgba(255, 255, 255, 0.12);
}

.fluid-interactive {
  --fluid-tilt-x: 0deg;
  --fluid-tilt-y: 0deg;
  --fluid-shift-x: 0px;
  --fluid-shift-y: 0px;
  transform: translate3d(var(--fluid-shift-x), var(--fluid-shift-y), 0) rotateX(var(--fluid-tilt-x))
    rotateY(var(--fluid-tilt-y));
  transform-style: preserve-3d;
  will-change: transform, border-color, box-shadow;
  transition: transform var(--motion-mid) var(--motion-curve-fluid), border-color var(--motion-mid) ease,
    box-shadow var(--motion-mid) ease;
}

.fluid-interactive.is-hovering {
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.13), 0 0 26px rgba(255, 255, 255, 0.11);
}

.price-stack {
  display: grid;
  gap: 0.48rem;
  margin-bottom: 0.8rem;
}

.price-stack p {
  margin: 0;
  display: flex;
  justify-content: space-between;
}

.price-stack span {
  color: var(--muted);
}

.mood-grid {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.5rem;
}

.mood-chip {
  display: flex;
  justify-content: space-between;
  border-radius: 14px;
  padding: 0.48rem 0.7rem;
  text-align: left;
}

.mood-chip span {
  color: var(--muted);
  font-size: 0.8rem;
}

.price-pressure-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
}

.price-pressure-item {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.52rem 0.62rem;
  background: rgba(255, 255, 255, 0.02);
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.price-pressure-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.price-pressure-item strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.price-pressure-item p {
  margin: 0.18rem 0 0;
}

.price-pressure-meta {
  display: grid;
  gap: 0.18rem;
  justify-items: end;
  text-align: right;
}

.price-pressure-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.7);
}

.entry-intel-panel {
  position: relative;
  overflow: hidden;
}

.entry-intel-panel::before {
  content: '';
  position: absolute;
  inset: -48% -36% auto;
  height: 68%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 68%);
  pointer-events: none;
}

.entry-intel-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.entry-intel-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.entry-intel-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.entry-intel-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.entry-intel-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.entry-intel-main p {
  margin: 0.18rem 0 0;
}

.entry-intel-meta {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.entry-intel-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.72);
}

.queue-heat-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(152deg, rgba(14, 14, 14, 0.96), rgba(7, 7, 7, 0.95));
}

.queue-heat-panel::before {
  content: '';
  position: absolute;
  inset: -40% -25% auto;
  height: 62%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 72%);
  pointer-events: none;
}

.queue-heat-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.queue-heat-meta {
  margin: 0.35rem 0 0;
}

.queue-heat-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.queue-heat-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.queue-heat-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.queue-heat-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.queue-heat-main p {
  margin: 0.18rem 0 0.34rem;
}

.queue-heat-bar {
  width: clamp(120px, 20vw, 180px);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.queue-heat-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(196, 196, 196, 0.9));
  transition: width 240ms var(--motion-curve-fluid);
}

.queue-heat-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.queue-heat-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.72);
}

.door-rush-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(168, 199, 255, 0.2), transparent 42%),
    linear-gradient(152deg, rgba(14, 14, 14, 0.96), rgba(7, 7, 7, 0.95));
}

.door-rush-panel::before {
  content: '';
  position: absolute;
  inset: -40% -24% auto;
  height: 62%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 72%);
  pointer-events: none;
}

.door-rush-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.door-rush-meta {
  margin: 0.35rem 0 0;
}

.door-rush-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.door-rush-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.door-rush-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.door-rush-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.door-rush-main p {
  margin: 0.18rem 0 0.34rem;
}

.door-rush-bar {
  width: clamp(120px, 20vw, 180px);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.door-rush-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(180, 203, 255, 0.9));
  transition: width 240ms var(--motion-curve-fluid);
}

.door-rush-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.door-rush-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.door-rush-pill.is-hot {
  border-color: rgba(255, 149, 149, 0.56);
  background: rgba(255, 149, 149, 0.18);
  color: #ffe3e3;
}

.door-rush-pill.is-warm {
  border-color: rgba(255, 209, 152, 0.5);
  background: rgba(255, 209, 152, 0.15);
  color: #fff2df;
}

.door-rush-pill.is-easy {
  border-color: rgba(187, 218, 255, 0.52);
  background: rgba(187, 218, 255, 0.16);
  color: #edf6ff;
}

.value-drop-panel {
  position: relative;
  overflow: hidden;
}

.value-drop-panel::before {
  content: '';
  position: absolute;
  inset: -40% -25% auto;
  height: 62%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 72%);
  pointer-events: none;
}

.value-drop-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.value-drop-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.value-drop-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.value-drop-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.value-drop-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.value-drop-main p {
  margin: 0.18rem 0 0;
}

.value-drop-meta {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.value-drop-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(111, 255, 155, 0.38);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(111, 255, 155, 0.16);
  color: #d8ffe8;
}

.budget-scout-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 229, 138, 0.16), transparent 42%),
    linear-gradient(150deg, rgba(14, 14, 14, 0.96), rgba(7, 7, 7, 0.95));
}

.budget-scout-panel::before {
  content: '';
  position: absolute;
  inset: -38% -24% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 74%);
  pointer-events: none;
}

.budget-scout-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.budget-scout-control {
  margin-top: 0.7rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.62rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.budget-scout-control strong {
  font-family: var(--font-condensed);
  font-weight: 760;
  letter-spacing: 0.04em;
  color: #f6f6f6;
}

.budget-scout-range {
  width: 100%;
  margin-top: 0.48rem;
  accent-color: #f3f3f3;
}

.budget-scout-meta {
  margin: 0.38rem 0 0;
}

.budget-scout-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.budget-scout-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.budget-scout-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.budget-scout-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.budget-scout-main p {
  margin: 0.18rem 0 0;
}

.budget-scout-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.budget-scout-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.budget-scout-pill.is-lock {
  border-color: rgba(255, 214, 125, 0.56);
  background: rgba(255, 214, 125, 0.18);
  color: #fff5dc;
}

.budget-scout-pill.is-watch {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
  color: #f4f4f4;
}

.stability-lane-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(132, 255, 233, 0.18), transparent 42%),
    linear-gradient(152deg, rgba(14, 14, 14, 0.96), rgba(7, 7, 7, 0.95));
}

.stability-lane-panel::before {
  content: '';
  position: absolute;
  inset: -38% -24% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 74%);
  pointer-events: none;
}

.stability-lane-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.stability-lane-meta {
  margin: 0.35rem 0 0;
}

.stability-lane-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.stability-lane-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.stability-lane-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.stability-lane-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.stability-lane-main p {
  margin: 0.18rem 0 0;
}

.stability-lane-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.stability-lane-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.stability-lane-pill.is-lock {
  border-color: rgba(255, 208, 138, 0.56);
  background: rgba(255, 208, 138, 0.16);
  color: #fff2dc;
}

.stability-lane-pill.is-stable {
  border-color: rgba(132, 255, 233, 0.56);
  background: rgba(132, 255, 233, 0.18);
  color: #e6fff9;
}

.stability-lane-pill.is-watch {
  border-color: rgba(255, 255, 255, 0.29);
  background: rgba(255, 255, 255, 0.11);
  color: #f2f2f2;
}

.surge-watch-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 16%, rgba(255, 164, 122, 0.2), transparent 43%),
    linear-gradient(152deg, rgba(14, 14, 14, 0.96), rgba(7, 7, 7, 0.95));
}

.surge-watch-panel::before {
  content: '';
  position: absolute;
  inset: -38% -24% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 74%);
  pointer-events: none;
}

.surge-watch-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.surge-watch-meta {
  margin: 0.35rem 0 0;
}

.surge-watch-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.surge-watch-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.surge-watch-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.surge-watch-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.surge-watch-main p {
  margin: 0.18rem 0 0;
}

.surge-watch-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.surge-watch-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.surge-watch-pill.is-lock {
  border-color: rgba(255, 174, 122, 0.6);
  background: rgba(255, 174, 122, 0.2);
  color: #fff3e6;
}

.surge-watch-pill.is-likely {
  border-color: rgba(255, 220, 142, 0.58);
  background: rgba(255, 220, 142, 0.19);
  color: #fff8e2;
}

.surge-watch-pill.is-watch {
  border-color: rgba(255, 255, 255, 0.29);
  background: rgba(255, 255, 255, 0.11);
  color: #f2f2f2;
}

.deal-radar-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(133, 255, 184, 0.2), transparent 42%),
    linear-gradient(150deg, rgba(14, 14, 14, 0.96), rgba(6, 6, 6, 0.95));
}

.deal-radar-panel::before {
  content: '';
  position: absolute;
  inset: -40% -24% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 74%);
  pointer-events: none;
}

.deal-radar-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.deal-radar-meta {
  margin: 0.35rem 0 0;
}

.deal-radar-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.deal-radar-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.deal-radar-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.deal-radar-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.deal-radar-main p {
  margin: 0.18rem 0 0;
}

.deal-radar-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.deal-radar-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.deal-radar-pill.is-strong {
  border-color: rgba(126, 255, 172, 0.56);
  background: rgba(126, 255, 172, 0.18);
  color: #e8ffef;
}

.deal-radar-pill.is-good {
  border-color: rgba(194, 255, 126, 0.48);
  background: rgba(194, 255, 126, 0.14);
  color: #f3ffdd;
}

.deal-radar-pill.is-watch {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  color: #f2f2f2;
}

.rebound-radar-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(152, 235, 212, 0.19), transparent 44%),
    linear-gradient(152deg, rgba(14, 14, 14, 0.97), rgba(7, 7, 7, 0.95));
}

.rebound-radar-panel::before {
  content: '';
  position: absolute;
  inset: -40% -24% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 74%);
  pointer-events: none;
}

.rebound-radar-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.rebound-radar-meta {
  margin: 0.35rem 0 0;
}

.rebound-radar-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.rebound-radar-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.rebound-radar-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.rebound-radar-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.rebound-radar-main p {
  margin: 0.18rem 0 0;
}

.rebound-radar-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.rebound-radar-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.rebound-radar-pill.is-strong {
  border-color: rgba(121, 255, 189, 0.58);
  background: rgba(121, 255, 189, 0.18);
  color: #e6ffef;
}

.rebound-radar-pill.is-likely {
  border-color: rgba(168, 246, 255, 0.48);
  background: rgba(168, 246, 255, 0.14);
  color: #edfdff;
}

.rebound-radar-pill.is-watch {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  color: #f2f2f2;
}

.scarcity-runway-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 203, 145, 0.2), transparent 44%),
    linear-gradient(152deg, rgba(14, 14, 14, 0.97), rgba(7, 7, 7, 0.95));
}

.scarcity-runway-panel::before {
  content: '';
  position: absolute;
  inset: -40% -24% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 74%);
  pointer-events: none;
}

.scarcity-runway-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.scarcity-runway-meta {
  margin: 0.35rem 0 0;
}

.scarcity-runway-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.scarcity-runway-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.scarcity-runway-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.scarcity-runway-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.scarcity-runway-main p {
  margin: 0.18rem 0 0;
}

.scarcity-runway-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.scarcity-runway-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.scarcity-runway-pill.is-close {
  border-color: rgba(255, 150, 119, 0.58);
  background: rgba(255, 150, 119, 0.18);
  color: #ffe9de;
}

.scarcity-runway-pill.is-build {
  border-color: rgba(255, 202, 131, 0.52);
  background: rgba(255, 202, 131, 0.17);
  color: #fff1df;
}

.scarcity-runway-pill.is-open {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  color: #f2f2f2;
}

.signal-compare-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(154, 232, 255, 0.18), transparent 44%),
    linear-gradient(152deg, rgba(14, 14, 14, 0.97), rgba(7, 7, 7, 0.95));
}

.signal-compare-panel::before {
  content: '';
  position: absolute;
  inset: -42% -24% auto;
  height: 62%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 74%);
  pointer-events: none;
}

.signal-compare-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.signal-compare-meta {
  margin: 0.35rem 0 0;
}

.signal-compare-select-wrap {
  margin-top: 0.58rem;
}

.signal-compare-focus-meta {
  margin: 0.44rem 0 0;
}

.signal-compare-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.52rem;
  position: relative;
}

.signal-compare-item {
  display: flex;
  justify-content: space-between;
  gap: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.62rem 0.72rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.signal-compare-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.26);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.signal-compare-main {
  min-width: 0;
  flex: 1;
}

.signal-compare-main strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
}

.signal-compare-main p {
  margin: 0.2rem 0 0.28rem;
}

.signal-compare-metrics {
  display: grid;
  gap: 0.24rem;
}

.signal-compare-metric {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 0.42rem;
  row-gap: 0.12rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f0f0f0;
}

.signal-compare-metric span:last-child {
  justify-self: end;
  color: rgba(255, 255, 255, 0.92);
}

.signal-compare-bar {
  grid-column: 1 / -1;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.signal-compare-bar > span {
  display: block;
  height: 100%;
  width: var(--fill, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(180, 246, 255, 0.95));
}

.signal-compare-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  align-content: start;
  text-align: right;
}

.signal-compare-pill {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(170, 240, 255, 0.48);
  border-radius: 999px;
  padding: 0.24rem 0.48rem;
  background: rgba(170, 240, 255, 0.14);
  color: #f1fdff;
}

.price-shield-lane-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 13%, rgba(175, 217, 255, 0.2), transparent 42%),
    linear-gradient(152deg, rgba(14, 14, 14, 0.96), rgba(7, 7, 7, 0.95));
}

.price-shield-lane-panel::before {
  content: '';
  position: absolute;
  inset: -38% -24% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 74%);
  pointer-events: none;
}

.price-shield-lane-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.price-shield-lane-meta {
  margin: 0.35rem 0 0;
}

.price-shield-lane-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.price-shield-lane-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.price-shield-lane-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.price-shield-lane-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.price-shield-lane-main p {
  margin: 0.18rem 0 0;
}

.price-shield-lane-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.price-shield-lane-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.price-shield-lane-pill.is-lock {
  border-color: rgba(255, 182, 132, 0.58);
  background: rgba(255, 182, 132, 0.18);
  color: #fff1e2;
}

.price-shield-lane-pill.is-open {
  border-color: rgba(176, 220, 255, 0.58);
  background: rgba(176, 220, 255, 0.2);
  color: #edf7ff;
}

.price-shield-lane-pill.is-watch {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  color: #f2f2f2;
}

.surge-cooldown-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(170, 245, 219, 0.18), transparent 42%),
    linear-gradient(152deg, rgba(14, 14, 14, 0.96), rgba(7, 7, 7, 0.95));
}

.surge-cooldown-panel::before {
  content: '';
  position: absolute;
  inset: -38% -24% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 74%);
  pointer-events: none;
}

.surge-cooldown-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.surge-cooldown-meta {
  margin: 0.35rem 0 0;
}

.surge-cooldown-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.surge-cooldown-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.surge-cooldown-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.surge-cooldown-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.surge-cooldown-main p {
  margin: 0.18rem 0 0;
}

.surge-cooldown-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.surge-cooldown-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.surge-cooldown-pill.is-lock {
  border-color: rgba(255, 198, 152, 0.56);
  background: rgba(255, 198, 152, 0.18);
  color: #fff2e5;
}

.surge-cooldown-pill.is-watch {
  border-color: rgba(182, 238, 216, 0.5);
  background: rgba(182, 238, 216, 0.18);
  color: #ecfff7;
}

.sellout-clock-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 147, 126, 0.22), transparent 42%),
    linear-gradient(152deg, rgba(14, 14, 14, 0.96), rgba(7, 7, 7, 0.95));
}

.sellout-clock-panel::before {
  content: '';
  position: absolute;
  inset: -38% -24% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 74%);
  pointer-events: none;
}

.sellout-clock-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.sellout-clock-meta {
  margin: 0.35rem 0 0;
}

.sellout-clock-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.sellout-clock-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.sellout-clock-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.sellout-clock-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.sellout-clock-main p {
  margin: 0.18rem 0 0;
}

.sellout-clock-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.sellout-clock-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.sellout-clock-pill.is-now {
  border-color: rgba(255, 112, 112, 0.58);
  background: rgba(255, 112, 112, 0.18);
  color: #ffe2e2;
}

.sellout-clock-pill.is-high {
  border-color: rgba(255, 167, 112, 0.5);
  background: rgba(255, 167, 112, 0.16);
  color: #ffeedb;
}

.sellout-clock-pill.is-build {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  color: #f2f2f2;
}

.saved-pulse-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(150, 188, 255, 0.19), transparent 42%),
    linear-gradient(152deg, rgba(14, 14, 14, 0.96), rgba(7, 7, 7, 0.95));
}

.saved-pulse-panel::before {
  content: '';
  position: absolute;
  inset: -38% -24% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 74%);
  pointer-events: none;
}

.saved-pulse-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.saved-pulse-meta {
  margin: 0.35rem 0 0;
}

.saved-pulse-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.saved-pulse-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.saved-pulse-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.saved-pulse-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.saved-pulse-main p {
  margin: 0.18rem 0 0;
}

.saved-pulse-bar {
  margin-top: 0.3rem;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  overflow: hidden;
}

.saved-pulse-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(145, 194, 255, 0.78), rgba(255, 255, 255, 0.9));
}

.saved-pulse-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.saved-pulse-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.saved-pulse-pill.is-now {
  border-color: rgba(255, 184, 126, 0.58);
  background: rgba(255, 184, 126, 0.2);
  color: #fff1df;
}

.saved-pulse-pill.is-watch {
  border-color: rgba(145, 194, 255, 0.55);
  background: rgba(145, 194, 255, 0.18);
  color: #ecf5ff;
}

.saved-pulse-pill.is-stable {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  color: #f2f2f2;
}

.fomo-planner-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(126, 185, 255, 0.2), transparent 40%),
    linear-gradient(152deg, rgba(14, 14, 14, 0.96), rgba(7, 7, 7, 0.95));
}

.fomo-planner-panel::before {
  content: '';
  position: absolute;
  inset: -38% -24% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 74%);
  pointer-events: none;
}

.fomo-planner-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.fomo-planner-meta {
  margin: 0.35rem 0 0;
}

.fomo-planner-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.fomo-planner-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.fomo-planner-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.fomo-planner-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.fomo-planner-main p {
  margin: 0.18rem 0 0;
}

.fomo-planner-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.fomo-planner-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(143, 196, 255, 0.5);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(143, 196, 255, 0.18);
  color: #ecf5ff;
}

.crew-planner-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(189, 224, 255, 0.18), transparent 40%),
    linear-gradient(150deg, rgba(14, 14, 14, 0.96), rgba(7, 7, 7, 0.95));
}

.crew-planner-panel::before {
  content: '';
  position: absolute;
  inset: -38% -24% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 74%);
  pointer-events: none;
}

.crew-planner-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.crew-size-controls {
  margin-top: 0.72rem;
  display: inline-flex;
  gap: 0.32rem;
  padding: 0.26rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(12, 12, 12, 0.78);
}

.crew-size-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  min-width: 2rem;
  height: 1.82rem;
  padding: 0 0.56rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-condensed);
  font-size: 0.76rem;
  font-weight: 640;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color var(--motion-fast) ease, border-color var(--motion-fast) ease, background var(--motion-fast) ease,
    transform var(--motion-fast) var(--motion-curve-fluid);
}

.crew-size-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.crew-size-btn.active {
  color: #050505;
  border-color: rgba(255, 255, 255, 0.52);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.95), rgba(214, 214, 214, 0.92));
}

.crew-planner-meta {
  margin: 0.42rem 0 0;
}

.crew-planner-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.crew-planner-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.crew-planner-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.crew-planner-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.crew-planner-main p {
  margin: 0.18rem 0 0;
}

.crew-planner-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.crew-planner-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.crew-planner-pill.is-now {
  border-color: rgba(255, 176, 149, 0.58);
  background: rgba(255, 176, 149, 0.18);
  color: #fff1e8;
}

.crew-planner-pill.is-high {
  border-color: rgba(159, 203, 255, 0.56);
  background: rgba(159, 203, 255, 0.18);
  color: #eef7ff;
}

.crew-planner-pill.is-open {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  color: #f2f2f2;
}

.crew-budget-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 191, 123, 0.2), transparent 42%),
    linear-gradient(148deg, rgba(12, 12, 12, 0.97), rgba(7, 7, 7, 0.95));
}

.crew-budget-panel::before {
  content: '';
  position: absolute;
  inset: -36% -22% auto;
  height: 58%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 74%);
  pointer-events: none;
}

.crew-budget-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.crew-budget-control {
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.crew-budget-control strong {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  color: #fff8f0;
}

.crew-budget-range {
  width: 100%;
  margin: 0.44rem 0 0;
  accent-color: #ffc88a;
}

.crew-budget-meta {
  margin: 0.42rem 0 0;
}

.crew-budget-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.crew-budget-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.crew-budget-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.crew-budget-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.crew-budget-main p {
  margin: 0.18rem 0 0;
}

.crew-budget-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.crew-budget-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.crew-budget-pill.is-lock {
  border-color: rgba(255, 187, 143, 0.58);
  background: rgba(255, 187, 143, 0.2);
  color: #fff2e7;
}

.crew-budget-pill.is-watch {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
  color: #f2f2f2;
}

.venue-momentum-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 176, 136, 0.2), transparent 44%),
    linear-gradient(148deg, rgba(12, 12, 12, 0.97), rgba(7, 7, 7, 0.95));
}

.venue-momentum-panel::before {
  content: '';
  position: absolute;
  inset: -36% -22% auto;
  height: 58%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 74%);
  pointer-events: none;
}

.venue-momentum-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.015em;
  font-weight: 740;
}

.venue-momentum-control {
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.venue-momentum-control strong {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  color: #fff4ea;
}

.venue-momentum-range {
  width: 100%;
  margin: 0.44rem 0 0;
  accent-color: #ffb690;
}

.venue-momentum-meta {
  margin: 0.42rem 0 0;
}

.venue-momentum-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.venue-momentum-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.venue-momentum-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.venue-momentum-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.venue-momentum-main p {
  margin: 0.18rem 0 0;
}

.venue-momentum-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.venue-momentum-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.venue-momentum-pill.is-now {
  border-color: rgba(255, 180, 145, 0.58);
  background: rgba(255, 180, 145, 0.2);
  color: #fff2e7;
}

.venue-momentum-pill.is-soon {
  border-color: rgba(255, 227, 153, 0.56);
  background: rgba(255, 227, 153, 0.18);
  color: #fff9e7;
}

.venue-momentum-pill.is-watch {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
  color: #f2f2f2;
}

.gate-strategy-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 228, 160, 0.16), transparent 44%),
    linear-gradient(148deg, rgba(12, 12, 12, 0.97), rgba(7, 7, 7, 0.95));
}

.gate-strategy-panel::before {
  content: '';
  position: absolute;
  inset: -36% -22% auto;
  height: 58%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 74%);
  pointer-events: none;
}

.gate-strategy-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.015em;
  font-weight: 740;
}

.gate-strategy-meta {
  margin: 0.42rem 0 0;
}

.gate-strategy-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.gate-strategy-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.gate-strategy-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.gate-strategy-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.gate-strategy-main p {
  margin: 0.18rem 0 0;
}

.gate-strategy-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.gate-strategy-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.gate-strategy-pill.is-now {
  border-color: rgba(255, 180, 145, 0.58);
  background: rgba(255, 180, 145, 0.2);
  color: #fff2e7;
}

.gate-strategy-pill.is-soon {
  border-color: rgba(255, 227, 153, 0.56);
  background: rgba(255, 227, 153, 0.18);
  color: #fff9e7;
}

.gate-strategy-pill.is-easy {
  border-color: rgba(173, 228, 255, 0.56);
  background: rgba(173, 228, 255, 0.16);
  color: #ecf8ff;
}

.night-stack-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 219, 154, 0.18), transparent 44%),
    linear-gradient(144deg, rgba(13, 13, 13, 0.97), rgba(6, 6, 6, 0.96));
}

.night-stack-panel::before {
  content: '';
  position: absolute;
  inset: -34% auto auto -16%;
  width: 62%;
  height: 62%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 72%);
  pointer-events: none;
}

.night-stack-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-stretch: condensed;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 740;
}

.night-stack-meta {
  margin: 0.42rem 0 0;
}

.night-stack-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.46rem;
  position: relative;
}

.night-stack-item {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  padding: 0.56rem 0.66rem;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.night-stack-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.27);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.night-stack-main strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.night-stack-main p {
  margin: 0.18rem 0 0;
}

.night-stack-meta-wrap {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.night-stack-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.23rem 0.46rem;
  background: rgba(8, 8, 8, 0.74);
}

.night-stack-pill.is-lock {
  border-color: rgba(255, 189, 147, 0.58);
  background: rgba(255, 189, 147, 0.2);
  color: #fff3e8;
}

.night-stack-pill.is-soon {
  border-color: rgba(255, 228, 161, 0.56);
  background: rgba(255, 228, 161, 0.18);
  color: #fff9e9;
}

.night-stack-pill.is-open {
  border-color: rgba(175, 232, 255, 0.56);
  background: rgba(175, 232, 255, 0.16);
  color: #ebf8ff;
}

.magic {
  margin-top: clamp(2rem, 5vw, 4rem);
}

.magic-inner {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  padding: clamp(1rem, 2.7vw, 2rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.footer-note {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.solid-btn,
.text-btn,
.outline-btn,
.link-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.62rem 0.92rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 630;
  letter-spacing: -0.01em;
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease, box-shadow var(--motion-mid) ease;
}

.auth-chip {
  gap: 0.5rem;
  padding-left: 0.52rem;
  padding-right: 0.84rem;
}

.auth-avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  flex: 0 0 auto;
}

.auth-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.account-menu-popover {
  position: fixed;
  z-index: 1200;
  min-width: 130px;
  padding: 0.32rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(12, 12, 14, 0.94);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.account-menu-item {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 0.48rem 0.62rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.account-menu-item:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.solid-btn {
  background: var(--accent);
  color: var(--accent-dark);
}

.solid-btn:hover,
.text-btn:hover,
.outline-btn:hover,
.link-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
}

.text-btn,
.outline-btn,
.link-btn {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.fluid-pressing {
  transform: translateY(1px) scale(0.985) !important;
}

.glow {
  position: relative;
  overflow: hidden;
}

.glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: translateX(-120%);
  animation: glowSlide 2.8s linear infinite;
}

.full {
  width: 100%;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 2vw, 1.4rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.auth-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.08), transparent 44%),
    rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(12px);
}

.auth-shell {
  position: relative;
  width: min(1120px, calc(100vw - 2rem));
  height: min(760px, calc(100dvh - 2rem));
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  box-shadow: 0 46px 140px rgba(0, 0, 0, 0.65);
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.09), transparent 40%),
    linear-gradient(145deg, rgba(9, 9, 11, 0.98), rgba(3, 3, 4, 0.98));
  isolation: isolate;
  animation: authRise 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.auth-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(90deg, transparent 0 42%, rgba(4, 4, 5, 0.2) 58%, rgba(4, 4, 5, 0.76) 100%);
  pointer-events: none;
  z-index: 0;
}

.auth-visual {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 22% 20%, rgba(0, 106, 255, 0.2), transparent 52%), #050505;
}

.auth-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(93, 150, 255, 0.32), transparent 40%),
    radial-gradient(circle at 72% 88%, rgba(27, 82, 178, 0.34), transparent 48%),
    linear-gradient(138deg, rgba(4, 5, 12, 0.12), rgba(3, 3, 3, 0.68));
  z-index: 1;
  pointer-events: none;
}

.auth-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 56%, rgba(2, 2, 3, 0.84));
  z-index: 2;
  pointer-events: none;
}

.auth-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(1.14) contrast(1.03) brightness(0.94);
  transform: scale(1.08);
}


.auth-card {
  position: relative;
  width: min(460px, calc(100% - 1.5rem));
  margin: 10vh auto 0;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 1rem;
  background: linear-gradient(150deg, rgba(18, 18, 18, 0.98), rgba(6, 6, 6, 0.97));
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.55);
  animation: authRise 260ms ease;
}

.auth-experience .auth-card {
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-left: 1px solid var(--line-strong);
  border-radius: 0;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  box-shadow: none;
  animation: none;
  background:
    radial-gradient(circle at 20% 9%, rgba(255, 255, 255, 0.14), transparent 40%),
    linear-gradient(152deg, rgba(11, 12, 16, 0.97), rgba(4, 5, 8, 0.98));
  overflow: auto;
  z-index: 2;
}

.auth-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.72rem;
  min-height: 100%;
  padding-block: 0.22rem;
}

.auth-panel > .auth-heading,
.auth-panel > .auth-identity-orbit,
.auth-panel > .otp-header-avatar {
  align-self: center;
  text-align: center;
}

.auth-panel > .auth-form,
.auth-panel > .auth-onboarding,
.auth-panel > .auth-status {
  width: min(100%, 500px);
  margin-inline: auto;
}

.auth-heading {
  width: min(100%, 500px);
  margin-inline: auto;
  display: grid;
  gap: 0.44rem;
}

.auth-kicker {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(230, 230, 232, 0.72);
}

.auth-heading h3 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: clamp(1.34rem, 2.5vw, 2rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-transform: uppercase;
}

.auth-heading #authSubtitle {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(230, 230, 234, 0.82);
}

.auth-experience.auth-profile-mode .auth-panel {
  justify-content: flex-start;
  min-height: 0;
  overflow-y: auto;
  padding-bottom: 0.6rem;
}

.auth-experience.auth-profile-mode .auth-identity-orbit {
  display: none;
}

.auth-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.35), transparent 36%, rgba(255, 255, 255, 0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.auth-identity-orbit {
  position: relative;
  width: 136px;
  aspect-ratio: 1;
  margin: 0.2rem 0 0.72rem;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.auth-identity-orbit::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.18), transparent 56%),
    linear-gradient(140deg, rgba(22, 22, 22, 0.95), rgba(6, 6, 6, 0.96));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 12px 32px rgba(0, 0, 0, 0.36);
}

.auth-identity-orbit::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  opacity: 0.55;
}

.auth-identity-orbit-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: rgba(238, 239, 242, 0.88);
  font-size: 8.4px;
  font-weight: 620;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform-origin: 50% 50%;
  animation: authIdentityOrbit 16s linear infinite;
}

.auth-identity-core {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.24), transparent 56%),
    linear-gradient(158deg, rgba(14, 14, 14, 0.98), rgba(6, 6, 6, 0.98));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.24rem;
  text-align: center;
  padding: 0.3rem;
}

.auth-identity-core-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.auth-identity-orbit.is-user-avatar .auth-identity-core {
  padding: 4px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.18), transparent 56%),
    linear-gradient(158deg, rgba(11, 11, 11, 0.98), rgba(4, 4, 4, 0.99));
}

.auth-identity-orbit.is-user-avatar .auth-identity-core-dot,
.auth-identity-orbit.is-user-avatar .auth-identity-core-label {
  display: none;
}

.auth-identity-core-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f4f4f4;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.auth-identity-core-label {
  max-width: 68px;
  font-size: 0.53rem;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(229, 231, 238, 0.86);
}

.auth-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--motion-fast) ease, background var(--motion-fast) ease, transform var(--motion-fast) var(--motion-curve-fluid);
}

.auth-close:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.auth-form {
  margin-top: 0.94rem;
  display: grid;
  gap: 0.72rem;
}

.auth-inline-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.otp-header-avatar {
  width: 72px;
  height: 72px;
  margin: 0.8rem 0 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.2), transparent 58%),
    rgba(10, 10, 10, 0.82);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.otp-header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.otp-label {
  margin-top: 0.1rem;
}

.otp-slots {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.5rem;
}

.otp-slot {
  height: 72px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(9, 9, 9, 0.82);
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  font-weight: 670;
  letter-spacing: 0;
  color: #f3f5ff;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  will-change: transform;
}

.otp-slot:focus {
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.otp-slot.filled {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.otp-slot.digit-pop {
  animation: otpDigitPop 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.otp-hidden-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(100%);
  border: 0;
}

@keyframes otpDigitPop {
  0% {
    transform: scale(0.82);
  }
  62% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes authIdentityOrbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.auth-onboarding {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.72rem;
  position: relative;
}

.onboarding-intro {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 0.72rem 0.8rem;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
  color: rgba(233, 235, 241, 0.85);
  line-height: 1.45;
}

.onboarding-step {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 0.92rem;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  animation: onboardingStepIn 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.onboarding-field-note {
  margin: 0;
  color: rgba(230, 233, 242, 0.82);
}

.onboarding-handle-form {
  margin-top: 0.66rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 0.74rem;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(8, 8, 10, 0.56);
}

.onboarding-handle-form label {
  color: rgba(214, 216, 222, 0.78);
}

#onboardInstagramInput {
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(7, 8, 11, 0.9);
  padding: 0.8rem 0.85rem;
}

.avatar-uploader {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
}

.avatar-uploader img {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  background: #0b0b0b;
}

.ig-return-loader {
  position: absolute;
  inset: 0;
  z-index: 8;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.12), transparent 54%),
    radial-gradient(circle at 80% 82%, rgba(255, 255, 255, 0.08), transparent 56%),
    linear-gradient(150deg, rgba(12, 12, 14, 0.94), rgba(4, 4, 5, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 24px 80px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.ig-return-loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 46%, rgba(255, 255, 255, 0.05));
  animation: igReturnSweep 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  pointer-events: none;
}

.ig-return-core {
  position: relative;
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  gap: 0.72rem;
  text-align: center;
  z-index: 1;
}

.ig-return-avatar-wrap {
  position: relative;
  width: 156px;
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  isolation: isolate;
  animation: igReturnFloat 3.1s ease-in-out infinite;
}

.ig-return-avatar-wrap::before,
.ig-return-avatar-wrap::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ig-return-avatar-wrap::before {
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.ig-return-avatar-wrap::after {
  inset: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
}

.ig-return-orbit-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: rgba(236, 238, 243, 0.9);
  font-size: 10.1px;
  font-weight: 620;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  animation: none;
  transition: opacity 260ms ease;
}

.ig-return-avatar-glass {
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.2), transparent 58%),
    linear-gradient(145deg, rgba(16, 16, 18, 0.95), rgba(7, 7, 8, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 18px 52px rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.ig-return-avatar-wrap img {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: #080808;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.48);
  opacity: 0.92;
  transform: scale(0.88);
}

.ig-return-spinner {
  position: absolute;
  inset: 15px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.86);
  border-right-color: rgba(255, 255, 255, 0.58);
  z-index: 2;
  animation: igReturnSpin 1.2s linear infinite;
  transition: opacity 220ms ease;
}

.ig-return-loader.is-avatar-grabbed .ig-return-avatar-wrap::before {
  opacity: 0.72;
  transform: scale(1);
}

.ig-return-loader.is-avatar-grabbed .ig-return-avatar-wrap::after {
  opacity: 0.44;
  transform: scale(1);
}

.ig-return-loader.is-avatar-grabbed .ig-return-avatar-wrap img {
  animation: igAvatarGrabPop 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ig-return-loader.is-identity-reveal .ig-return-orbit-text {
  opacity: 1;
  animation: authIdentityOrbit 11s linear infinite;
}

.ig-return-loader.is-identity-reveal .ig-return-spinner {
  opacity: 0.2;
}

.ig-return-title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1rem, 2.1vw, 1.18rem);
  letter-spacing: 0.02em;
  color: #f3f3f3;
}

.ig-return-message {
  margin: 0;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: rgba(235, 235, 235, 0.8);
  min-height: 1.45em;
}

.ig-return-steps {
  width: min(100%, 340px);
  display: grid;
  gap: 0.42rem;
  margin-top: 0.2rem;
}

.ig-return-step {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.52rem;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(232, 233, 237, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.ig-return-step-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(244, 244, 246, 0.88);
  display: grid;
  place-items: center;
}

.ig-return-step-icon svg {
  width: 13px;
  height: 13px;
  display: block;
}

.ig-return-step.is-active {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.1);
  color: #f6f6f6;
  transform: translateY(-1px);
}

.ig-return-step.is-active .ig-return-step-icon {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  animation: igReturnIconPulse 980ms ease-in-out infinite;
}

.ig-return-step.is-done {
  border-color: rgba(164, 255, 210, 0.35);
  color: rgba(206, 255, 230, 0.88);
}

.ig-return-step.is-done .ig-return-step-icon {
  border-color: rgba(164, 255, 210, 0.5);
  background: rgba(133, 255, 200, 0.16);
  color: rgba(188, 255, 220, 0.95);
}

.ig-sync-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 0.82rem;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.12), transparent 44%),
    radial-gradient(circle at 86% 86%, rgba(255, 255, 255, 0.08), transparent 46%),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.ig-sync-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.ig-sync-cloud {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 1;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.14), transparent 46%),
    radial-gradient(circle at 70% 86%, rgba(255, 255, 255, 0.1), transparent 50%),
    linear-gradient(152deg, rgba(18, 18, 21, 0.93), rgba(7, 7, 8, 0.95));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 20px 64px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.ig-sync-aura {
  position: absolute;
  inset: -14%;
  border-radius: 999px;
  background:
    conic-gradient(
      from 0deg,
      rgba(255, 255, 255, 0.28),
      rgba(210, 210, 210, 0.24),
      rgba(160, 160, 160, 0.22),
      rgba(255, 255, 255, 0.28)
    );
  filter: blur(30px);
  opacity: 0.34;
  animation: igAuraSpin 8.4s linear infinite;
}

.ig-sync-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ig-sync-rings span {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  transform: translate(-50%, -50%);
  animation: igRingPulse 2.6s ease-out infinite;
}

.ig-sync-rings span:nth-child(1) {
  width: 86px;
  height: 86px;
  animation-delay: 0s;
}

.ig-sync-rings span:nth-child(2) {
  width: 124px;
  height: 124px;
  animation-delay: 0.6s;
}

.ig-sync-rings span:nth-child(3) {
  width: 164px;
  height: 164px;
  animation-delay: 1.2s;
}

.ig-sync-scanline {
  position: absolute;
  left: -12%;
  right: -12%;
  height: 22%;
  top: 18%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02));
  filter: blur(8px);
  opacity: 0.54;
  animation: igScanSweep 3.3s ease-in-out infinite;
}

.ig-orbit-grid {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.ig-orbit-node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--node-size, 42px);
  height: var(--node-size, 42px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: calc(var(--node-size, 42px) * 0.28);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(
    150deg,
    rgba(214, 214, 214, 0.28),
    rgba(124, 124, 124, 0.3)
  );
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  transform: translate(calc(-50% + var(--node-x, 0%)), calc(-50% + var(--node-y, 0%)));
  animation:
    igNodePulse var(--node-pulse, 5.4s) ease-in-out var(--node-delay, 0s) infinite,
    igDrift var(--node-drift, 9.5s) ease-in-out var(--node-delay, 0s) infinite;
}

.ig-node-initials {
  mix-blend-mode: screen;
}

.ig-reveal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.52);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.58);
  z-index: 2;
}

.ig-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-reveal p {
  position: absolute;
  left: 50%;
  bottom: -1.55rem;
  transform: translateX(-50%);
  margin: 0;
  white-space: nowrap;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238, 238, 238, 0.86);
}

.ig-sync-cloud.found .ig-orbit-node {
  opacity: 0.15;
  filter: blur(0.4px);
}

.ig-sync-cloud.found .ig-sync-rings span {
  animation-duration: 1.7s;
  border-color: rgba(255, 255, 255, 0.34);
}

.ig-sync-cloud.found .ig-sync-aura {
  opacity: 0.52;
}

.ig-sync-cloud.found .ig-reveal {
  animation: igRevealPop 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ig-sync-copy {
  display: grid;
  gap: 0.32rem;
  align-self: stretch;
  align-content: center;
}

.ig-sync-kicker {
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scrape-meta {
  margin: 0.2rem 0 0;
  font-weight: 650;
  letter-spacing: 0.01em;
  min-height: 1.4em;
}

#instagramSyncStatus {
  margin-top: 0.45rem;
  min-height: 1.2em;
}

.ig-sync-progress {
  width: min(100%, 320px);
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.1rem;
  background: rgba(255, 255, 255, 0.14);
}

.ig-sync-progress span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(208, 208, 208, 0.82), rgba(130, 130, 130, 0.82));
  animation: igReturnSweep 1.35s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.scrape-preview {
  margin-top: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.62rem;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.02);
}

.scrape-preview img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.scrape-preview p {
  margin: 0;
}

.friend-matches {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.friend-chip {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.46rem 0.6rem;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
}

.friend-chip span {
  color: var(--muted);
  font-size: 0.74rem;
}

.suggestion-list {
  display: grid;
  gap: 0.55rem;
}

.suggestion-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
}

.suggestion-card p {
  margin: 0.24rem 0 0;
}

.suggestion-actions {
  display: inline-flex;
  gap: 0.4rem;
}

.tiny-btn {
  padding: 0.34rem 0.66rem;
  font-size: 0.78rem;
}

.onboarding-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 0.2rem;
}

.onboarding-actions .solid-btn {
  min-width: 220px;
  min-height: 46px;
  font-weight: 670;
  letter-spacing: 0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.auth-status {
  margin-top: 0.8rem;
  min-height: 1.2rem;
  font-size: 0.9rem;
  text-align: center;
}

.auth-status.ok {
  color: #a3ffd2;
}

.auth-status.error {
  color: #ff9ea3;
}

.auth-status.muted {
  color: var(--muted);
}

.magic-popup-layer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(12px);
}

.magic-popup {
  width: min(100%, 460px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.22), transparent 52%),
    radial-gradient(circle at 82% 90%, rgba(189, 189, 189, 0.22), transparent 56%),
    linear-gradient(160deg, rgba(9, 9, 11, 0.96), rgba(4, 4, 5, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  padding: 1rem;
  display: grid;
  gap: 0.58rem;
  animation: authRise 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.magic-popup-eyebrow {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.magic-popup h3 {
  margin: 0;
}

.magic-popup-copy {
  margin: 0;
  color: rgba(236, 236, 236, 0.84);
}

.magic-popup-field {
  display: grid;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: rgba(238, 238, 238, 0.84);
}

.magic-popup-field input,
.magic-popup-field select {
  width: 100%;
}

.magic-popup-status {
  margin: 0;
  min-height: 1.1rem;
  font-size: 0.78rem;
}

.magic-popup-status.error {
  color: #ffb2b6;
}

.magic-popup-status.muted {
  color: rgba(222, 222, 222, 0.78);
}

.magic-popup-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.hidden {
  display: none !important;
}

.empty-state {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 0.94rem 1rem;
  min-height: 64px;
  display: flex;
  align-items: center;
  line-height: 1.45;
  font-size: 0.95rem;
  font-weight: 520;
  letter-spacing: 0.007em;
  color: rgba(244, 244, 244, 0.96);
  position: relative;
  overflow: hidden;
  background: rgba(19, 19, 19, 0.9);
  backdrop-filter: blur(9px) saturate(112%);
}

.empty-state::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  opacity: 0.55;
}

.empty-state.with-action {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.empty-state.with-action .solid-btn {
  flex-shrink: 0;
}

.entry-intel-list > p.muted.tiny,
.queue-heat-list > p.muted.tiny,
.door-rush-list > p.muted.tiny,
.value-drop-list > p.muted.tiny,
.stability-lane-list > p.muted.tiny,
.surge-watch-list > p.muted.tiny,
.budget-scout-list > p.muted.tiny,
.quick-brief-list > p.muted.tiny,
.deal-radar-list > p.muted.tiny,
.rebound-radar-list > p.muted.tiny,
.scarcity-runway-list > p.muted.tiny,
.signal-compare-list > p.muted.tiny,
.fomo-planner-list > p.muted.tiny,
.crew-planner-list > p.muted.tiny,
.crew-budget-list > p.muted.tiny,
.venue-momentum-list > p.muted.tiny,
.gate-strategy-list > p.muted.tiny,
.night-stack-list > p.muted.tiny,
.saved-pulse-list > p.muted.tiny {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.66rem 0.76rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  font-size: 0.865rem;
  line-height: 1.43;
  letter-spacing: 0.006em;
  color: rgba(237, 237, 237, 0.96);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.13), transparent 50%),
    linear-gradient(134deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(3px);
}

.hero-spotlight > .muted {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  padding: 0.85rem 0.92rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  color: rgba(245, 245, 245, 0.95);
  font-size: 0.9rem;
  line-height: 1.45;
  letter-spacing: 0.006em;
  background:
    radial-gradient(circle at 7% 10%, rgba(255, 255, 255, 0.13), transparent 50%),
    linear-gradient(136deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
}

.reveal {
  opacity: 0.96;
  transform: translateY(4px);
  transition: opacity 440ms ease, transform 440ms ease;
}

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

.motion-enter {
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  filter: saturate(0.9) blur(2px);
  transition:
    opacity 340ms ease var(--motion-enter-delay, 0ms),
    transform 420ms var(--motion-curve-fluid) var(--motion-enter-delay, 0ms),
    filter 320ms ease var(--motion-enter-delay, 0ms);
}

.motion-enter.motion-enter-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}

body.page-transitioning {
  overflow: hidden;
}

.event-launch-veil {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.78) 46%, rgba(0, 0, 0, 0.92));
  opacity: 0;
  transition: opacity 500ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 99;
}

.event-launch-veil.active {
  opacity: 1;
}

@keyframes searchBurst {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  45% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@keyframes searchSheen {
  0% {
    opacity: 0;
    transform: translateX(-78%) skewX(-18deg);
  }

  18% {
    opacity: 0.92;
  }

  100% {
    opacity: 0;
    transform: translateX(78%) skewX(-18deg);
  }
}

@keyframes menuBloomIn {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.event-launch-card {
  position: fixed;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.52);
  pointer-events: none;
  z-index: 100;
  transition: left 530ms cubic-bezier(0.22, 1, 0.36, 1), top 530ms cubic-bezier(0.22, 1, 0.36, 1),
    width 530ms cubic-bezier(0.22, 1, 0.36, 1), height 530ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 530ms cubic-bezier(0.22, 1, 0.36, 1);
}

.event-launch-card.active {
  left: 2.2vw !important;
  top: 2.8vh !important;
  width: 95.6vw !important;
  height: 94vh !important;
  border-radius: 28px;
}

.event-launch-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 530ms cubic-bezier(0.22, 1, 0.36, 1), filter 530ms ease;
}

.event-launch-card.active .event-launch-image {
  transform: scale(1.16);
  filter: saturate(1.18) contrast(1.08);
}

.event-arrival-veil {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.52));
  opacity: 0;
  pointer-events: none;
  z-index: 91;
  transition: opacity 460ms ease;
}

.event-arrival-veil.active {
  opacity: 1;
}

.event-arrival-ghost {
  position: fixed;
  border-radius: 20px;
  object-fit: cover;
  pointer-events: none;
  z-index: 92;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  transition: left 560ms cubic-bezier(0.22, 1, 0.36, 1), top 560ms cubic-bezier(0.22, 1, 0.36, 1),
    width 560ms cubic-bezier(0.22, 1, 0.36, 1), height 560ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 560ms cubic-bezier(0.22, 1, 0.36, 1), opacity 560ms ease;
}

.event-arrival-ghost.active {
  border-radius: 24px;
}

@keyframes onboardingStepIn {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.99);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes igAuraSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes igRingPulse {
  0% {
    opacity: 0.08;
    transform: translate(-50%, -50%) scale(0.72);
  }

  60% {
    opacity: 0.42;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes igScanSweep {
  0% {
    transform: translateY(0);
    opacity: 0.2;
  }

  50% {
    transform: translateY(160%);
    opacity: 0.68;
  }

  100% {
    transform: translateY(0);
    opacity: 0.2;
  }
}

@keyframes igNodePulse {
  0%,
  100% {
    filter: saturate(0.92);
  }

  50% {
    filter: saturate(1.18) brightness(1.08);
  }
}

@keyframes igDrift {
  0%,
  100% {
    transform: translate(calc(-50% + var(--node-x, 0%)), calc(-50% + var(--node-y, 0%)));
  }

  50% {
    transform: translate(calc(-50% + var(--node-x, 0%) + var(--node-swing-x, 4%)), calc(-50% + var(--node-y, 0%) + var(--node-swing-y, -4%)));
  }
}

@keyframes igRevealPop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.48);
  }

  68% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes igReturnFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes igReturnSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes igReturnSweep {
  0% {
    transform: translateX(-115%);
  }

  100% {
    transform: translateX(255%);
  }
}

@keyframes igReturnIconPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes igAvatarGrabPop {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  68% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes authLogLineIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blueHoverBreath {
  0%,
  100% {
    filter: saturate(1) brightness(1);
  }

  50% {
    filter: saturate(1.18) brightness(1.08);
  }
}

@keyframes authRise {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes glowSlide {
  0% {
    transform: translateX(-130%);
  }

  100% {
    transform: translateX(130%);
  }
}

@keyframes ambientFloatA {
  0%,
  100% {
    transform: translate3d(calc(var(--ambient-drift-x) * -18px), calc(var(--ambient-drift-y) * -14px), 0);
  }

  50% {
    transform: translate3d(calc(var(--ambient-drift-x) * -18px + 12px), calc(var(--ambient-drift-y) * -14px - 10px), 0);
  }
}

@keyframes ambientFloatB {
  0%,
  100% {
    transform: translate3d(calc(var(--ambient-drift-x) * 18px), calc(var(--ambient-drift-y) * 14px), 0);
  }

  50% {
    transform: translate3d(calc(var(--ambient-drift-x) * 18px - 10px), calc(var(--ambient-drift-y) * 14px + 12px), 0);
  }
}

@keyframes inputPulse {
  0% {
    transform: translateY(0) scale(1);
  }

  38% {
    transform: translateY(-1px) scale(1.008);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

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

  .ambient,
  .grid-noise {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }

  .fluid-interactive {
    transform: none !important;
    transition: border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease !important;
  }

  .search-inline-shell::before,
  .search-inline-shell::after,
  .scope-switch-menu:not(.hidden),
  .city-switch-menu:not(.hidden),
  .motion-enter,
  .motion-enter.motion-enter-active {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }

  .fluid-pressing,
  input.is-typing,
  textarea.is-typing,
  select.is-typing,
  .text-input.is-typing {
    animation: none !important;
    transform: none !important;
  }

  .auth-identity-orbit-text {
    animation: none !important;
  }
}

@media (max-width: 1180px) {
  .hero-canvas,
  .split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 920px) {
  body {
    padding-bottom: max(7.8rem, calc(6.4rem + env(safe-area-inset-bottom)));
  }

  body.page-discover {
    padding-bottom: max(8.2rem, calc(6.4rem + env(safe-area-inset-bottom)));
  }

  /* Avoid first-paint clipping on mobile when reveal cards animate in. */
  .reveal {
    opacity: 1;
    transform: none;
    transition: opacity 260ms ease;
  }

  .reveal.visible {
    transform: none;
  }

  .auth-modal {
    padding: 0.62rem;
  }

  .topbar {
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem;
  }

  .topnav {
    display: none;
  }

  .topbar-actions {
    justify-content: flex-end;
    justify-self: end;
  }

  .topbar-actions .solid-btn {
    display: none;
  }

  .search-tray {
    --search-open-width: clamp(170px, 46vw, 250px);
  }

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

  .signal-compare-item {
    flex-direction: column;
  }

  .signal-compare-meta-wrap {
    justify-items: start;
    text-align: left;
  }

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

  .fomo-gate-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 0.48rem;
  }

  .fomo-gate-cover {
    min-height: 92px;
  }

  .side-column {
    grid-template-columns: 1fr;
  }

  .cronoview-shell {
    border-radius: 20px;
    padding: 0.84rem;
  }

  .cronoview-hit {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 0.7rem;
  }

  .cronoview-cover {
    width: 76px;
    height: 76px;
  }

  .cronoview-title-text {
    font-size: clamp(1.02rem, 3.5vw, 1.3rem);
  }

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

  .event-card.wide,
  .event-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .event-card.wide img,
  .event-card.tall img {
    height: 170px;
  }

  .club-row {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0.56rem;
  }

  .club-row-cover {
    width: 92px;
    height: 70px;
  }

  .club-row-tags,
  .club-row-meta {
    grid-column: span 2;
    justify-content: flex-start;
    justify-items: start;
  }

  .magic-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .auth-shell {
    grid-template-columns: 1fr;
    height: 100dvh;
    width: min(100vw, 760px);
    border-radius: 24px;
  }

  .auth-visual {
    min-height: 44vh;
  }

  .auth-experience .auth-card {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
    padding-top: 1.06rem;
  }

  .auth-panel {
    justify-content: flex-start;
  }

  .auth-heading h3 {
    font-size: clamp(1.22rem, 4.2vw, 1.7rem);
  }

  .auth-heading #authSubtitle {
    font-size: 0.9rem;
  }

  .auth-identity-orbit {
    width: 124px;
    margin-bottom: 0.62rem;
  }

  .auth-identity-core {
    width: 76px;
    height: 76px;
  }

  .ig-sync-stage {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .ig-sync-cloud {
    width: min(100%, 260px);
    justify-self: center;
  }

  .ig-return-core {
    width: min(100%, 340px);
  }

  .onboarding-actions {
    width: 100%;
  }

  .onboarding-actions .solid-btn {
    width: 100%;
    min-width: 0;
  }

  .mobile-app-nav {
    position: fixed;
    left: max(0.55rem, env(safe-area-inset-left));
    right: max(0.55rem, env(safe-area-inset-right));
    bottom: calc(0.45rem + env(safe-area-inset-bottom));
    z-index: 45;
    display: flex;
    align-items: stretch;
    gap: 0.22rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(7, 7, 7, 0.62);
    backdrop-filter: blur(18px) saturate(118%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
    padding: 0.22rem;
  }

  .mobile-app-nav a.mobile-nav-item {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    font-size: 0.82rem;
    letter-spacing: 0.012em;
    text-transform: lowercase;
    padding: 0.34rem 0.24rem;
    border-radius: 12px;
  }

  .mobile-nav-item .mobile-nav-icon {
    width: 22px;
    height: 22px;
    font-size: 0.76rem;
  }
}

@media (max-width: 640px) {
  body,
  body.page-discover {
    padding-bottom: max(10.5rem, calc(8rem + env(safe-area-inset-bottom)));
  }

  body {
    padding-inline: 0.58rem;
  }

  .topbar {
    top: 0.45rem;
    border-radius: 14px;
    padding: 0.54rem 0.62rem;
    gap: 0.38rem;
    background: rgba(9, 9, 9, 0.92);
    backdrop-filter: blur(12px) saturate(116%);
  }

  .brand-scuff-logo {
    height: 13px;
  }

  .topbar-actions {
    gap: 0.36rem;
  }

  .topbar-actions .text-btn {
    padding: 0.46rem 0.72rem;
    font-size: 0.86rem;
    font-weight: 620;
  }

  .mobile-app-nav {
    bottom: env(safe-area-inset-bottom);
    padding: 0.06rem;
    gap: 0.1rem;
    border-radius: 12px;
  }

  .mobile-app-nav a.mobile-nav-item {
    gap: 0;
    padding: 0.2rem 0.2rem;
    font-size: 0.74rem;
    border-radius: 10px;
    min-height: 36px;
  }

  .mobile-nav-item .mobile-nav-icon {
    display: none;
  }

  .icon-btn {
    width: 34px;
    height: 34px;
  }

  .auth-modal {
    padding: 0;
  }

  .shell {
    width: 100%;
  }

  .section:not(.cronoview-section):not(.magic) {
    border-radius: 18px;
    padding: 0.92rem;
  }

  .hero-copy {
    border-radius: 24px;
    padding: 0.98rem;
  }

  .hero-canvas {
    gap: 0.92rem;
  }

  .lede {
    margin-top: 1.02rem;
    font-size: 1.06rem;
    line-height: 1.68;
  }

  h1 {
    font-size: clamp(1.82rem, 12vw, 2.58rem);
    line-height: 0.94;
  }

  .search-tray {
    --search-open-width: clamp(155px, 54vw, 210px);
  }

  .search-tray input {
    padding: 0.52rem 0.74rem;
  }

  .filter-reset-btn {
    width: 100%;
  }

  .spotlight-row,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .side-column {
    grid-template-columns: 1fr;
  }

  .mobile-app-nav {
    background: rgba(8, 8, 8, 0.86);
    border-color: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px) saturate(130%);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.44);
  }

  .cronoview-shell {
    border-radius: 16px;
    padding: 0.72rem;
  }

  .cronoview-headline {
    font-size: 1.95rem;
  }

  .cronoview-day-title {
    font-size: 1.34rem;
  }

  .cronoview-item {
    gap: 0.34rem;
    align-items: flex-start;
  }

  .cronoview-hit {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 0.58rem;
  }

  .cronoview-cover {
    width: 64px;
    height: 64px;
  }

  .cronoview-live-pill {
    font-size: 0.74rem;
    min-height: 18px;
  }

  .cronoview-favorite-btn,
  .cronoview-video-btn {
    width: 34px;
    height: 34px;
  }

  .cronoview-favorite-btn svg,
  .cronoview-video-btn svg {
    width: 22px;
    height: 22px;
  }

  .scope-switch-menu {
    padding: 0.58rem;
  }

  .scope-menu-item {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 0.56rem;
    padding: 0.4rem 0.44rem;
  }

  .scope-menu-item img {
    width: 52px;
    height: 38px;
  }

  .section-head {
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.82rem;
  }

  .section-head h2 {
    font-size: 1.12rem;
  }

  .section-head > .muted {
    font-size: 0.74rem;
    padding: 0.3rem 0.56rem;
  }

  .empty-state {
    min-height: 62px;
    font-size: 0.98rem;
    padding: 0.9rem 0.96rem;
  }

  .entry-intel-list > p.muted.tiny,
  .queue-heat-list > p.muted.tiny,
  .door-rush-list > p.muted.tiny,
  .value-drop-list > p.muted.tiny,
  .stability-lane-list > p.muted.tiny,
  .surge-watch-list > p.muted.tiny,
  .budget-scout-list > p.muted.tiny,
  .quick-brief-list > p.muted.tiny,
  .deal-radar-list > p.muted.tiny,
  .rebound-radar-list > p.muted.tiny,
  .scarcity-runway-list > p.muted.tiny,
  .signal-compare-list > p.muted.tiny,
  .fomo-planner-list > p.muted.tiny,
  .crew-planner-list > p.muted.tiny,
  .crew-budget-list > p.muted.tiny,
  .venue-momentum-list > p.muted.tiny,
  .gate-strategy-list > p.muted.tiny,
  .night-stack-list > p.muted.tiny,
  .saved-pulse-list > p.muted.tiny {
    min-height: 56px;
    font-size: 0.84rem;
  }

  .quick-brief-kpis {
    grid-template-columns: 1fr;
  }

  .hero-spotlight > .muted {
    min-height: 108px;
    font-size: 0.91rem;
    border-radius: 16px;
  }

  .section:not(.cronoview-section):not(.magic)::after {
    top: 12px;
    bottom: 12px;
  }

  .inline-sort-control {
    width: 100%;
  }

  .venue-search-panel {
    padding: 0.62rem;
  }

  .venue-card {
    border-radius: 17px;
  }

  .venue-card-cover {
    min-height: 118px;
  }

  .venue-card-head,
  .venue-events-list {
    padding-inline: 0.68rem;
  }

  .spotlight-item {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .friend-matches {
    grid-template-columns: 1fr;
  }

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

  .suggestion-actions {
    justify-content: flex-start;
  }

  .auth-inline-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .otp-header-avatar {
    width: 64px;
    height: 64px;
    margin-top: 0.65rem;
  }

  .auth-identity-orbit {
    width: 112px;
  }

  .auth-identity-orbit-text {
    font-size: 7.4px;
  }

  .auth-identity-core {
    width: 70px;
    height: 70px;
  }

  .auth-identity-core-label {
    max-width: 60px;
    font-size: 0.5rem;
    letter-spacing: 0.14em;
  }

  .otp-slots {
    gap: 0.42rem;
  }

  .otp-slot {
    height: 60px;
    font-size: 1.7rem;
    border-radius: 12px;
  }

  .magic-popup {
    padding: 0.82rem;
    border-radius: 18px;
  }

  .magic-popup-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .auth-shell {
    width: 100vw;
    height: 100dvh;
    margin: 0;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  .auth-visual {
    min-height: 34vh;
  }

  .auth-heading {
    gap: 0.32rem;
  }

  .auth-kicker {
    font-size: 0.6rem;
  }

  .auth-heading h3 {
    line-height: 0.97;
  }

  .onboarding-intro {
    padding: 0.66rem 0.72rem;
    font-size: 0.83rem;
  }

  .onboarding-step {
    border-radius: 16px;
    padding: 0.76rem;
  }

  .onboarding-handle-form {
    padding: 0.62rem;
    margin-top: 0.58rem;
  }

  .flow-steps {
    gap: 0.38rem;
  }

  .ig-return-avatar-wrap {
    width: 152px;
  }

  .ig-return-message {
    font-size: 0.78rem;
  }
}

/* Event + partner pages keep shared atoms */

body.page-event {
  --event-bg-image: url('assets/events/event_2.jpg');
  background: #050505;
}

body.page-event::before {
  content: '';
  position: fixed;
  inset: -10%;
  z-index: -3;
  pointer-events: none;
  background-image: var(--event-bg-image);
  background-size: cover;
  background-position: center;
  filter: blur(84px) saturate(1.25) contrast(1.05);
  transform: scale(1.18);
  opacity: 0.9;
}

body.page-event::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(54% 45% at 50% -8%, rgba(11, 11, 13, 0.24) 0%, rgba(11, 11, 13, 0) 74%),
    linear-gradient(180deg, rgba(6, 6, 8, 0.58) 0%, rgba(7, 7, 8, 0.74) 46%, rgba(4, 4, 5, 0.92) 78%, rgba(3, 3, 3, 0.98) 100%);
}

body.page-event .topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.82rem;
  border-radius: 18px;
  border-color: rgba(255, 255, 255, 0.19);
  background: rgba(9, 9, 12, 0.76);
  padding: 0.56rem 0.68rem;
}

.event-topbar-left {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  min-width: 0;
}

.event-chevron-back {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--motion-fast) var(--motion-curve-fluid), border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.event-chevron-back:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.event-chevron-back svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.event-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.event-venue-top-logo,
.event-venue-top-fallback {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  flex: 0 0 auto;
}

.event-venue-top-logo {
  display: block;
  object-fit: cover;
}

.event-venue-top-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.event-brand-divider {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 550;
  line-height: 1;
}

.event-scuff-top-logo {
  height: 13px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.event-profile-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.23);
  background: rgba(255, 255, 255, 0.04);
}

.event-profile-btn.auth-chip {
  padding-left: 0;
  padding-right: 0;
}

body.page-event .event-profile-btn .auth-avatar {
  width: 100%;
  height: 100%;
  border: 0;
}

.event-search {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(33, 33, 36, 0.86);
  padding: 0.56rem 0.74rem;
}

.event-search svg {
  width: 17px;
  height: 17px;
  fill: rgba(255, 255, 255, 0.66);
  flex: 0 0 auto;
}

.event-search input {
  border: 0;
  background: transparent;
  padding: 0;
  min-width: 0;
  color: #efefef;
  font-size: 0.92rem;
}

.event-search input:focus {
  box-shadow: none;
  transform: none;
}

.event-top-links {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.event-top-link {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: color var(--motion-fast) ease;
}

.event-top-link:hover {
  color: #fff;
}

body.page-event .topbar-actions .text-btn,
body.page-event .topbar-actions .outline-btn,
body.page-event .topbar-actions .link-btn {
  height: 37px;
  border-radius: 999px;
  padding: 0 0.9rem;
}

.event-app-btn {
  height: 37px;
  border-radius: 999px;
  padding: 0 1rem;
  border: 0;
  background: #f3f3f3;
  color: #111;
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body.page-event .event-app-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.flow-step {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.34rem 0.66rem;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.flow-step.active {
  color: #080808;
  background: #ececec;
  border-color: transparent;
}

.event-layout {
  margin-top: clamp(1.08rem, 2.5vw, 1.7rem);
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 2.2rem);
  align-items: start;
}

body.page-event .event-layout > .empty-state {
  grid-column: 1 / -1;
}

.event-main {
  display: grid;
  align-content: start;
}

.event-left-stack {
  position: sticky;
  top: 5.2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 8, 9, 0.64);
}

.event-poster-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.event-poster-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.event-left-meta {
  padding: 0.9rem 0.9rem 1rem;
  display: grid;
  gap: 0.52rem;
}

.event-left-kicker {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.event-left-track {
  margin: 0;
  line-height: 1.32;
  font-size: 1rem;
}

.event-left-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.18);
}

.event-code-link {
  justify-self: start;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}

.event-stage {
  display: grid;
  gap: 1.18rem;
  align-content: start;
}

.event-head {
  padding: 0;
  border: 0;
  background: transparent;
}

.event-head-grid {
  display: block;
}

.event-head-copy {
  min-width: 0;
}

.event-mobile-poster-wrap {
  display: none;
}

.event-mobile-poster-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 12, 14, 0.6);
}

.event-head h1 {
  margin: 0;
  font-size: clamp(2.24rem, 6vw, 5.6rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 14ch;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.55);
}

.event-venue-line {
  margin: 0.72rem 0 0;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.48);
}

.event-date-line {
  margin: 0.16rem 0 0;
  color: #e9db4f;
  font-size: clamp(1.06rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.54);
}

.tag-row {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.tag {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.24rem 0.56rem;
  font-size: 0.78rem;
  color: #e1e1e1;
  background: rgba(255, 255, 255, 0.05);
}

.tag-row .availability-pill {
  font-size: 0.78rem;
}

.event-price-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 0.86rem 0.98rem;
  background: rgba(14, 14, 16, 0.9);
}

.event-price-copy {
  min-width: 0;
}

.event-price-value {
  margin: 0;
  font-size: clamp(1.72rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.event-price-note {
  margin: 0.2rem 0 0;
  line-height: 1.36;
}

.event-price-note.error {
  color: #ff9090;
}

.event-surge-ticker {
  margin-top: 0.46rem;
  padding: 0.56rem 0.64rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  position: relative;
  overflow: hidden;
}

.event-surge-ticker::before {
  content: '';
  position: absolute;
  inset: -60% -20%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.08) 48%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  transform: none;
}

.event-surge-ticker::after {
  content: '';
  position: absolute;
  inset: -40% -10% auto;
  height: 140%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.11), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-55%);
  transition: opacity 240ms ease, transform 360ms ease;
}

.event-surge-ticker.is-rising {
  border-color: rgba(111, 255, 155, 0.28);
  box-shadow: 0 0 0 1px rgba(111, 255, 155, 0.07);
  background: rgba(37, 94, 60, 0.18);
  transform: none;
}

.event-surge-ticker.is-falling {
  border-color: rgba(255, 197, 129, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 197, 129, 0.07);
  background: rgba(104, 69, 27, 0.16);
  transform: none;
}

.event-surge-ticker.is-rising::before {
  opacity: 0.18;
  animation: none;
}

.event-surge-ticker.is-falling::before {
  opacity: 0.18;
  animation: none;
}

.event-surge-ticker.tick-pulse::after {
  opacity: 1;
  transform: translateY(0%);
}

.event-surge-price-row {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0;
}

.event-surge-price-main {
  font-size: 1.36rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f3f3f3;
  font-variant-numeric: tabular-nums;
  text-shadow: none;
}

.event-surge-price-main.move-up {
  animation: surgeMainUp 340ms cubic-bezier(0.22, 1, 0.36, 1) 1;
}

.event-surge-price-main.move-down {
  animation: surgeMainDown 340ms cubic-bezier(0.22, 1, 0.36, 1) 1;
}

.event-surge-price-digit {
  font-size: 1.04rem;
  font-weight: 900;
  margin-left: 0.04rem;
  line-height: 1;
  transform-origin: center;
  border-radius: 7px;
  padding: 0.08rem 0.24rem;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.event-surge-price-digit.rising {
  color: #0c2c17;
  background: rgba(123, 255, 172, 0.88);
  box-shadow: none;
}

.event-surge-price-digit.falling {
  color: #3f2408;
  background: rgba(255, 191, 118, 0.86);
  box-shadow: none;
}

.event-surge-meta {
  margin-top: 0.32rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
}

.event-surge-chip,
.event-surge-trend-pill {
  border-radius: 999px;
  font-size: 0.67rem;
  line-height: 1;
  padding: 0.3rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #d7d7d7;
  background: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.event-surge-trend-pill {
  color: #111;
  background: rgba(207, 207, 207, 0.95);
}

.event-surge-ticker.is-rising .event-surge-trend-pill {
  background: #6eff98;
  animation: none;
}

.event-surge-ticker.is-falling .event-surge-trend-pill {
  background: #ffbf76;
  animation: none;
}

.event-surge-chip.velocity {
  color: #111;
  background: rgba(255, 248, 214, 0.92);
  border-color: rgba(255, 239, 176, 0.66);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: none;
}

.event-surge-flow {
  margin-top: 0.34rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.44rem;
  align-items: end;
}

.event-surge-final-row {
  margin-top: 0.34rem;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.event-surge-final-label {
  font-size: 0.61rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(233, 233, 233, 0.78);
  font-weight: 800;
}

.event-surge-final-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #fafafa;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 0.22rem 0.46rem;
  text-shadow: none;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease, transform 200ms ease;
}

.event-surge-final-price.rising {
  background: rgba(109, 255, 160, 0.42);
  border-color: rgba(109, 255, 160, 0.64);
  color: #03150a;
}

.event-surge-final-price.falling {
  background: rgba(255, 197, 129, 0.4);
  border-color: rgba(255, 197, 129, 0.62);
  color: #2b1906;
}

.event-surge-final-price.pulse {
  animation: surgeFinalPulse 280ms ease-out 1;
}

.event-surge-delta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #ebebeb;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.34rem;
  line-height: 1.1;
}

.event-surge-delta.rising {
  background: rgba(111, 255, 155, 0.24);
  border-color: rgba(111, 255, 155, 0.52);
  color: #c4ffd9;
}

.event-surge-delta.falling {
  background: rgba(255, 197, 129, 0.24);
  border-color: rgba(255, 197, 129, 0.52);
  color: #ffe2bf;
}

.event-surge-delta.rising:not(.pulse) {
  animation: surgeDeltaDriftUp 1.25s ease-in-out infinite alternate;
}

.event-surge-delta.falling:not(.pulse) {
  animation: surgeDeltaDriftDown 1.25s ease-in-out infinite alternate;
}

.event-surge-delta.pulse {
  animation: surgeDeltaPulse 240ms ease-out 1;
}

.event-surge-trail {
  min-width: 0;
  height: 24px;
  display: grid;
  grid-template-columns: repeat(18, minmax(0, 1fr));
  gap: 2px;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.event-surge-trail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-120%);
  animation: none;
  pointer-events: none;
}

.event-surge-ticker.is-falling .event-surge-trail::after {
  animation-direction: reverse;
}

.event-surge-trail-bar {
  display: block;
  min-height: 3px;
  border-radius: 3px 3px 1px 1px;
  opacity: 0.48;
  background: linear-gradient(180deg, rgba(235, 235, 235, 0.96), rgba(235, 235, 235, 0.3));
  transform-origin: bottom;
  transition: height 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease, background 200ms ease;
  animation: surgeTrailBarIn 220ms ease-out 1;
}

.event-surge-trail-bar.latest {
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
  animation: surgeTrailBarIn 220ms ease-out 1;
}

.event-surge-trail-bar.rising {
  background: linear-gradient(180deg, rgba(108, 255, 155, 0.98), rgba(70, 198, 111, 0.38));
}

.event-surge-trail-bar.falling {
  background: linear-gradient(180deg, rgba(255, 192, 122, 0.98), rgba(197, 121, 39, 0.35));
}

.event-surge-price-digit.pulse {
  animation: surgeDigitPulse 210ms ease-out 1;
}

.event-surge-sync,
.event-surge-explain {
  margin-top: 0.18rem;
  line-height: 1.32;
  letter-spacing: 0.02em;
}

.event-surge-factors {
  margin-top: 0.34rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.34rem 0.56rem;
}

.event-surge-factor {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  min-width: 0;
}

.event-surge-factor > span {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(230, 230, 230, 0.78);
}

.event-surge-bar {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.event-surge-bar > span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f0f0f0, #f4f4f4);
  transition: width 320ms cubic-bezier(0.22, 1, 0.36, 1), background 220ms ease;
}

.event-surge-ticker.is-rising .event-surge-bar > span {
  background: linear-gradient(90deg, #47ee8d, #d0f5df);
  animation: surgeBarGlow 1.4s ease-in-out infinite;
}

.event-surge-ticker.is-falling .event-surge-bar > span {
  background: linear-gradient(90deg, #ffb66b, #f8dfbf);
  animation: surgeBarGlow 1.55s ease-in-out infinite;
}

@keyframes surgeSweep {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes surgeTrendBeat {
  0% {
    transform: scale(1);
  }
  55% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes surgeMainUp {
  0% {
    transform: translateY(9px);
    opacity: 0.45;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes surgeMainDown {
  0% {
    transform: translateY(-9px);
    opacity: 0.45;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

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

@keyframes surgeTrailLatestBlink {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.28);
  }
  100% {
    filter: brightness(1);
  }
}

@keyframes surgeDeltaDriftUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-2px);
  }
}

@keyframes surgeDeltaDriftDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(2px);
  }
}

@keyframes surgeBarGlow {
  0% {
    filter: brightness(0.95);
  }
  55% {
    filter: brightness(1.16);
  }
  100% {
    filter: brightness(1);
  }
}

@keyframes surgeDigitPulse {
  0% {
    transform: scale(0.75);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.18);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes surgeVelocityChip {
  0% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-1px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes surgeFinalPulse {
  0% {
    transform: scale(0.82);
    opacity: 0.6;
  }
  68% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes surgeTrailBarIn {
  0% {
    transform: scaleY(0.24);
    opacity: 0.2;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes surgeDeltaPulse {
  0% {
    transform: scale(0.86);
    opacity: 0.56;
  }
  68% {
    transform: scale(1.06);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.event-buy-btn {
  margin: 0;
  min-width: 126px;
  border: 0;
  border-radius: 999px;
  background: #e4ea38;
  color: #111;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(228, 234, 56, 0.32);
}

body.page-event .event-buy-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(228, 234, 56, 0.4);
}

body.page-event .event-buy-btn:disabled {
  opacity: 0.56;
  box-shadow: none;
}

.event-copy {
  display: grid;
  gap: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1.08rem;
}

.event-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  letter-spacing: -0.03em;
}

.event-copy p {
  margin: 0;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.68rem;
}

body.page-event #eventDescription {
  line-height: 1.62;
}

.meta-grid p {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  padding: 0.52rem 0.62rem;
  background: rgba(255, 255, 255, 0.03);
  line-height: 1.35;
}

body.page-event #partnerLinkWrap {
  margin-top: 0.15rem;
  line-height: 1.42;
}

.event-order-details {
  margin-top: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 0.72rem 0.8rem 0.82rem;
  background: rgba(10, 10, 12, 0.62);
}

.event-order-details summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-order-details summary::-webkit-details-marker {
  display: none;
}

.event-order-details summary::after {
  content: '+';
  font-size: 1.3rem;
  line-height: 1;
}

.event-order-details[open] summary::after {
  content: '−';
}

.event-order-details > :not(summary) {
  margin-top: 0.7rem;
}

.tier-list {
  display: grid;
  gap: 0.5rem;
}

.tier-group {
  display: grid;
  gap: 0.46rem;
}

.tier-group + .tier-group {
  margin-top: 0.34rem;
}

.tier-group-title {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b9b9b9;
}

.tier-group-list {
  display: grid;
  gap: 0.5rem;
}

.tier-row {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.74rem 0.76rem;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
}

.tier-row.active {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.tier-row.disabled {
  opacity: 0.58;
}

.tier-row-name {
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.tier-row-meta {
  display: grid;
  justify-items: end;
  gap: 0.5rem;
}

.tier-row-meta .availability-pill {
  justify-self: end;
}

.qty-stepper {
  border: 1px solid var(--line);
  border-radius: 999px;
  min-width: 108px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.3rem;
  background: rgba(255, 255, 255, 0.02);
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 0;
  font-size: 1.08rem;
  line-height: 1;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.qty-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
}

.qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.tier {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  text-align: left;
}

.tier.active {
  border-color: #eee;
  background: rgba(255, 255, 255, 0.08);
}

.tier-head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.account-toggle {
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px dashed var(--line);
}

.account-toggle p {
  margin: 0.14rem 0 0;
}

body.page-event .account-toggle {
  margin-top: 1.02rem;
  padding-top: 0.92rem;
  align-items: flex-start;
}

body.page-event .account-toggle p {
  margin: 0.3rem 0 0;
  line-height: 1.24;
  max-width: 22ch;
}

.pill-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  min-width: 86px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
}

.pill-toggle[aria-pressed='true'] {
  background: #ececec;
  color: #0a0a0a;
  border-color: transparent;
}

.qty-input {
  max-width: 86px;
  text-align: center;
  font-weight: 650;
}

body.page-event .qty-input {
  height: 56px;
  font-size: 1.24rem;
}

.breakdown {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.4rem;
}

.breakdown p {
  margin: 0;
  display: flex;
  justify-content: space-between;
}

body.page-event .breakdown {
  margin-top: 0.94rem;
  gap: 0.56rem;
}

body.page-event .breakdown p {
  align-items: baseline;
  line-height: 1.36;
}

.breakdown p.total {
  border-top: 1px solid var(--line);
  padding-top: 0.45rem;
  font-weight: 700;
}

body.page-event .breakdown p.total {
  padding-top: 0.68rem;
}

.provider-state {
  margin-top: 0.8rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

body.page-event .provider-state {
  margin-top: 0.94rem;
  padding: 0.8rem 0.9rem;
  line-height: 1.42;
  border-radius: 14px;
}

body.page-event.checkout-modal-open,
body.page-checkout.checkout-modal-open {
  overflow: hidden;
}

body.page-event .embedded-checkout,
body.page-checkout .embedded-checkout {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.embedded-checkout__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 8, 0.62);
  backdrop-filter: blur(14px) saturate(110%);
}

.embedded-checkout__sheet {
  position: relative;
  width: min(640px, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(14, 15, 20, 0.86);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.58);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.embedded-checkout__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding-bottom: 0.58rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.embedded-checkout__title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  color: #f4f4f6;
}

.embedded-checkout__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
}

.embedded-checkout__brand-logo {
  display: block;
  height: 17px;
  width: auto;
  filter: brightness(0) invert(1);
}

.embedded-checkout__brand-separator {
  color: rgba(236, 236, 236, 0.62);
  font-weight: 540;
}

.embedded-checkout__brand-revolut {
  color: rgba(244, 244, 246, 0.96);
}

.embedded-checkout__close {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(241, 241, 244, 0.94);
  font-size: 0.78rem;
  font-weight: 620;
  line-height: 1;
  padding: 0.42rem 0.7rem;
}

.embedded-checkout__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

body.page-event .embedded-checkout p,
body.page-checkout .embedded-checkout p {
  margin: 0;
  line-height: 1.4;
}

body.page-event .revolut-card-field,
body.page-checkout .revolut-card-field {
  flex: 1 1 auto;
  min-height: 0;
  max-width: 100%;
  min-height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0.44rem;
  background: #ffffff;
  overflow: auto;
  overscroll-behavior: contain;
}

body.page-event .revolut-card-field iframe,
body.page-checkout .revolut-card-field iframe {
  background: #ffffff !important;
  border-radius: 10px;
  width: 100% !important;
  max-width: 100% !important;
  display: block;
}

@media (max-width: 700px) {
  .embedded-checkout__sheet {
    width: calc(100vw - 1rem);
    max-height: calc(100dvh - 1rem);
    border-radius: 14px;
    padding: 0.8rem;
  }

  .embedded-checkout__header {
    padding-bottom: 0.5rem;
  }
}

body.page-event .revolut-card-field.rc-card-field--focused,
body.page-checkout .revolut-card-field.rc-card-field--focused {
  border-color: rgba(255, 255, 255, 0.42);
}

body.page-event .revolut-card-field.rc-card-field--invalid,
body.page-checkout .revolut-card-field.rc-card-field--invalid {
  border-color: rgba(255, 95, 95, 0.7);
}

body.page-event #submitEmbeddedCheckoutBtn,
body.page-checkout #submitEmbeddedCheckoutBtn,
body.page-checkout #submitPaymentBtn {
  margin-top: 0.1rem;
}

body.page-event #checkoutHint {
  margin-top: 0.65rem;
  line-height: 1.48;
}

.venue-spotlight {
  display: grid;
  gap: 0.62rem;
}

body.page-event .venue-spotlight {
  margin-top: 0.34rem;
  gap: 0.62rem;
}

.venue-spotlight .venue-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  padding: 0.62rem 0.72rem;
  background: rgba(255, 255, 255, 0.03);
}

body.page-event .venue-spotlight .venue-row {
  align-items: center;
  line-height: 1.42;
}

.venue-spotlight .venue-row span:last-child {
  color: var(--muted);
  text-align: left;
}

body.page-event #mutualFriendsWrap {
  margin-top: 0.58rem;
  line-height: 1.5;
}

body.page-checkout .topbar {
  grid-template-columns: auto 1fr;
}

body.page-checkout .topbar-actions {
  justify-self: end;
}

.checkout-layout {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 1.1rem;
  align-items: start;
}

.checkout-main {
  display: grid;
  gap: 0.88rem;
}

.checkout-side .panel {
  position: sticky;
  top: 5.15rem;
}

.checkout-event-head p {
  margin: 0;
}

.checkout-event-head #checkoutEventDate {
  margin-bottom: 0.34rem;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
}

.checkout-event-head h1 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.checkout-builder h2 {
  margin-bottom: 0.86rem;
}

.information-required-panel {
  margin-top: 0.82rem;
  margin-bottom: 0.82rem;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.information-required-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}

.information-required-head h3 {
  margin: 0;
  font-size: 0.95rem;
}

.information-required-panel > p {
  margin: 0.46rem 0 0.58rem;
}

.information-required-fields {
  display: grid;
  gap: 0.46rem;
}

.information-required-field label {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.information-required-field .text-input {
  width: 100%;
}

.information-required-field.required label::after {
  content: ' *';
  color: #ff7676;
}

.promo-row {
  margin-top: 0.82rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.48rem;
}

.text-input {
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0 0.76rem;
  font: inherit;
  transition: border-color var(--motion-mid) var(--motion-curve-fluid), box-shadow var(--motion-mid) var(--motion-curve-fluid),
    background var(--motion-mid) ease, transform var(--motion-fast) var(--motion-curve-fluid);
}

.text-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.text-input.is-typing {
  animation: inputPulse 360ms var(--motion-curve-fluid) 1;
}

body.page-checkout #promoStatus {
  margin-top: 0.58rem;
  line-height: 1.4;
}

body.page-checkout #startPaymentBtn {
  margin-top: 0.9rem;
}

@media (max-width: 640px) {
  body.page-checkout .topbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  body.page-checkout .topbar-actions {
    justify-self: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.4rem;
  }
}

@media (max-width: 1080px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-side .panel {
    position: static;
    top: auto;
  }
}

.partner-hero {
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1rem, 2.6vw, 1.8rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.partner-hero + #partnerEventsSection {
  margin-top: clamp(1rem, 2.4vw, 1.5rem);
}

.partner-hero.is-not-found {
  grid-template-columns: minmax(0, 1fr);
}

.partner-hero.is-not-found h1 {
  max-width: 12ch;
}

.partner-hero.is-not-found .solid-btn {
  margin-top: 0.55rem;
}

.partner-logo-wrap {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
}

.partner-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.page-partner.is-embed {
  padding: 0;
}

body.page-partner.is-embed .bg-grid {
  display: none;
}

body.page-partner.is-embed .shell {
  width: 100%;
  max-width: none;
  margin: 0;
}

body.page-partner.is-embed .topbar {
  display: none;
}

body.page-partner.is-embed main.shell {
  padding: 0.78rem;
}

body.page-partner.is-embed.hide-padding main.shell {
  padding: 0;
}

body.page-partner.is-embed.hide-cover .partner-hero {
  display: none;
}

body.page-partner.is-embed.hide-padding .partner-hero {
  margin-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

body.page-partner.is-embed.hide-padding #partnerEventsSection {
  padding: 0;
}

body.page-partner.is-embed.hide-padding #partnerEventsSection .event-card {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

body.page-partner.is-embed.hide-padding #partnerEventsHead {
  padding: 0.78rem;
  margin: 0;
}

body.page-partner.is-embed.hide-calendar #partnerEventsHead {
  display: none;
}

body.page-partner.theme-light {
  --bg: #f5f5f8;
  --bg-2: #fcfcfd;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-2: rgba(255, 255, 255, 0.9);
  --line: rgba(12, 12, 12, 0.12);
  --line-strong: rgba(12, 12, 12, 0.22);
  --text: #121212;
  --muted: #595959;
  --accent: #121212;
  --accent-dark: #ffffff;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.88) 0%, transparent 33%),
    radial-gradient(circle at 88% 86%, rgba(235, 235, 240, 0.82) 0%, transparent 36%),
    linear-gradient(180deg, #fafafa, #f4f4f7 36%, #f0f0f3);
}

body.page-partner.theme-light .topbar {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(12, 12, 12, 0.14);
}

body.page-partner.theme-light .partner-hero {
  background: rgba(255, 255, 255, 0.66);
}

body.page-partner.theme-light .partner-logo-wrap {
  background: rgba(255, 255, 255, 0.92);
}

body.page-partner.theme-light .event-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 248, 0.94));
}

body.page-partner.theme-light .event-card .body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.64) 40%, rgba(255, 255, 255, 0.92) 100%);
}

body.page-partner.theme-light .price-chip {
  color: #3b3b3b;
}

.tickets-layout {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 1rem;
}

.tickets-list {
  display: grid;
  gap: 0.55rem;
}

#ticketsSyncStatus {
  margin: 0 0 0.72rem;
  min-height: 1.15rem;
}

.ticket-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
}

.ticket-card.active {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.ticket-card p {
  margin: 0.2rem 0 0;
}

.ticket-detail {
  align-self: start;
}

.ticket-qr-wrap {
  margin-top: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.8rem;
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
}

.ticket-qr-wrap img {
  width: min(230px, 100%);
  height: auto;
  border-radius: 12px;
  background: #fff;
}

.ticket-detail-grid {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.45rem;
}

.ticket-detail-grid p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
}

.ticket-detail-grid span {
  color: var(--muted);
}

.ticket-actions-row {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

#ticketsGate {
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}

#ticketsGate .ticket-actions-row {
  margin-top: 0;
}

#ticketsGate .solid-btn {
  white-space: nowrap;
  min-width: 96px;
}

@media (max-width: 1080px) {
  body.page-event .topbar {
    gap: 0.6rem;
  }

  .event-top-links {
    display: none;
  }

  .event-layout {
    grid-template-columns: 1fr;
  }

  .event-left-stack {
    position: static;
    top: auto;
  }

  .event-main {
    order: 2;
  }

  .event-stage {
    order: 1;
  }

  .tickets-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body.page-event .topbar {
    padding: 0.48rem 0.56rem;
  }

  .event-head-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(116px, 34vw, 156px);
    align-items: start;
    gap: 0.95rem;
  }

  .event-mobile-poster-wrap {
    display: block;
    align-self: start;
  }

  .event-poster-wrap {
    display: none;
  }

  .event-head h1 {
    max-width: none;
  }

  .event-price-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .event-buy-btn {
    width: 100%;
  }

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

  .event-surge-factors {
    grid-template-columns: 1fr;
  }

  .event-surge-flow {
    grid-template-columns: 1fr;
    gap: 0.32rem;
  }

  .event-surge-delta {
    justify-self: start;
  }

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

  #ticketsGate {
    flex-direction: column;
    align-items: stretch;
  }

  #ticketsGate .ticket-actions-row {
    width: 100%;
  }

  #ticketsGate .solid-btn {
    width: 100%;
  }
}

/* Discover page readability pass: simplify layout and add breathing room. */
body.page-discover {
  background:
    radial-gradient(140% 90% at 8% -10%, rgba(255, 255, 255, 0.09), transparent 48%),
    radial-gradient(120% 80% at 100% 0%, rgba(255, 209, 168, 0.08), transparent 45%),
    linear-gradient(180deg, #0d0d0d, #070707 38%, #050505 100%);
  letter-spacing: 0;
  line-height: 1.62;
  font-size: 16.4px;
}

body.page-discover .ambient,
body.page-discover .grid-noise {
  display: none;
}

body.page-discover .topbar {
  gap: 0.9rem;
  padding: 0.88rem 1.02rem;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
}

body.page-discover .topnav {
  gap: 0.62rem;
}

body.page-discover .section-nav a {
  font-size: 0.9rem;
  color: #e8e8e8;
}

body.page-discover .section-nav a.active {
  color: #101010;
  background: #f5f5f5;
  border-color: #f5f5f5;
}

body.page-discover .topnav a[href="#priceShieldLane"],
body.page-discover .topnav a[href="#surgeCooldown"],
body.page-discover .topnav a[href="#selloutClock"],
body.page-discover .topnav a[href="#savedPulse"],
body.page-discover .topnav a[href="#fomoPlanner"] {
  display: none;
}

body.page-discover .hero-canvas {
  gap: clamp(2.1rem, 3.6vw, 3.2rem);
}

body.page-discover .hero-copy {
  padding: clamp(1.8rem, 3.4vw, 2.8rem);
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.95), rgba(10, 10, 10, 0.94));
  backdrop-filter: blur(6px);
}

body.page-discover .hero-title {
  font-size: clamp(2.26rem, 7.3vw, 5.42rem);
  line-height: 0.88;
}

body.page-discover .lede {
  color: #e7e7e7;
  max-width: 58ch;
}

body.page-discover .section {
  margin-top: clamp(3.8rem, 6.4vw, 6.6rem);
}

body.page-discover .section:not(.cronoview-section):not(.magic) {
  border-radius: 20px;
  padding: clamp(1.6rem, 2.8vw, 2.5rem);
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(11, 11, 11, 0.94));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(5px);
}

body.page-discover .section:not(.cronoview-section):not(.magic)::before,
body.page-discover .section:not(.cronoview-section):not(.magic)::after {
  display: none;
}

body.page-discover .section-head {
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

body.page-discover .section-head h2 {
  margin: 0;
  font-size: clamp(1.16rem, 2.4vw, 1.54rem);
  color: #f5f5f5;
}

body.page-discover .section-head > .muted {
  padding: 0.38rem 0.74rem;
  border-color: rgba(255, 255, 255, 0.3);
  color: #ececec;
  background: rgba(14, 14, 14, 0.78);
}

body.page-discover .spotlight-row,
body.page-discover .events-grid,
body.page-discover .venues-grid,
body.page-discover .cronoview-list {
  gap: 1.34rem;
}

body.page-discover .event-card,
body.page-discover .panel,
body.page-discover .venue-card,
body.page-discover .spotlight-item {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.2);
  transition: transform 180ms var(--motion-curve-fluid), border-color 180ms ease, box-shadow 180ms ease;
}

body.page-discover .event-card:hover,
body.page-discover .panel:hover,
body.page-discover .venue-card:hover,
body.page-discover .spotlight-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

body.page-discover .event-card::before,
body.page-discover .event-card::after,
body.page-discover .event-card .body::before {
  display: none;
}

body.page-discover .event-card .body {
  gap: 1rem;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.7), rgba(9, 9, 9, 0.92));
}

body.page-discover .quick-brief-title,
body.page-discover .cronoview-headline {
  letter-spacing: 0.025em;
}

body.page-discover .quick-brief-lede,
body.page-discover .venue-momentum-panel > .muted {
  color: #e2e2e2;
}

body.page-discover .venue-search-panel {
  margin-bottom: 1.4rem;
  padding: 1.2rem;
}

body.page-discover #lastMinute,
body.page-discover #lockWindow,
body.page-discover #commitmentClock,
body.page-discover #pulseAtlas,
body.page-discover #dealRadar,
body.page-discover #reboundRadar,
body.page-discover #scarcityRunway,
body.page-discover #signalCompare,
body.page-discover #priceShieldLane,
body.page-discover #surgeCooldown,
body.page-discover #selloutClock,
body.page-discover #savedPulse,
body.page-discover #fomoPlanner,
body.page-discover .side-column {
  display: none !important;
}

@media (max-width: 920px) {
  body.page-discover {
    font-size: 16px;
  }

  body.page-discover .hero-copy {
    padding: 1rem;
    border-radius: 20px;
  }

  body.page-discover .hero-title {
    font-size: clamp(2.15rem, 11.2vw, 3.06rem);
    line-height: 0.9;
  }

  body.page-discover .section-head {
    margin-bottom: 1rem;
  }

  body.page-discover .section-head h2 {
    font-size: 1.08rem;
  }

  body.page-discover .section-head > .muted {
    font-size: 0.78rem;
  }

  body.page-discover .section:not(.cronoview-section):not(.magic) {
    padding: 1rem;
    border-radius: 16px;
  }

  body.page-discover .spotlight-row,
  body.page-discover .events-grid,
  body.page-discover .venues-grid,
  body.page-discover .cronoview-list {
    gap: 0.9rem;
  }

  body.page-discover .mobile-app-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
