@font-face {
  font-family: "IP Motel";
  src: url("/assets/fonts/bebas-neue-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: dark;
  --ink: #080713;
  --ink-soft: #121022;
  --asphalt: #171229;
  --cream: #fff1d6;
  --cream-muted: rgba(255, 241, 214, 0.7);
  --magenta: #ff0e68;
  --red: #e51b36;
  --violet: #8f3dd8;
  --pool: #10b7b9;
  --yellow: #ffc441;
  --motel-gold: #ffb11b;
  --coral: #ff7158;
  --peach: #ff9b79;
  --line: rgba(255, 241, 214, 0.18);
  --glass: rgba(10, 8, 20, 0.8);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Helvetica Neue Condensed Bold", sans-serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --script: "Snell Roundhand", "Segoe Script", cursive;
  --content-width: 1480px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 85% 18%, rgba(143, 61, 216, 0.14), transparent 30rem),
    var(--ink);
  font-family: var(--sans);
}

[hidden] {
  display: none !important;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

a:hover {
  color: var(--yellow);
}

button,
input {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-200%);
}

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.ambient__orb--one {
  top: -22vw;
  right: -14vw;
  width: 56vw;
  height: 56vw;
  background: radial-gradient(circle, rgba(255, 14, 104, 0.21), transparent 67%);
  animation: breathe 12s ease-in-out infinite alternate;
}

.ambient__orb--two {
  bottom: -28vw;
  left: -18vw;
  width: 64vw;
  height: 64vw;
  background: radial-gradient(circle, rgba(16, 183, 185, 0.15), transparent 68%);
  animation: breathe 16s 1.5s ease-in-out infinite alternate-reverse;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, black 35%, black 80%, transparent);
}

.ambient__grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  animation: grain 0.22s steps(2) infinite;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 30;
  display: flex;
  width: min(100% - 3rem, var(--content-width));
  min-height: 6.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  transform: translateX(-50%);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  color: var(--cream);
  font-family: "IP Motel", "Arial Narrow", Haettenschweiler, Impact, sans-serif;
  font-size: clamp(2.2rem, 2.9vw, 2.8rem);
  font-stretch: ultra-condensed;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.88;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark:hover {
  color: var(--cream);
}

.wordmark__porn {
  color: var(--magenta);
  -webkit-text-stroke: 1px rgba(255, 14, 104, 0.85);
  text-shadow: 0 0 0.32rem rgba(255, 14, 104, 0.8), 0 0 1.2rem rgba(255, 14, 104, 0.48);
}

.wordmark__dot {
  color: var(--cream);
}

.header__right {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 3vw, 2.8rem);
}

.availability {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  color: var(--cream-muted);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.availability i {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--pool);
  box-shadow: 0 0 1rem var(--pool);
  animation: pulse 2.6s ease-in-out infinite;
}

.adult-badge {
  display: grid;
  width: 2.5rem;
  aspect-ratio: 1;
  border: 1px solid var(--magenta);
  border-radius: 50%;
  place-items: center;
  color: var(--cream);
  font-size: 0.64rem;
  font-weight: 850;
  box-shadow: inset 0 0 1rem rgba(255, 14, 104, 0.08), 0 0 1rem rgba(255, 14, 104, 0.12);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.language-switcher span {
  color: var(--cream-muted);
}

.language-switcher button {
  padding: 0.4rem 0.2rem;
  border: 0;
  background: transparent;
  color: var(--cream-muted);
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: var(--pool);
  text-underline-offset: 0.38em;
}

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

.hero {
  --spotlight-x: 50%;
  --spotlight-y: 42%;
  position: relative;
  display: grid;
  min-height: max(800px, 100svh);
  padding: clamp(9rem, 15vh, 12rem) max(1.5rem, calc((100vw - var(--content-width)) / 2)) clamp(6rem, 9vh, 8rem);
  grid-template-columns: minmax(0, 1.06fr) minmax(23rem, 0.62fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
  isolation: isolate;
}

.hero__media,
.hero__media-layer,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
  overflow: hidden;
  background: var(--ink);
}

.hero__media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle 22rem at var(--spotlight-x) var(--spotlight-y), rgba(255, 196, 65, 0.09), transparent 64%),
    linear-gradient(112deg, transparent 36%, rgba(255, 14, 104, 0.06) 50%, transparent 63%);
  content: "";
  mix-blend-mode: screen;
  pointer-events: none;
  animation: sign-sweep 10s ease-in-out infinite alternate;
}

.hero__media-layer {
  inset: -2.5%;
}

.hero__artwork {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(1.08) contrast(1.03) brightness(0.9);
  transform: translate3d(-28%, 0, 0) scale(1.05);
  transform-origin: center;
}

.hero__veil {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 7, 19, 0.98) 0%, rgba(8, 7, 19, 0.9) 23%, rgba(8, 7, 19, 0.34) 50%, rgba(8, 7, 19, 0.25) 70%, rgba(8, 7, 19, 0.72) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 28%, rgba(8, 7, 19, 0.18) 100%);
}

.hero__stars {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.hero__stars i {
  position: absolute;
  display: block;
  width: var(--star-size, 0.6rem);
  aspect-ratio: 1;
  opacity: 0;
  background: var(--yellow);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
  filter: drop-shadow(0 0 0.7rem var(--yellow));
  animation: star-flash var(--star-speed, 6s) var(--star-delay, 0s) ease-in-out infinite;
}

.hero__stars i:nth-child(1) { --star-size: 0.82rem; --star-speed: 8s; --star-delay: -1s; left: 40%; top: 18%; }
.hero__stars i:nth-child(2) { --star-size: 0.42rem; --star-speed: 6.5s; --star-delay: -4s; left: 58%; top: 14%; }
.hero__stars i:nth-child(3) { --star-size: 0.62rem; --star-speed: 7.5s; --star-delay: -3s; right: 18%; top: 32%; }
.hero__stars i:nth-child(4) { --star-size: 0.4rem; --star-speed: 6s; --star-delay: -5s; right: 8%; top: 70%; }
.hero__stars i:nth-child(5) { --star-size: 0.52rem; --star-speed: 9s; --star-delay: -7s; left: 51%; bottom: 19%; }
.hero__stars i:nth-child(6) { --star-size: 0.32rem; --star-speed: 7s; --star-delay: -2s; left: 72%; bottom: 11%; }

.motel-status {
  fill: var(--cream);
  font-family: "IP Motel", "Arial Narrow", Haettenschweiler, Impact, sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 3px;
  paint-order: stroke fill;
  stroke: rgba(229, 27, 54, 0.58);
  stroke-width: 1px;
  filter: drop-shadow(0 0 4px var(--red)) drop-shadow(0 0 11px rgba(229, 27, 54, 0.9));
  animation: neon-flicker 8s steps(1) infinite;
}

.hero__content {
  position: relative;
  z-index: 5;
  align-self: center;
  max-width: 54rem;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  color: var(--cream-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero__eyebrow span:first-child {
  padding: 0.58rem 0.85rem;
  border: 1px solid var(--magenta);
  border-radius: 0.45rem;
  background: rgba(255, 14, 104, 0.1);
  color: var(--cream);
  box-shadow: 0 0 1rem rgba(255, 14, 104, 0.2), inset 0 0 1rem rgba(255, 14, 104, 0.08);
}

.hero__eyebrow i {
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--magenta), var(--pool));
  box-shadow: 0 0 0.7rem rgba(255, 14, 104, 0.55);
}

h1 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 9vw, 10rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.72;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 em,
.preview h2 em {
  color: var(--magenta);
  font-family: var(--script);
  font-style: italic;
  font-weight: 700;
  text-shadow: 0 0 1.8rem rgba(255, 14, 104, 0.35);
  text-transform: none;
}

h1 em {
  position: relative;
  display: block;
  margin-top: 0.18em;
  padding-left: 0.2em;
  font-size: 0.68em;
  letter-spacing: -0.07em;
}

h1 em::after {
  position: absolute;
  right: 0.18em;
  bottom: -0.08em;
  left: 0.2em;
  height: 0.055em;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--magenta) 16% 84%, transparent);
  box-shadow: 0 0 0.5em var(--magenta);
  content: "";
  transform: scaleX(0.72);
  animation: promise-glow 3.8s ease-in-out infinite;
}

.hero__tagline {
  margin: clamp(1.9rem, 3vw, 2.7rem) 0 0;
  color: var(--cream);
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1;
}

.hero__tagline strong {
  color: var(--coral);
  font-weight: 750;
}

.hero__intro {
  max-width: 42rem;
  margin: 1.35rem 0 0;
  color: var(--cream-muted);
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  line-height: 1.72;
}

.hero__assurances {
  display: flex;
  margin: 1.5rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
}

.hero__assurances li {
  display: flex;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(255, 241, 214, 0.15);
  border-radius: 999px;
  align-items: center;
  gap: 0.45rem;
  background: rgba(8, 7, 19, 0.4);
  color: var(--cream-muted);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero__assurances span:first-child {
  color: var(--pool);
}

.notify {
  position: relative;
  z-index: 6;
  width: min(100%, 31rem);
  margin-top: clamp(6rem, 12vh, 9rem);
  justify-self: end;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 241, 214, 0.24);
  border-radius: 1.2rem;
  background:
    linear-gradient(145deg, rgba(22, 16, 38, 0.94), rgba(8, 7, 19, 0.84)),
    var(--ink);
  box-shadow:
    0 2rem 7rem rgba(0, 0, 0, 0.48),
    0 0 3.5rem rgba(255, 14, 104, 0.09),
    inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(1.15);
}

.notify::before {
  position: absolute;
  inset: 0.5rem;
  border: 1px solid rgba(255, 14, 104, 0.18);
  border-radius: 0.85rem;
  content: "";
  pointer-events: none;
  animation: card-border 5.5s ease-in-out infinite;
}

.notify__room {
  position: absolute;
  top: 1.25rem;
  right: 1.35rem;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-shadow: 0 0 1rem rgba(255, 196, 65, 0.48);
}

.notify__view {
  position: relative;
  z-index: 1;
  animation: reveal 0.5s ease both;
}

.notify__eyebrow {
  margin: 0 0 1rem;
  color: var(--pool);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.notify h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.2vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.83;
  text-transform: uppercase;
}

.notify__copy {
  margin: 1.15rem 0 1.5rem;
  color: var(--cream-muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.notify__copy strong {
  color: var(--cream);
  overflow-wrap: anywhere;
}

.notify-form label,
.verify-form label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--cream-muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.notify-form__row {
  display: grid;
  gap: 0.72rem;
}

.notify-form input[type="email"],
.code-input {
  width: 100%;
  border: 1px solid rgba(255, 241, 214, 0.2);
  border-radius: 0.68rem;
  background: rgba(255, 255, 255, 0.07);
  color: var(--cream);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.notify-form input[type="email"] {
  height: 3.65rem;
  padding: 0 1.15rem;
}

.notify-form input::placeholder,
.code-input::placeholder {
  color: rgba(255, 241, 214, 0.34);
}

.notify-form input:focus,
.code-input:focus {
  border-color: var(--pool);
  outline: 0;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(16, 183, 185, 0.11), 0 0 1.5rem rgba(16, 183, 185, 0.08);
}

.notify-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 3.65rem;
  padding: 0.48rem 0.48rem 0.48rem 1.2rem;
  border: 0;
  border-radius: 0.68rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  overflow: hidden;
  background: linear-gradient(100deg, var(--magenta), var(--coral));
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0.8rem 2.2rem rgba(255, 14, 104, 0.22), 0 0 1.5rem rgba(255, 14, 104, 0.12);
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.notify-button::after {
  position: absolute;
  inset: -70% auto -70% -35%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(18deg);
  animation: button-shimmer 5.8s 1.2s ease-in-out infinite;
}

.notify-button i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  border-radius: 0.48rem;
  place-items: center;
  background: var(--ink);
  color: var(--cream);
  font-size: 1.1rem;
  font-style: normal;
  transition: transform 260ms ease;
}

.notify-button:hover:not(:disabled) {
  color: var(--ink);
  filter: saturate(1.1) brightness(1.04);
  box-shadow: 0 1rem 3rem rgba(255, 14, 104, 0.38);
  transform: translateY(-2px);
}

.notify-button:hover:not(:disabled) i {
  transform: translateX(2px) scale(1.05);
}

.notify-button:disabled {
  cursor: wait;
  filter: grayscale(0.3);
  opacity: 0.72;
}

.notify-button--confirm {
  margin-top: 0.75rem;
}

.code-input {
  height: 5rem;
  padding: 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 2.7rem);
  font-weight: 900;
  letter-spacing: 0.28em;
  text-align: center;
}

.form-status {
  min-height: 1.4em;
  margin: 0.75rem 0 0;
  color: var(--cream-muted);
  font-size: 0.77rem;
  line-height: 1.45;
}

.form-status[data-state="error"] {
  color: #ff9b8c;
}

.form-status[data-state="working"]::before {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.5rem;
  border: 1px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  animation: spin 0.65s linear infinite;
}

.privacy-note {
  margin-top: 1rem;
  color: rgba(255, 241, 214, 0.52);
  font-size: 0.7rem;
  line-height: 1.52;
}

.privacy-note summary {
  width: fit-content;
  cursor: pointer;
}

.privacy-note p {
  margin: 0.75rem 0 0;
}

.text-button {
  margin-top: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cream-muted);
  font-size: 0.72rem;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  cursor: pointer;
}

.complete-mark {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.4rem;
  border: 2px solid var(--pool);
  border-radius: 0.85rem;
  place-items: center;
  background: rgba(16, 183, 185, 0.12);
  color: var(--pool);
  font-size: 1.5rem;
  box-shadow: 0 0 2rem rgba(16, 183, 185, 0.3), inset 0 0 1.5rem rgba(16, 183, 185, 0.08);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: max(1.5rem, calc((100vw - var(--content-width)) / 2));
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream-muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue i {
  color: var(--pool);
  font-size: 1.1rem;
  font-style: normal;
  animation: nudge 1.8s ease-in-out infinite;
}

.neon-ticker {
  position: relative;
  z-index: 5;
  width: 100%;
  margin: -0.65rem 0 0;
  overflow: hidden;
  border-block: 2px solid var(--magenta);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 0 2rem rgba(255, 14, 104, 0.2);
}

.neon-ticker__track {
  display: flex;
  width: max-content;
  padding: 0.86rem 0;
  align-items: center;
  animation: ticker-scroll 22s linear infinite;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  white-space: nowrap;
}

.neon-ticker__set {
  display: flex;
  padding-right: 2.2rem;
  align-items: center;
  gap: 2.2rem;
}

.neon-ticker__track i {
  color: var(--magenta);
  font-size: 0.78rem;
  font-style: normal;
}

.preview {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100% - 3rem, var(--content-width));
  margin-inline: auto;
  padding: clamp(6rem, 12vw, 11rem) 0 clamp(6rem, 10vw, 9rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.55fr);
  gap: 2rem clamp(3rem, 9vw, 10rem);
}

.preview::before {
  position: absolute;
  top: 10%;
  right: -12%;
  width: 32rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 113, 88, 0.14), transparent 67%);
  content: "";
  pointer-events: none;
}

.section-label {
  display: flex;
  gap: 1.2rem;
  margin: 0 0 2rem;
  color: var(--cream-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-label span:first-child {
  color: var(--pool);
}

.preview h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7.8vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.76;
  text-transform: uppercase;
}

.preview h2 em {
  display: inline-block;
  margin-top: 0.2em;
  font-size: 0.56em;
  letter-spacing: -0.06em;
}

.preview__intro {
  align-self: end;
  max-width: 28rem;
  margin: 0 0 0.4rem;
  color: var(--cream-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.mystery-grid {
  display: grid;
  margin-top: clamp(4rem, 8vw, 7rem);
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2.4vw, 2rem);
}

.mystery-card {
  position: relative;
  display: flex;
  min-height: clamp(21rem, 29vw, 27rem);
  padding: clamp(1.4rem, 3vw, 2.45rem);
  border: 1px solid rgba(255, 241, 214, 0.15);
  border-radius: 1.15rem;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 14, 104, 0.12), transparent 34%),
    linear-gradient(150deg, rgba(24, 18, 43, 0.9), rgba(10, 8, 20, 0.72));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 2rem 5rem rgba(0, 0, 0, 0.17);
  isolation: isolate;
  transition: border-color 320ms ease, box-shadow 320ms ease, transform 320ms ease;
}

.mystery-card::before {
  position: absolute;
  inset: -40%;
  z-index: -1;
  background: conic-gradient(from 110deg, transparent 0 36%, rgba(16, 183, 185, 0.07) 42%, transparent 48% 100%);
  content: "";
  transition: transform 700ms ease;
}

.mystery-card:hover {
  border-color: rgba(255, 14, 104, 0.5);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 2rem 6rem rgba(255, 14, 104, 0.14);
  transform: translateY(-0.45rem);
}

.mystery-card:hover::before {
  transform: rotate(35deg);
}

.mystery-card__number {
  color: var(--pool);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.mystery-card__symbol {
  position: relative;
  display: block;
  width: clamp(7rem, 12vw, 10rem);
  height: clamp(7rem, 12vw, 10rem);
  margin: auto;
  transition: filter 320ms ease, transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.mystery-card:hover .mystery-card__symbol {
  filter: drop-shadow(0 0 1.4rem rgba(255, 14, 104, 0.35));
  transform: scale(1.06) rotate(-3deg);
}

.mystery-card--bell .mystery-card__symbol::before {
  position: absolute;
  top: 17%;
  left: 12%;
  width: 76%;
  height: 55%;
  border: 3px solid var(--yellow);
  border-radius: 6rem 6rem 0.7rem 0.7rem;
  background: radial-gradient(circle at 38% 22%, rgba(255, 241, 214, 0.64), rgba(255, 196, 65, 0.18) 33%, transparent 62%);
  box-shadow: 0 0 1.6rem rgba(255, 196, 65, 0.22), inset 0 0 1rem rgba(255, 196, 65, 0.12);
  content: "";
}

.mystery-card--bell .mystery-card__symbol::after {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 90%;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 1rem rgba(255, 196, 65, 0.65);
  content: "";
}

.mystery-card--bell .mystery-card__symbol i {
  position: absolute;
  top: 4%;
  left: 45%;
  width: 10%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 1rem rgba(255, 196, 65, 0.7);
}

.mystery-card--pool .mystery-card__symbol {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.mystery-card--pool .mystery-card__symbol i {
  display: block;
  width: 100%;
  height: 0.7rem;
  border: 2px solid var(--pool);
  border-top: 0;
  border-radius: 0 0 50% 50%;
  box-shadow: 0 0 1rem rgba(16, 183, 185, 0.35);
  transform: skewX(-22deg);
}

.mystery-card--key .mystery-card__symbol::before {
  position: absolute;
  top: 14%;
  left: 8%;
  width: 42%;
  aspect-ratio: 1;
  border: 0.7rem solid var(--magenta);
  border-radius: 50%;
  box-shadow: 0 0 1.2rem rgba(255, 14, 104, 0.5);
  content: "";
}

.mystery-card--key .mystery-card__symbol::after {
  position: absolute;
  top: 50%;
  left: 42%;
  width: 56%;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--magenta);
  box-shadow: 0 0 1rem rgba(255, 14, 104, 0.5);
  content: "";
  transform: rotate(-35deg);
  transform-origin: left center;
}

.mystery-card--key .mystery-card__symbol i::before,
.mystery-card--key .mystery-card__symbol i::after {
  position: absolute;
  right: 8%;
  bottom: 21%;
  width: 0.68rem;
  height: 1.8rem;
  background: var(--magenta);
  content: "";
  transform: rotate(55deg);
}

.mystery-card--key .mystery-card__symbol i::after {
  right: 19%;
  bottom: 13%;
}

.mystery-card h3 {
  max-width: 12ch;
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.6vw, 3.45rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.85;
  text-transform: uppercase;
}

.mystery-card p {
  max-width: 19rem;
  margin: 0;
  color: var(--cream-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  width: min(100% - 3rem, var(--content-width));
  min-height: 8rem;
  margin-inline: auto;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--cream-muted);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem;
}

.standalone-page {
  display: grid;
  min-height: 100svh;
  padding: clamp(1rem, 4vw, 3rem);
  place-items: center;
  background:
    linear-gradient(90deg, rgba(8, 7, 19, 0.96), rgba(8, 7, 19, 0.76)),
    url("/assets/neon-motel-hero-v2.webp") center / cover fixed,
    var(--ink);
}

.standalone-shell {
  display: grid;
  width: min(100%, 43rem);
  gap: 2rem;
}

.standalone-shell > .wordmark {
  width: fit-content;
}

.standalone-card {
  position: relative;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid rgba(255, 241, 214, 0.22);
  border-radius: 1.2rem;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(22, 16, 38, 0.96), rgba(8, 7, 19, 0.94));
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.5), 0 0 3rem rgba(255, 14, 104, 0.1), inset 0 1px rgba(255, 255, 255, 0.08);
}

.standalone-card::after {
  position: absolute;
  top: -7rem;
  right: -7rem;
  width: 14rem;
  height: 14rem;
  border: 2px solid rgba(255, 14, 104, 0.2);
  border-radius: 2rem;
  box-shadow: 0 0 5rem rgba(255, 14, 104, 0.1);
  content: "";
  pointer-events: none;
  transform: rotate(28deg);
}

.standalone-card h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 11vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.8;
  text-transform: uppercase;
}

.standalone-card > p:not(.notify__eyebrow) {
  max-width: 32rem;
  margin: 1.5rem 0 0;
  color: var(--cream-muted);
  line-height: 1.65;
}

.standalone-actions {
  display: grid;
  max-width: 24rem;
  margin-top: 2rem;
  gap: 0.7rem;
}

.standalone-actions .notify-button {
  text-decoration: none;
}

.standalone-actions .text-button {
  width: fit-content;
}

.standalone-shell footer {
  display: flex;
  gap: 1.2rem;
  color: var(--cream-muted);
  font-size: 0.7rem;
}

.notice {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 50;
  display: grid;
  width: min(calc(100% - 2.4rem), 42rem);
  padding: 1.2rem;
  border: 1px solid rgba(255, 241, 214, 0.2);
  border-radius: 0.9rem;
  background: rgba(10, 8, 20, 0.94);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.5), 0 0 2rem rgba(255, 14, 104, 0.08);
  backdrop-filter: blur(18px);
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
}

.notice__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--pool);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.notice h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.notice p:last-child {
  margin: 0.5rem 0 0;
  color: var(--cream-muted);
  font-size: 0.71rem;
  line-height: 1.45;
}

.notice button {
  min-height: 2.8rem;
  padding: 0 1.2rem;
  border: 0;
  border-radius: 0.55rem;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
}

@keyframes breathe {
  to { transform: scale(1.1) translate3d(2%, -2%, 0); }
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(2%, -3%); }
  50% { transform: translate(-3%, 2%); }
  75% { transform: translate(3%, 4%); }
  100% { transform: translate(-2%, -2%); }
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(0.8rem); }
}

@keyframes nudge {
  50% { transform: translateY(0.35rem); }
}

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

@keyframes pulse {
  50% { opacity: 0.45; transform: scale(0.72); }
}

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

@keyframes sign-sweep {
  from { opacity: 0.4; transform: translateX(-2%); }
  to { opacity: 0.9; transform: translateX(2%); }
}

@keyframes star-flash {
  0%, 100% { opacity: 0; transform: scale(0.45) rotate(0); }
  35%, 65% { opacity: 0.9; }
  50% { opacity: 1; transform: scale(1) rotate(90deg); }
}

@keyframes neon-flicker {
  0%, 7%, 10%, 13%, 70%, 73%, 100% { opacity: 1; }
  8%, 12%, 71% { opacity: 0.45; }
}

@keyframes promise-glow {
  50% { opacity: 0.58; transform: scaleX(1); }
}

@keyframes card-border {
  50% { border-color: rgba(16, 183, 185, 0.28); box-shadow: inset 0 0 2rem rgba(16, 183, 185, 0.04); }
}

@keyframes button-shimmer {
  0%, 62% { left: -35%; opacity: 0; }
  70% { opacity: 0.85; }
  88%, 100% { left: 120%; opacity: 0; }
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
    padding-top: 9.5rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__content {
    max-width: 46rem;
    padding-top: 5rem;
  }

  .hero__artwork {
    transform: translate3d(-5%, 0, 0) scale(1.1);
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(8, 7, 19, 0.96), rgba(8, 7, 19, 0.48) 75%, rgba(8, 7, 19, 0.72)),
      linear-gradient(0deg, var(--ink), transparent 48%);
  }

  .notify {
    width: min(100%, 39rem);
    margin-top: 0;
    justify-self: start;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 740px) {
  .site-header {
    width: calc(100% - 2rem);
    min-height: 5.4rem;
  }

  .wordmark {
    font-size: 1.55rem;
  }

  .availability,
  .adult-badge {
    display: none;
  }

  .hero {
    padding: 6.8rem 1rem 4.5rem;
  }

  .hero__content {
    padding-top: 8.5rem;
  }

  .hero__media-layer {
    inset: 0;
  }

  .hero__artwork {
    position: absolute;
    top: 0;
    left: 0;
    width: 220%;
    height: auto;
    max-width: none;
    transform: translate3d(-43%, 3.5rem, 0);
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(8, 7, 19, 0.9), rgba(8, 7, 19, 0.48)),
      linear-gradient(0deg, var(--ink) 2%, rgba(8, 7, 19, 0.25) 55%, rgba(8, 7, 19, 0.58));
  }

  .hero__stars i:nth-child(n+5) {
    display: none;
  }

  .hero__eyebrow {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hero__eyebrow i {
    display: none;
  }

  h1 {
    font-size: clamp(4.6rem, 23vw, 7rem);
  }

  h1 em {
    padding-left: 0;
  }

  .hero__assurances {
    gap: 0.45rem;
  }

  .hero__assurances li {
    font-size: 0.55rem;
  }

  .notify {
    padding: 1.35rem;
    border-radius: 1rem;
  }

  .preview {
    width: calc(100% - 2rem);
    padding-top: 6rem;
    grid-template-columns: 1fr;
  }

  .preview h2 {
    font-size: clamp(3.8rem, 19vw, 6rem);
  }

  .preview__intro {
    margin-top: 1rem;
  }

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

  .mystery-card {
    min-height: 19rem;
  }

  .mystery-card__symbol {
    width: 7.5rem;
    height: 7.5rem;
  }

  .neon-ticker__set {
    padding-right: 1.5rem;
    gap: 1.5rem;
  }

  .site-footer {
    width: calc(100% - 2rem);
    padding: 2rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    margin: 0;
  }

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

  .notice {
    right: 0.7rem;
    bottom: 0.7rem;
    width: calc(100% - 1.4rem);
    grid-template-columns: 1fr;
  }

  .notice button {
    width: 100%;
  }
}

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

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