/* ═══════════ layout primitives ═══════════ */
.wrap { max-width: 1060px; margin: 0 auto; }
section { position: relative; }
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head .eyebrow { margin-bottom: 14px; }
.sec-head h2 {
  font-family: var(--f-block);
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: 0.015em;
  color: var(--text);
  text-shadow: 0 0 26px rgba(255, 45, 149, 0.35);
}

/* ═══════════ buttons ═══════════ */
.glow-btn {
  display: inline-block;
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 8px;
  color: #FFF7FE;
  background: linear-gradient(135deg, var(--magenta), var(--violet));
  box-shadow: 0 4px 20px rgba(255, 45, 149, 0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.glow-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(255, 45, 149, 0.38); }
.glow-btn:active { transform: scale(0.96); }
.glow-btn.ghost {
  background: transparent;
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
  box-shadow: none;
}
.glow-btn.ghost:hover { background: rgba(0, 229, 255, 0.06); box-shadow: 0 6px 28px rgba(0, 229, 255, 0.14); }
.glow-btn:focus-visible, a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════ hero ═══════════ */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 92px 24px 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 1, 24, 0.6);
  backdrop-filter: blur(8px);
  margin-bottom: 40px;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 10px var(--magenta);
  animation: pulse 2s infinite;
}
.lockup { line-height: 1; }
.script-line {
  font-family: var(--f-script);
  font-size: clamp(40px, 9vw, 96px);
  color: var(--cyan);
  transform: rotate(-4deg);
  margin-bottom: -0.22em; /* scales with the script size — fixed px ate the small mobile type */
  position: relative;
  z-index: 2;
  text-shadow:
    0 0 6px rgba(0, 229, 255, 0.9),
    0 0 24px rgba(0, 229, 255, 0.45),
    0 0 70px rgba(0, 229, 255, 0.25);
}
.logotype {
  font-family: var(--f-block);
  font-size: clamp(88px, 21vw, 240px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #FFFFFF 0%, #BDE3FF 34%, #6E7DBF 48%, #2A1B57 52%, #B96BFF 66%, #FF2D95 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 0 #1B0B3A) drop-shadow(0 0 26px rgba(255, 45, 149, 0.45));
}
.hero-sub {
  font-family: var(--f-cond);
  font-weight: 500;
  font-size: clamp(14px, 2.2vw, 19px);
  letter-spacing: 0.28em;
  color: var(--text-dim);
  margin-top: 30px;
  animation: fadeUp 0.9s var(--ease) 0.5s both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 44px;
  animation: fadeUp 0.9s var(--ease) 0.7s both;
}

/* neon flicker-on */
@keyframes flickerOn {
  0%, 4%, 10%, 13%, 42%, 45% { opacity: 0; }
  6%, 11%, 15%, 43%, 47%, 100% { opacity: 1; }
}
.sign-on { animation: flickerOn 1.9s steps(1, end) 0.3s both; }
.sign-on-scroll.visible { animation: flickerOn 1.9s steps(1, end) both; }

/* marquee */
.marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid rgba(255, 45, 149, 0.08);
  background: rgba(5, 0, 15, 0.55);
  backdrop-filter: blur(6px);
  overflow: hidden;
  padding: 11px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marqueeMove var(--mq-dur, 28s) linear infinite;
}
.marquee-track span {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
  padding-right: 0.4em;
}
@keyframes marqueeMove { to { transform: translateX(calc(-1 * var(--mq-shift, 33.333%))); } }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ═══════════ the deal ═══════════ */
#deal { padding: 116px 24px 96px; }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.card {
  position: relative;
  text-align: center;
  padding: 40px 26px 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--magenta), var(--cyan), transparent);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 149, 0.5);
  box-shadow: 0 12px 44px rgba(255, 45, 149, 0.16);
}
.card-big {
  font-family: var(--f-block);
  font-size: clamp(30px, 4vw, 40px);
  letter-spacing: 0.02em;
  color: var(--sunset);
  text-shadow: 0 0 20px rgba(255, 158, 31, 0.4);
}
.card-line {
  font-family: var(--f-cond);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.14em;
  color: var(--text);
  margin-top: 12px;
}
.card-fine {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-top: 10px;
}

/* ═══════════ the sound ═══════════ */
#sound { padding: 96px 24px; }
#sound::before {
  content: '';
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px; max-width: 90vw;
  background: radial-gradient(circle, rgba(123, 47, 190, 0.14), transparent 65%);
  filter: blur(70px);
  pointer-events: none;
}
.deck {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 22px 24px 24px;
  border-radius: 14px;
  background: linear-gradient(180deg, #2A2140, #171030 55%, #0F0A20);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.5);
}
.deck-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.deck-brand {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-mute);
}
.deck-led {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0, 229, 255, 0.5);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}
.playing .deck-led {
  background: var(--magenta);
  box-shadow: 0 0 12px var(--magenta);
  animation: pulse 1.2s infinite;
}
.cassette {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 16px;
  border-radius: 10px;
  background: #0B0618;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.6);
}
.reel {
  width: 54px; height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(#2A2140 0deg 20deg, #0F0A20 20deg 40deg);
  border: 2px solid #3A2E5C;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #0B0618;
  border: 3px solid var(--text-dim);
}
.playing .reel { animation: spin 2.4s linear infinite; }
.playing .reel-r { animation: spin 3.1s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.tape-label {
  flex: 1;
  text-align: center;
  background: #F4EFFF;
  border-radius: 4px;
  padding: 10px 12px 12px;
  transform: rotate(-0.6deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.tape-label .script-sm {
  display: block;
  font-family: var(--f-script);
  font-size: 24px;
  line-height: 1;
  color: var(--violet);
}
.tape-label strong {
  display: block;
  font-family: var(--f-block);
  font-size: 17px;
  letter-spacing: 0.18em;
  color: #140826;
  margin-top: 3px;
}
.vu {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 26px;
  margin-top: 16px;
}
.vu i {
  width: 6px;
  height: 100%;
  border-radius: 1px;
  background: linear-gradient(180deg, var(--magenta), var(--cyan));
  transform: scaleY(0.14);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}
.vu i:nth-child(2n) { transform: scaleY(0.26); }
.vu i:nth-child(3n) { transform: scaleY(0.2); }
.playing .vu i { animation: vuDance 0.62s ease-in-out infinite alternate; }
.playing .vu i:nth-child(1) { animation-delay: 0s; }
.playing .vu i:nth-child(2) { animation-delay: 0.11s; }
.playing .vu i:nth-child(3) { animation-delay: 0.23s; }
.playing .vu i:nth-child(4) { animation-delay: 0.05s; }
.playing .vu i:nth-child(5) { animation-delay: 0.17s; }
.playing .vu i:nth-child(6) { animation-delay: 0.29s; }
.playing .vu i:nth-child(7) { animation-delay: 0.08s; }
.playing .vu i:nth-child(8) { animation-delay: 0.2s; }
.playing .vu i:nth-child(9) { animation-delay: 0.14s; }
.playing .vu i:nth-child(10) { animation-delay: 0.02s; }
@keyframes vuDance {
  from { transform: scaleY(0.15); }
  to { transform: scaleY(0.95); }
}
.sc-hidden {
  position: fixed;
  left: -9999px;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
}
.sc-placeholder {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0 6px;
  line-height: 2;
}
.sc-placeholder span {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}

/* ═══════════ see the night ═══════════ */
#night { padding: 96px 24px; }
.crt { max-width: 760px; margin: 0 auto; transition: max-width 0.4s var(--ease); }
.crt.vertical { max-width: 330px; }
.crt.vertical .crt-screen { aspect-ratio: 9 / 16; }
.crt-screen {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #05000F;
  border: 10px solid #1A1130;
  outline: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), inset 0 0 60px rgba(0, 0, 0, 0.5);
}
.crt-screen video { width: 100%; height: 100%; object-fit: cover; }
.crt-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.22) 0 1px, transparent 1px 3px),
    radial-gradient(ellipse at center, transparent 58%, rgba(5, 0, 15, 0.5) 100%);
}
.crt-static {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.12s linear;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px;
}
.crt-static.on { opacity: 0.6; }
.crt-rec {
  position: absolute;
  top: 12px; left: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #FF5A5A;
  text-shadow: 0 0 8px rgba(255, 90, 90, 0.7);
  pointer-events: none;
}
.rec-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FF3B3B;
  box-shadow: 0 0 8px #FF3B3B;
  animation: pulse 1.2s steps(2, end) infinite;
}
.crt-time {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(244, 239, 255, 0.75);
  pointer-events: none;
}
.night-cap {
  text-align: center;
  font-family: var(--f-cond);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-top: 22px;
}
.polaroids {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 34px 8px 16px;
  scrollbar-width: thin;
}
.pol {
  flex-shrink: 0;
  width: 188px;
  scroll-snap-align: center;
  background: #F4EFFF;
  padding: 9px 9px 12px;
  border-radius: 3px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
.pol:nth-child(odd) { transform: rotate(-2.4deg); }
.pol:nth-child(even) { transform: rotate(2deg); }
.pol-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  background: #1B0640;
}
.pol figcaption {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #140826;
  text-align: center;
  margin-top: 9px;
}

/* ═══════════ find us ═══════════ */
#findus { padding: 116px 24px 100px; text-align: center; }
#findus::before {
  content: '';
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 500px; max-width: 90vw;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.neon-sign {
  font-family: var(--f-script);
  font-size: clamp(56px, 11vw, 120px);
  line-height: 1.15;
  color: var(--cyan);
  transform: rotate(-3deg);
  text-shadow:
    0 0 6px rgba(0, 229, 255, 0.9),
    0 0 24px rgba(0, 229, 255, 0.45),
    0 0 80px rgba(0, 229, 255, 0.3);
  margin-bottom: 26px;
}
.addr {
  font-family: var(--f-cond);
  font-weight: 500;
  font-size: clamp(15px, 2.4vw, 19px);
  letter-spacing: 0.14em;
  color: var(--text);
}
.addr-sub {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-top: 8px;
}
.findus-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ═══════════ footer ═══════════ */
#footer {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent 5%, var(--magenta), var(--cyan), transparent 95%) 1;
  padding: 46px 24px 64px;
  text-align: center;
}
.block-line {
  font-family: var(--f-cond);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
}
.block-line:hover { color: var(--text); }
.credits {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  margin-top: 20px;
}
.foot-ig {
  display: flex;
  gap: 12px;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-top: 14px;
}
.foot-ig a { color: var(--cyan); transition: text-shadow 0.3s var(--ease); }
.foot-ig a:hover { text-shadow: 0 0 12px rgba(0, 229, 255, 0.7); }

/* ═══════════ mobile ═══════════ */
@media (max-width: 560px) {
  .hero-inner { padding: 150px 18px 120px; }
  .hero-sub { letter-spacing: 0.18em; }
  .cassette { gap: 10px; padding: 14px 10px; }
  .reel { width: 44px; height: 44px; }
  .tape-label .script-sm { font-size: 19px; }
  .crt-screen { border-width: 7px; border-radius: 14px; }
  #deal, #findus { padding-top: 90px; }
}

/* ═══════════ the block site header ═══════════ */
#siteheader {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 14px 20px 0;
}
.head-row {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.head-logo img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s var(--ease);
}
.head-logo:hover img { transform: translateY(-1px) scale(1.03); }
.head-tabs {
  display: flex;
  gap: 4px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.head-tabs::-webkit-scrollbar { display: none; }
.head-tabs a {
  position: relative;
  font-family: var(--f-cond);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  padding: 10px 12px;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}
.head-tabs a::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.head-tabs a:hover { color: var(--text); }
.head-tabs a:hover::after {
  opacity: 1;
  transform: none;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}
.head-socials { display: flex; gap: 6px; }
.head-socials a {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 8px;
  color: var(--text-dim);
  transition: color 0.25s var(--ease), background 0.25s var(--ease), filter 0.25s var(--ease);
}
.head-socials a:hover {
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.07);
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
}
.head-socials svg { width: 17px; height: 17px; fill: currentColor; }
@media (max-width: 760px) {
  .head-row { flex-wrap: wrap; justify-content: space-between; }
  .head-logo img { height: 46px; }
  .head-tabs { order: 3; width: 100%; justify-content: flex-start; margin: 2px -8px 0; }
}
/* landscape phones: shorter header, push hero content below it */
@media (max-height: 520px) {
  .head-logo img { height: 42px; }
  .hero-inner { padding-top: 150px; padding-bottom: 110px; }
  .badge { margin-bottom: 26px; }
}

/* ═══════════ official marks + legal tier ═══════════ */
.social-mark {
  width: min(230px, 58vw);
  height: auto;
  margin: 0 auto 16px;
  opacity: 0.92;
  filter: drop-shadow(0 0 14px rgba(244, 239, 255, 0.18));
}
.legal {
  margin-top: 44px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.legal-block-logo {
  height: auto;
  width: min(340px, 72vw);
  margin: 0 auto 26px;
  opacity: 0.85;
}
.legal-links {
  display: flex;
  gap: 8px 22px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
}
.legal-links a { color: var(--text-mute); transition: color 0.25s var(--ease); }
.legal-links a:hover { color: var(--cyan); }
.legal-copy {
  font-family: var(--f-cond);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  margin-top: 18px;
}
.legal-a11y {
  max-width: 760px;
  margin: 22px auto 0;
  font-family: var(--f-cond);
  font-weight: 300;
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--text-mute);
  text-align: center;
}
.legal-a11y a { color: var(--cyan); }

/* ═══════════ VHS transport ═══════════ */
.transport {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}
.t-row { display: flex; align-items: center; gap: 12px; }
.t-btn {
  width: 46px;
  height: 40px;
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--text-dim);
  background: linear-gradient(180deg, #3A2E5C, #171030);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 3px 0 #0B0618, inset 0 1px 0 rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: transform 0.1s var(--ease), box-shadow 0.1s var(--ease), color 0.2s var(--ease);
}
.t-btn:hover { color: var(--text); }
.t-btn:active { transform: translateY(3px); box-shadow: 0 0 0 #0B0618, inset 0 1px 0 rgba(255, 255, 255, 0.1); }
.t-btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.t-btn svg { width: 13px; height: 13px; fill: currentColor; display: block; margin: 0 auto; }
.t-btn .i-pause { display: none; }
.playing #t-play .i-play { display: none; }
.playing #t-play .i-pause { display: block; }
.playing #t-play { color: var(--magenta); filter: drop-shadow(0 0 8px rgba(255, 45, 149, 0.8)); }
.t-mid { flex: 1; min-width: 0; }
.t-title {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}
.t-rail {
  position: relative;
  height: 10px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    repeating-linear-gradient(90deg, transparent 0 19px, rgba(255, 255, 255, 0.05) 19px 20px),
    #0B0618;
  cursor: pointer;
  overflow: hidden;
}
.t-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  box-shadow: 0 0 12px rgba(255, 45, 149, 0.5);
  transition: width 0.3s linear;
}
.t-time {
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--cyan);
}
.t-sep { margin: 0 4px; color: var(--text-mute); }
.t-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 13px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
}
.t-links a { color: var(--text-mute); transition: color 0.25s var(--ease), text-shadow 0.25s var(--ease); }
.t-links a:hover { color: var(--cyan); text-shadow: 0 0 10px rgba(0, 229, 255, 0.6); }

/* sound pill — shows only when autoplay was blocked */
#sound-pill {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 500;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--bg);
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  border: none;
  border-radius: 100px;
  padding: 12px 19px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 229, 255, 0.35);
  animation: pillPulse 1.6s ease-in-out infinite;
}
#sound-pill[hidden] { display: none; }
@keyframes pillPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }

/* maps chooser sheet */
#maps-sheet { position: fixed; inset: 0; z-index: 600; }
#maps-sheet[hidden] { display: none; }
.ms-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 0, 15, 0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.ms-card {
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translate(-50%, 24px);
  width: min(360px, calc(100vw - 32px));
  padding: 22px 20px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #2A2140, #140826);
  border: 1px solid rgba(255, 45, 149, 0.3);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  opacity: 0;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
#maps-sheet.open .ms-backdrop { opacity: 1; }
#maps-sheet.open .ms-card { opacity: 1; transform: translate(-50%, 0); }
.ms-title { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.16em; color: var(--cyan); }
.ms-addr { font-family: var(--f-cond); font-weight: 300; font-size: 12px; letter-spacing: 0.12em; color: var(--text-mute); margin: 8px 0 16px; }
.ms-list { display: flex; flex-direction: column; gap: 8px; }
.ms-list a {
  display: block;
  font-family: var(--f-cond);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  padding: 13px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.ms-list a:hover { border-color: rgba(0, 229, 255, 0.5); background: rgba(0, 229, 255, 0.07); color: var(--cyan); }
.ms-cancel {
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
}
.ms-cancel:hover { color: var(--text); }
@media (max-width: 560px) {
  .t-time { display: none; }
  .t-btn { width: 42px; height: 38px; }
}

/* ═══════════ embed mode (page loaded inside another site's iframe) ═══════════ */
.embedded #siteheader,
.embedded .legal,
.embedded .block-line,
.embedded #sound-pill { display: none !important; }
.embedded #hero { min-height: 0; }
.embedded .hero-inner { padding: 44px 18px 26px; }
.embedded .badge { margin-bottom: 26px; }
.embedded .marquee { position: static; margin-top: 10px; }
.embedded #deal, .embedded #sound, .embedded #night, .embedded #findus { padding-top: 64px; padding-bottom: 56px; }
.embedded #footer { padding: 30px 24px 40px; }
.sc-visible {
  display: block;
  width: 100%;
  height: 166px;
  border: 0;
  border-radius: 8px;
  margin-top: 16px;
}
.embedded #hero { flex-direction: column; }
.embedded .marquee { width: 100%; }
/* embed mode: ticker on top so it's visible in a short host box; tighter hero */
.embedded .marquee { order: -1; margin-top: 0; }
.embedded .hero-inner { padding: 30px 18px 22px; }
.embedded .badge { margin-bottom: 20px; }
.embedded .hero-sub { margin-top: 20px; }
.embedded .hero-ctas { margin-top: 26px; }
/* embed mode: ticker lifted out of the hero (see index.html) and pinned to the frame top */
.embedded .marquee { position: sticky; top: 0; z-index: 50; order: 0; width: 100%; margin: 0; background: rgba(5, 0, 15, 0.82); }
.embedded .hero-inner { padding-top: 26px; }
/* mini player mode inside the deck */
.sc-mini { display: block; width: 100%; height: 20px; border: 0; border-radius: 3px; margin-bottom: 12px; opacity: 0.95; }
.transport.mini .t-btn { display: none; }
.transport.mini .t-row { gap: 10px; }
/* narrow embeds (their mobile box is 320px): keep the tape label on one line each */
@media (max-width: 360px) {
  .cassette { gap: 8px; padding: 12px 8px; }
  .reel { width: 40px; height: 40px; }
  .tape-label { padding: 8px 6px 9px; }
  .tape-label .script-sm { font-size: 15px; }
  .tape-label strong { font-size: 13px; letter-spacing: 0.12em; }
}
/* embed polish: ticker scrolls away with the page; mini mode keeps one scrub control (SoundCloud's) */
.embedded .marquee { position: relative; }
.transport.mini .t-mid, .transport.mini .t-time { display: none; }
.transport.mini .t-row { display: none; }
.transport.mini .t-links { margin-top: 4px; }
