/* ============================================================
   STICKY RICKY — Miami Vice comic-print system
   Palette:  Vice Night #170a26 · Ink #12041d · Paper #fff3f9
             Flamingo #ff3da6 · Curaçao #35d6ff · Ricky Teal #2fd4b2
             Gold Chain #ffc84a
   Type:     Bungee / Bungee Shade (display) · Mr Dafoe (neon script)
             Archivo (body)
   Signature: offset-print misregistration (pink right, cyan left)
   ============================================================ */

:root {
  --night: #170a26;
  --night-2: #221040;
  --ink: #12041d;
  --paper: #fff3f9;
  --pink: #ff3da6;
  --cyan: #35d6ff;
  --teal: #2fd4b2;
  --gold: #ffc84a;
  --mis: 0.05em;
  --burst: polygon(50.0% 0.0%, 57.6% 16.9%, 71.7% 5.0%, 71.2% 23.4%, 89.1% 18.8%, 80.6% 35.2%, 98.7% 38.9%, 84.0% 50.0%, 98.7% 61.1%, 80.6% 64.8%, 89.1% 81.2%, 71.2% 76.6%, 71.7% 95.0%, 57.6% 83.1%, 50.0% 100.0%, 42.4% 83.1%, 28.3% 95.0%, 28.8% 76.6%, 10.9% 81.2%, 19.4% 64.8%, 1.3% 61.1%, 16.0% 50.0%, 1.3% 38.9%, 19.4% 35.2%, 10.9% 18.8%, 28.8% 23.4%, 28.3% 5.0%, 42.4% 16.9%);
  --hero-vh: 460vh;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background:
    radial-gradient(1200px 600px at 85% -5%, rgba(255, 61, 166, .14), transparent 60%),
    radial-gradient(1000px 700px at 8% 30%, rgba(53, 214, 255, .08), transparent 55%),
    var(--night);
  color: var(--paper);
  font-family: "Archivo", -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

::selection { background: var(--pink); color: var(--ink); }

/* ============ shared type ============ */

.script {
  font-family: "Mr Dafoe", cursive;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1;
  transform: rotate(-3deg);
  display: inline-block;
  margin-bottom: .4rem;
}
.script--pink { color: var(--pink); text-shadow: 0 0 22px rgba(255, 61, 166, .75); }
.script--cyan { color: var(--cyan); text-shadow: 0 0 22px rgba(53, 214, 255, .75); }
.script--gold { color: var(--gold); text-shadow: 0 0 22px rgba(255, 200, 74, .75); }

.h2 {
  font-family: "Bungee", cursive;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: .01em;
  font-weight: 400;
}

/* ---- Miami Vice logo language ---- */

/* chrome block letters: ice-blue top, royal-blue horizon, purple base */
.chrome-text {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .03em;
  background: linear-gradient(
    180deg,
    #f2faff 0%,
    #bfe0ff 24%,
    #5f8dff 42%,
    #24329e 51%,
    #3d2f9e 55%,
    #7a3bff 70%,
    #c44dff 88%,
    #edb3ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .55);
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, .9))
    drop-shadow(0 0 12px rgba(122, 88, 255, .65))
    drop-shadow(0 4px 0 rgba(18, 4, 29, .9))
    drop-shadow(0 0 34px rgba(255, 61, 166, .35));
}

/* neon tube headings — white-hot core, colored gas glow, irregular flicker */
.neon { color: #f6feff; }
.neon--cyan {
  text-shadow:
    0 0 3px rgba(246, 254, 255, .9),
    0 0 8px rgba(53, 214, 255, .95),
    0 0 22px rgba(53, 214, 255, .8),
    0 0 48px rgba(53, 214, 255, .55),
    0 0 90px rgba(53, 214, 255, .35);
  animation: neon-flicker-tube 8s linear infinite;
}
.neon--pink {
  color: #fff4fc;
  text-shadow:
    0 0 3px rgba(255, 244, 252, .9),
    0 0 8px rgba(255, 61, 166, .95),
    0 0 22px rgba(255, 61, 166, .8),
    0 0 48px rgba(255, 61, 166, .55),
    0 0 90px rgba(255, 61, 166, .35);
  animation: neon-flicker-tube 9.5s linear infinite;
  animation-delay: -4.2s;
}
.neon--gold {
  color: #fffdf2;
  text-shadow:
    0 0 3px rgba(255, 253, 242, .9),
    0 0 8px rgba(255, 200, 74, .95),
    0 0 22px rgba(255, 200, 74, .8),
    0 0 48px rgba(255, 200, 74, .55),
    0 0 90px rgba(255, 200, 74, .35);
  animation: neon-flicker-tube 11s linear infinite;
  animation-delay: -7.1s;
}
@keyframes neon-flicker-tube {
  0%, 5.4%, 5.9%, 6.3%, 34%, 34.5%, 35.1%, 62%, 62.2%, 62.6%, 63%, 100% { opacity: 1; }
  5.6% { opacity: .35; }
  6.1% { opacity: .7; }
  34.2% { opacity: .5; }
  34.8% { opacity: .85; }
  62.1% { opacity: .25; }
  62.4% { opacity: .75; }
  62.8% { opacity: .45; }
}

.lead { font-size: 1.1rem; max-width: 34rem; margin-top: 1.1rem; color: rgba(255, 243, 249, .92); }

/* comic caption box */
.caption {
  display: inline-block;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 rgba(18, 4, 29, .85), 10px 10px 0 rgba(255, 61, 166, .55);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.35;
  padding: .7rem 1rem;
  transform: rotate(-1.2deg);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.caption em { color: var(--pink); font-style: normal; }
/* "+ SMS" / "+ AI CALL" add-badges — the whole point: Ricky ADDS channels */
.add {
  display: block;
  width: fit-content;
  font-family: "Bungee", cursive;
  font-size: .78rem;
  padding: .2rem .5rem;
  margin-bottom: .45rem;
  border: 2px solid var(--ink);
  rotate: -2deg;
}
.add--pink { background: var(--pink); color: var(--paper); box-shadow: 3px 3px 0 var(--ink); }
.add--cyan { background: var(--cyan); color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.caption--cyan { box-shadow: 7px 7px 0 rgba(18, 4, 29, .85), 10px 10px 0 rgba(53, 214, 255, .55); transform: rotate(1.4deg); }
.caption--tilt { transform: rotate(-2deg); font-size: 1.05rem; }
.caption--center { display: block; width: fit-content; margin: 3rem auto 0; transform: rotate(-1deg); font-size: 1.1rem; }

/* starburst sticker */
.burst {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  clip-path: var(--burst);
  font-family: "Bungee", cursive;
  font-size: .82rem;
  color: var(--ink);
  text-align: center;
  transform: rotate(9deg);
  padding: 10px;
}
.burst--pink { background: var(--pink); }
.burst--cyan { background: var(--cyan); }
.burst--gold { background: var(--gold); }
.burst--offset { right: -8%; top: 6%; }

/* buttons */
.btn {
  display: inline-block;
  font-family: "Bungee", cursive;
  font-size: .95rem;
  text-decoration: none;
  padding: .95rem 1.6rem;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn--pink {
  background: var(--pink);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink), 9px 9px 0 rgba(53, 214, 255, .6);
}
.btn--pink:hover { transform: translate(-2px, -2px); box-shadow: 9px 9px 0 var(--ink), 13px 13px 0 rgba(53, 214, 255, .6); }
.btn--pink:active { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 243, 249, .45);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translate(0, -2px); }

.btn:focus-visible, a:focus-visible, input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ============ fixed layers ============ */

#hero-video-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #2e2834; /* matches the video's night-street edges so seams never show */
}
#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(23, 10, 38, .5) 100%),
    linear-gradient(to bottom, rgba(23, 10, 38, .28), transparent 22%, transparent 72%, rgba(23, 10, 38, .55));
}

/* BOOKED! — the payoff stamp. Lives on the video layer so once it lands it
   STICKS to Ricky and rides off with him when the video lifts away. */
.hero__booked {
  position: absolute;
  left: 24%;
  top: 68%;
  z-index: 2;
  width: min(58vw, 400px);
  height: min(58vw, 400px);
  margin: calc(min(58vw, 400px) / -2) 0 0 calc(min(58vw, 400px) / -2);
  display: grid;
  place-items: center;
  clip-path: var(--burst);
  background: var(--gold);
  font-family: "Bungee", cursive;
  font-size: clamp(2.1rem, 5.6vw, 3.4rem);
  color: var(--ink);
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: scale(2.7) rotate(28deg);
  transition: opacity .2s ease, transform .2s ease;
  filter: drop-shadow(0 0 26px rgba(255, 200, 74, .85)) drop-shadow(12px 14px 0 rgba(18, 4, 29, .5));
}
.hero__booked.is-stamped {
  animation:
    booked-stamp .55s cubic-bezier(.2, 1.5, .38, 1) forwards,
    booked-throb 1.5s ease-in-out .55s infinite alternate;
}
@keyframes booked-stamp {
  0% { opacity: 0; transform: scale(2.7) rotate(28deg); }
  55% { opacity: 1; transform: scale(.88) rotate(-6deg); }
  75% { transform: scale(1.09) rotate(4deg); }
  100% { opacity: 1; transform: scale(1) rotate(-2deg); }
}
@keyframes booked-throb {
  from { transform: scale(1) rotate(-2deg); }
  to { transform: scale(1.06) rotate(3deg); }
}

/* ---- retrowave backdrop: sun + endless grid, alive behind the sections ---- */
.vicebg {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .8s ease;
  background:
    linear-gradient(180deg, rgba(23, 10, 38, 0) 0%, rgba(74, 20, 88, .34) 62%, rgba(122, 27, 94, .5) 100%);
}
.vicebg.on { opacity: 1; }
.vicebg__sun {
  position: absolute;
  left: 50%;
  bottom: 22%;
  width: min(46vw, 520px);
  aspect-ratio: 1;
  translate: -50% var(--sun-y, 60px);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #ffe3b0 0%, #ff9a52 32%, #ff3da6 66%, #b23bff 100%);
  -webkit-mask-image: repeating-linear-gradient(to bottom, #000 0 24px, transparent 24px 31px);
  mask-image: repeating-linear-gradient(to bottom, #000 0 24px, transparent 24px 31px);
  filter: drop-shadow(0 0 46px rgba(255, 61, 166, .55));
  opacity: .5;
}
.vicebg__gridwrap {
  position: absolute;
  left: -18%;
  right: -18%;
  bottom: -2%;
  height: 42%;
  perspective: 430px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to top, #000 58%, transparent 100%);
  mask-image: linear-gradient(to top, #000 58%, transparent 100%);
}
.vicebg__grid {
  position: absolute;
  inset: 0;
  height: 220%;
  transform-origin: top center;
  background:
    repeating-linear-gradient(to bottom, rgba(255, 61, 166, .38) 0 2px, transparent 2px 56px),
    repeating-linear-gradient(90deg, rgba(255, 61, 166, .3) 0 2px, transparent 2px 68px);
  animation: grid-run 1.5s linear infinite;
  opacity: .55;
}
@keyframes grid-run {
  from { transform: rotateX(62deg) translateY(-56px); }
  to { transform: rotateX(62deg) translateY(0); }
}
.vicebg__scan {
  position: absolute;
  left: 0;
  right: 0;
  top: -30%;
  height: 22%;
  background: linear-gradient(to bottom, transparent, rgba(53, 214, 255, .06), transparent);
  animation: scan-drift 9s linear infinite;
}
@keyframes scan-drift {
  from { transform: translateY(0); }
  to { transform: translateY(650%); }
}

/* ---- neon scroll progress + the car ---- */
.scrollbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 130;
  pointer-events: none;
}
.scrollbar::before {
  content: "";
  position: absolute;
  inset: 0;
  transform-origin: left;
  transform: scaleX(var(--prog, 0));
  background: linear-gradient(90deg, var(--pink), #b23bff, var(--cyan));
  box-shadow: 0 0 12px rgba(255, 61, 166, .8), 0 2px 8px rgba(53, 214, 255, .5);
}
.scrollbar__car {
  position: absolute;
  top: -13px;
  left: calc(var(--prog, 0) * 100%);
  translate: -55% 0;
  font-size: 20px;
  line-height: 1;
  filter: drop-shadow(0 0 7px rgba(53, 214, 255, .95));
  transition: transform .25s ease;
  transform: scaleX(-1); /* boat glyph faces left; sail right on the way down */
}
html[data-scroll-dir="up"] .scrollbar__car { transform: scaleX(1); }

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .07;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ nav ============ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem clamp(1rem, 4vw, 2.5rem);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav--on {
  background: rgba(18, 4, 29, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 3px 0 var(--pink), 0 6px 0 rgba(53, 214, 255, .5);
}
.nav__brand {
  font-family: "Bungee", cursive;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--pink);
  text-shadow: 0 0 14px rgba(255, 61, 166, .6);
}
.nav__brand span { color: var(--cyan); text-shadow: 0 0 14px rgba(53, 214, 255, .6); }
.nav__links { display: flex; align-items: center; gap: clamp(.8rem, 2.4vw, 1.8rem); }
.nav__links a {
  text-decoration: none;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .85;
}
.nav__links a:hover { opacity: 1; color: var(--cyan); }
.nav__cta {
  font-family: "Bungee", cursive;
  border: 2px solid var(--pink);
  padding: .45rem .8rem;
  color: var(--pink) !important;
  opacity: 1 !important;
  box-shadow: 3px 3px 0 rgba(255, 61, 166, .5);
}
.nav__cta:hover { background: var(--pink); color: var(--ink) !important; }

/* ============ hero ============ */

.hero {
  position: relative;
  height: var(--hero-vh);
  z-index: 4;
}

.hero__stage {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

/* The masthead is a neon bar sign hanging over the studio: dark purple
   panel, pink laser grid, chrome STICKY, hand-brushed neon Ricky. */
.hero__left {
  position: absolute;
  left: clamp(1.2rem, 5vw, 6rem);
  top: 17vh;
  max-width: min(88vw, 40rem);
  padding: clamp(1.3rem, 2.6vw, 2.2rem) clamp(1.4rem, 3vw, 2.6rem);
  background: radial-gradient(130% 140% at 50% -10%, #2a1348 0%, var(--night) 62%, #10061c 100%);
  border: 3px solid rgba(255, 61, 166, .8);
  border-radius: 16px;
  box-shadow:
    0 0 10px rgba(255, 61, 166, .55),
    0 0 34px rgba(255, 61, 166, .3),
    inset 0 0 30px rgba(255, 61, 166, .18),
    12px 14px 0 rgba(18, 4, 29, .8);
  rotate: -1.2deg;
}
.hero__left::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 61, 166, .28) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(90deg, rgba(255, 61, 166, .28) 0 1px, transparent 1px 30px);
  -webkit-mask-image: linear-gradient(to top, #000 8%, rgba(0, 0, 0, .12) 78%);
  mask-image: linear-gradient(to top, #000 8%, rgba(0, 0, 0, .12) 78%);
}
.hero__left > * { position: relative; z-index: 1; }

.hero__title {
  display: flex;
  flex-direction: column;
  margin: .1rem 0 1.2rem;
}
.hero__title-chrome {
  font-size: clamp(3.6rem, 9.5vw, 8rem);
  line-height: .96;
}
.hero__title-script {
  font-family: "Mr Dafoe", cursive;
  font-size: clamp(2.9rem, 7.6vw, 6.2rem);
  line-height: .8;
  align-self: center;
  rotate: -6deg;
  margin-top: -.28em;
  color: #fff0fb;
  text-shadow:
    0 0 4px rgba(255, 240, 251, .9),
    0 0 10px rgba(255, 90, 200, .95),
    0 0 26px rgba(255, 45, 187, .85),
    0 0 60px rgba(255, 45, 187, .6);
  animation: neon-flicker-tube 7s linear infinite;
  animation-delay: -2.4s;
}
.hero__left .caption--tilt { max-width: 23rem; }

.hero__right {
  position: absolute;
  right: clamp(1rem, 5vw, 6rem);
  top: 58vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 34vh;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 14%, #000 86%, transparent 100%);
}
.hero__right .burst { position: static; width: 150px; height: 150px; font-size: 1.15rem; }

.hero__indicator {
  position: absolute;
  bottom: 4.5vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: "Bungee", cursive;
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--paper);
  text-shadow: 0 0 12px rgba(255, 61, 166, .9);
}
.hero__chevron { display: block; font-size: 1.3rem; animation: bob 1.4s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(9px); } }

/* the pitch that slides up under the lifting video */
.hero__reveal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.4rem;
  background:
    radial-gradient(700px 420px at 50% 42%, rgba(255, 61, 166, .16), transparent 70%),
    radial-gradient(900px 500px at 50% 60%, rgba(53, 214, 255, .10), transparent 75%);
}
/* (the live retrowave backdrop — .vicebg — provides the laser-grid floor
   under the reveal; it fades in as the video lifts away) */
.reveal__title {
  font-family: "Bungee", cursive;
  font-weight: 400;
  font-size: clamp(2.8rem, 8.5vw, 6.5rem);
  line-height: .98;
  margin: .4rem 0 1.2rem;
}
.reveal__sub { font-size: 1.12rem; color: rgba(255, 243, 249, .9); }
.reveal__actions { display: flex; gap: 1.1rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.reveal__micro {
  margin-top: 1.6rem;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 243, 249, .55);
}

/* the pitch rides on the same dark card as the split sections */
.reveal__card {
  background: rgba(18, 4, 29, .74);
  border: 3px solid rgba(255, 243, 249, .18);
  box-shadow: 12px 12px 0 rgba(18, 4, 29, .6), 0 0 44px rgba(255, 61, 166, .12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1.4rem, 4vw, 3.4rem);
}

/* fall-in cascade, fired by hero.js */
.reveal__card > * { opacity: 0; }
.hero__reveal.is-falling .reveal__card > * {
  animation: fall-in .85s cubic-bezier(.26, 1.5, .46, .96) forwards;
}
.hero__reveal.is-falling .reveal__card > *:nth-child(1) { animation-delay: 0s; }
.hero__reveal.is-falling .reveal__card > *:nth-child(2) { animation-delay: .1s; }
.hero__reveal.is-falling .reveal__card > *:nth-child(3) { animation-delay: .22s; }
.hero__reveal.is-falling .reveal__card > *:nth-child(4) { animation-delay: .34s; }
.hero__reveal.is-falling .reveal__card > *:nth-child(5) { animation-delay: .46s; }
.hero__reveal.is-falling .reveal__card > *:nth-child(6) { animation-delay: .56s; }
.reveal__micro--bots { margin-top: .9rem; }
.reveal__micro--bots a { text-decoration: none; color: rgba(53, 214, 255, .8); }
.reveal__micro--bots a:hover { color: var(--cyan); }
@keyframes fall-in {
  0% { opacity: 0; transform: translateY(-150px); }
  62% { opacity: 1; transform: translateY(10px); }
  82% { transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============ ticker ============ */

.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: var(--paper);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  transform: rotate(-1.1deg) scale(1.02);
  box-shadow: 0 8px 0 rgba(255, 61, 166, .5);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}
.ticker__track span {
  font-family: "Bungee", cursive;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  color: var(--ink);
  white-space: nowrap;
  padding: .55rem 0;
}
.ticker__track em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--pink);
}
@keyframes ticker { to { transform: translateX(-33.333%); } }

/* ============ sections ============ */

main { position: relative; z-index: 5; background: transparent; }

.section {
  position: relative;
  padding: clamp(5.5rem, 11vw, 9.5rem) clamp(1.2rem, 5vw, 4rem);
  max-width: 1280px;
  margin: 0 auto;
}
.section__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* --- the play: three comic panels --- */

.panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: start;
}
.panel {
  position: relative;
  background:
    radial-gradient(rgba(18, 4, 29, .12) 1.3px, transparent 1.4px) 0 0 / 9px 9px,
    var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 12px 12px 0 rgba(18, 4, 29, .9), 17px 17px 0 rgba(255, 61, 166, .45);
  color: var(--ink);
}
.panel--a { --tilt: -1.6deg; }
.panel--b { --tilt: 1.3deg; margin-top: 2.2rem; }
.panel--c { --tilt: -1deg; margin-top: .9rem; }
.panel .burst { top: -34px; right: -26px; }
.panel__art {
  height: 215px;
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
  background: var(--night-2);
}
.panel__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.panel:hover .panel__art img { transform: scale(1.06); }
.panel__art--sms {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--night-2), #3c1660);
}
.minisms { display: flex; flex-direction: column; gap: .5rem; width: 82%; }
.minisms__bubble {
  font-size: .82rem;
  font-weight: 700;
  padding: .45rem .8rem;
  border-radius: 14px;
  border: 2px solid var(--ink);
  width: fit-content;
  max-width: 90%;
}
.minisms__bubble--out { align-self: flex-end; background: var(--pink); color: var(--ink); border-bottom-right-radius: 3px; }
.minisms__bubble--in { align-self: flex-start; background: var(--paper); color: var(--ink); border-bottom-left-radius: 3px; }
.panel__body { padding: 1.3rem 1.4rem 1.6rem; }
.panel__act {
  font-family: "Bungee", cursive;
  font-size: .68rem;
  background: var(--ink);
  color: var(--gold);
  padding: .28rem .55rem;
  display: inline-block;
  transform: rotate(-2deg);
}
.panel__body h3 {
  font-family: "Bungee", cursive;
  font-weight: 400;
  font-size: 1.28rem;
  line-height: 1.1;
  margin: .8rem 0 .6rem;
}
.panel__body p { font-size: .98rem; line-height: 1.55; font-weight: 500; }

/* --- the stack: neon sequence rail (emails below, Ricky drops in above) --- */

.seq {
  position: relative;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.seq__lane {
  position: absolute;
  left: 0;
  font-family: "Mr Dafoe", cursive;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  rotate: -4deg;
  z-index: 2;
}
.seq__lane--top {
  top: 6%;
  color: var(--pink);
  text-shadow: 0 0 6px rgba(255, 61, 166, .9), 0 0 24px rgba(255, 61, 166, .6);
}
.seq__lane--bottom {
  bottom: 4%;
  color: rgba(53, 214, 255, .75);
  text-shadow: 0 0 18px rgba(53, 214, 255, .45);
}

.seq__rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .6rem;
  min-height: 380px;
}
/* the chrome-neon timeline itself */
.seq__rail::before {
  content: "";
  position: absolute;
  left: -1%;
  right: -1%;
  top: 50%;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--pink), #b23bff 45%, var(--cyan));
  box-shadow:
    0 0 10px rgba(255, 61, 166, .9),
    0 0 30px rgba(255, 61, 166, .5),
    0 3px 0 rgba(18, 4, 29, .8),
    0 0 60px rgba(53, 214, 255, .35);
}

.seq__step { position: relative; min-height: 380px; }

/* node sits ON the rail: neon tube ring */
.seq__node {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.3rem;
  background: rgba(18, 4, 29, .92);
  border: 3px solid rgba(255, 243, 249, .4);
}
.seq__step--sms .seq__node {
  border-color: var(--pink);
  box-shadow: 0 0 10px rgba(255, 61, 166, .9), 0 0 30px rgba(255, 61, 166, .5), inset 0 0 12px rgba(255, 61, 166, .35);
}
.seq__step--call .seq__node {
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(53, 214, 255, .9), 0 0 30px rgba(53, 214, 255, .5), inset 0 0 12px rgba(53, 214, 255, .35);
}
.seq__node--booked {
  width: 72px;
  height: 72px;
  border-radius: 0;
  border: none;
  background: var(--gold);
  clip-path: var(--burst);
  font-size: 1.6rem;
  filter: drop-shadow(0 0 14px rgba(255, 200, 74, .9)) drop-shadow(0 0 40px rgba(255, 200, 74, .5));
}

/* cards hang off the rail with a dashed neon stub */
.seq__card {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: min(150px, 100%);
  padding: .7rem .75rem .8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  align-items: center;
  background: rgba(18, 4, 29, .82);
  backdrop-filter: blur(4px);
}
.seq__card strong {
  font-family: "Bungee", cursive;
  font-weight: 400;
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--paper);
}
.seq__card span { font-size: .78rem; line-height: 1.35; color: rgba(255, 243, 249, .75); }
.seq__card .add { margin: 0 0 .15rem; font-size: .66rem; }

/* your sequencer: muted chips BELOW the rail */
.seq__step--email .seq__card {
  top: calc(50% + 46px);
  border: 2px solid rgba(255, 243, 249, .22);
}
.seq__step--email .seq__card::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  translate: -50% 0;
  height: 22px;
  border-left: 2px dashed rgba(255, 243, 249, .35);
}

/* Ricky's additions: neon chips ABOVE the rail */
.seq__step--add .seq__card { bottom: calc(50% + 46px); }
.seq__step--add .seq__card::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  height: 22px;
}
.seq__step--sms .seq__card {
  border: 2px solid var(--pink);
  box-shadow: 0 0 14px rgba(255, 61, 166, .45), 6px 6px 0 rgba(18, 4, 29, .7);
}
.seq__step--sms .seq__card::before { border-left: 2px dashed rgba(255, 61, 166, .8); }
.seq__step--call .seq__card {
  border: 2px solid var(--cyan);
  box-shadow: 0 0 14px rgba(53, 214, 255, .45), 6px 6px 0 rgba(18, 4, 29, .7);
}
.seq__step--call .seq__card::before { border-left: 2px dashed rgba(53, 214, 255, .8); }

/* the payoff hangs above the rail in gold */
.seq__step--booked .seq__card {
  bottom: calc(50% + 52px);
  border: 2px solid var(--gold);
  box-shadow: 0 0 16px rgba(255, 200, 74, .5), 6px 6px 0 rgba(18, 4, 29, .7);
}
.seq__step--booked .seq__card::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  height: 26px;
  border-left: 2px dashed rgba(255, 200, 74, .85);
}
.seq__step--booked .seq__card strong { color: var(--gold); }

/* Ricky's chips DROP in from above */
[data-reveal="drop"] { transform: translateY(-70px) scale(.75) rotate(-4deg); }
html[data-scroll-dir="up"] [data-reveal="drop"]:not(.in) { transform: translateY(70px) scale(.75) rotate(4deg); }

@media (max-width: 980px) {
  /* vertical rail on small screens: line down the left, steps as rows */
  .seq__lane { position: static; display: inline-block; margin: 0 1.2rem .8rem 0; rotate: -2deg; }
  .seq__rail { grid-template-columns: 1fr; min-height: 0; gap: 1rem; padding-left: 64px; }
  .seq__rail::before {
    left: 26px;
    right: auto;
    top: -2%;
    bottom: -2%;
    width: 4px;
    height: auto;
    background: linear-gradient(180deg, var(--pink), #b23bff 45%, var(--cyan));
  }
  .seq__step { min-height: 0; }
  .seq__node {
    top: 50%;
    left: -38px;
    translate: 0 -50%;
  }
  .seq__card,
  .seq__step--email .seq__card,
  .seq__step--add .seq__card,
  .seq__step--booked .seq__card {
    position: relative;
    top: auto;
    bottom: auto;
    left: 0;
    translate: 0 0;
    width: 100%;
    max-width: 340px;
    text-align: left;
    align-items: flex-start;
  }
  .seq__card::before,
  .seq__step--email .seq__card::before,
  .seq__step--add .seq__card::before,
  .seq__step--booked .seq__card::before { display: none; }
}

/* --- split sections (BYOS / SMS) --- */

.split {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split--flip { grid-template-columns: 1fr minmax(280px, 420px); }
.split--flip .split__figure { order: 2; }
.split--flip .split__copy { order: 1; }

.split__figure { position: relative; display: grid; place-items: center; }

/* copy sits on a dark card so it reads over the sun + grid backdrop */
.split__copy {
  background: rgba(18, 4, 29, .74);
  border: 3px solid rgba(255, 243, 249, .18);
  box-shadow: 12px 12px 0 rgba(18, 4, 29, .6), 0 0 44px rgba(255, 61, 166, .12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: clamp(1.5rem, 3.2vw, 2.5rem);
}

.cutout {
  filter: drop-shadow(14px 14px 0 rgba(255, 61, 166, .55)) drop-shadow(-6px -4px 0 rgba(53, 214, 255, .35));
}
.cutout--float { animation: floaty 5.5s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(.6deg); }
}

.ticks { list-style: none; margin-top: 1.4rem; display: grid; gap: .85rem; }
.ticks li { padding-left: 2rem; position: relative; color: rgba(255, 243, 249, .9); }
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -.1rem;
  font-family: "Bungee", cursive;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(255, 200, 74, .6);
}
.ticks li strong { color: var(--paper); }
.ticks--tight { gap: .55rem; margin-top: 1rem; }
.ticks--tight li { font-size: .95rem; }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.chip {
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .1em;
  padding: .5rem .85rem;
  border: 2px solid rgba(255, 243, 249, .35);
  color: var(--paper);
  background: rgba(255, 243, 249, .06);
  transform: rotate(-.5deg);
}
.chip:nth-child(even) { transform: rotate(.8deg); border-color: rgba(53, 214, 255, .45); }
.chip--ghost { border-style: dashed; color: var(--cyan); }

/* --- phone mock --- */

.phone {
  width: min(340px, 88vw);
  border: 4px solid var(--ink);
  border-radius: 42px;
  background: linear-gradient(170deg, #2a1348, var(--ink));
  box-shadow: 16px 16px 0 rgba(53, 214, 255, .5), 22px 22px 0 rgba(255, 61, 166, .35);
  padding: 1rem;
  transform: rotate(1.6deg);
}
.phone__notch {
  width: 44%;
  height: 22px;
  margin: 0 auto .8rem;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
}
.phone__screen { display: flex; flex-direction: column; gap: .7rem; padding: 0 .4rem .6rem; }
.sms {
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.4;
  padding: .65rem .9rem;
  border-radius: 16px;
  border: 2px solid var(--ink);
  max-width: 88%;
}
.sms--out {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--pink), #ff6bbd);
  color: var(--ink);
  border-bottom-right-radius: 4px;
}
.sms--in {
  align-self: flex-start;
  background: var(--paper);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.sms__status {
  align-self: center;
  font-family: "Bungee", cursive;
  font-size: .62rem;
  letter-spacing: .08em;
  color: var(--gold);
  border: 2px dashed rgba(255, 200, 74, .55);
  padding: .45rem .7rem;
  margin-top: .3rem;
}

/* --- full-bleed scenes (dialer / cta) --- */

.scene {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 10rem) clamp(1.2rem, 5vw, 4rem);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.scene__bg { position: absolute; inset: -18% 0; z-index: 0; }
.scene__bg img { width: 100%; height: 100%; object-fit: cover; }
.scene__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(rgba(18, 4, 29, .5) 1.2px, transparent 1.4px) 0 0 / 7px 7px,
    linear-gradient(to bottom, rgba(23, 10, 38, .88), rgba(23, 10, 38, .72) 40%, rgba(23, 10, 38, .9));
}
.scene__inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }

.dialers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.card {
  position: relative;
  background: rgba(18, 4, 29, .78);
  border: 3px solid var(--paper);
  box-shadow: 9px 9px 0 rgba(255, 61, 166, .55);
  padding: 1.6rem 1.7rem 1.7rem;
  backdrop-filter: blur(4px);
}
.card:nth-child(even) { box-shadow: 9px 9px 0 rgba(53, 214, 255, .55); }
.card h3 {
  font-family: "Bungee", cursive;
  font-weight: 400;
  font-size: 1.06rem;
  line-height: 1.25;
  margin-bottom: .55rem;
  color: var(--paper);
}
.card p { font-size: .96rem; color: rgba(255, 243, 249, .85); }
.card--dial { --tilt: -.7deg; }
.card--dial:nth-child(even) { --tilt: .8deg; }
.card__tag {
  font-family: "Bungee", cursive;
  font-size: .72rem;
  display: inline-block;
  padding: .3rem .6rem;
  margin-bottom: 1rem;
  border: 2px solid var(--ink);
  transform: rotate(-1.5deg);
}
.card__tag--pink { background: var(--pink); color: var(--ink); }
.card__tag--cyan { background: var(--cyan); color: var(--ink); }

/* --- extras grid --- */

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.6vw, 2rem);
}
.grid .card { --tilt: -.6deg; }
.grid .card:nth-child(even) { --tilt: .7deg; }
.grid .card h3 { color: var(--gold); font-size: .95rem; }

/* --- CTA --- */

.scene--cta { border-bottom: none; }
.scene__inner--cta {
  display: grid;
  grid-template-columns: minmax(260px, 520px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.cta__figure { margin-bottom: calc(-1 * clamp(6rem, 12vw, 10rem)); align-self: end; }
.cta__figure .cutout { filter: drop-shadow(0 -6px 40px rgba(255, 61, 166, .35)) drop-shadow(10px 10px 0 rgba(18, 4, 29, .8)); }
.cta__title {
  font-size: clamp(3.6rem, 10vw, 8.5rem);
  line-height: .95;
  margin: .3rem 0 1rem;
}
.cta__form { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.8rem; }
.cta__form input {
  flex: 1 1 240px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: .95rem 1.1rem;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(53, 214, 255, .55);
}
.cta__form input::placeholder { color: rgba(18, 4, 29, .45); }

/* --- pricing: three neon bar signs --- */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.8rem 1.7rem 1.9rem;
  border-radius: 16px;
  background: radial-gradient(130% 140% at 50% -10%, #2a1348 0%, var(--night) 62%, #10061c 100%);
  border: 3px solid rgba(53, 214, 255, .7);
  box-shadow:
    0 0 10px rgba(53, 214, 255, .4),
    inset 0 0 26px rgba(53, 214, 255, .12),
    10px 12px 0 rgba(18, 4, 29, .8);
}
.plan::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 61, 166, .18) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(90deg, rgba(255, 61, 166, .18) 0 1px, transparent 1px 30px);
  -webkit-mask-image: linear-gradient(to top, #000 6%, rgba(0, 0, 0, .1) 75%);
  mask-image: linear-gradient(to top, #000 6%, rgba(0, 0, 0, .1) 75%);
}
.plan > * { position: relative; z-index: 1; }

/* tier art: bleeds to the card edges and melts into the panel */
.plan__art {
  margin: -1.8rem -1.7rem 1.1rem;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  border-bottom: 3px solid currentColor;
}
.plan--cyan .plan__art { color: rgba(53, 214, 255, .55); }
.plan--pink .plan__art { color: rgba(255, 61, 166, .6); }
.plan--gold .plan__art { color: rgba(255, 200, 74, .55); }
.plan__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(23, 10, 38, .05) 45%, rgba(30, 14, 55, .82) 100%);
}
.plan__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.plan--cyan .plan__art img { object-position: 50% 22%; }
.plan--pink .plan__art img { object-position: 62% 30%; }
.plan--gold .plan__art img { object-position: 50% 30%; }
.plan:hover .plan__art img { transform: scale(1.07); }
.plan--pink {
  border-color: rgba(255, 61, 166, .8);
  box-shadow:
    0 0 12px rgba(255, 61, 166, .5),
    inset 0 0 26px rgba(255, 61, 166, .16),
    10px 12px 0 rgba(18, 4, 29, .8);
}
.plan--gold {
  border-color: rgba(255, 200, 74, .75);
  box-shadow:
    0 0 10px rgba(255, 200, 74, .4),
    inset 0 0 26px rgba(255, 200, 74, .12),
    10px 12px 0 rgba(18, 4, 29, .8);
}
.plan--featured { --tilt: -1deg; scale: 1.03; }
.plan--featured .burst { top: -40px; right: -22px; line-height: 1.05; }

.plan__name {
  font-family: "Bungee", cursive;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
}
.plan__tag { font-size: 1.7rem; margin: .2rem 0 .4rem; }
.plan__price { display: flex; align-items: baseline; gap: .4rem; margin: .3rem 0 .9rem; }
.plan__price .chrome-text { font-size: clamp(3rem, 4.5vw, 4rem); line-height: 1; }
.plan__per {
  font-family: "Bungee", cursive;
  font-size: .95rem;
  color: rgba(255, 243, 249, .65);
}
.plan .ticks { flex: 1; }
.plan__overage {
  margin-top: 1.2rem;
  font-size: .8rem;
  letter-spacing: .04em;
  color: rgba(255, 243, 249, .6);
  border-top: 2px dashed rgba(255, 243, 249, .2);
  padding-top: .8rem;
}
.plan__btn { margin-top: 1.2rem; text-align: center; }
.plans__note {
  margin: 2.6rem auto 0;
  width: fit-content;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 243, 249, .6);
}

/* --- creep: Ricky sees you out (palindrome loop: play -> rewind -> play) --- */

.creep {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-top: 4px solid var(--ink);
  background: #f6ecf2;
  line-height: 0;
}
.creep video {
  display: block;
  width: 100%;
  height: auto;
}
/* he creeps up into frame */
[data-reveal="creep"] { transform: translateY(58%); transition-duration: 1.4s, .9s; }

/* ============ subpages (faq / compare / terms / privacy / 404) ============ */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  padding: .7rem 1.2rem;
}
.skip-link:focus { left: 0; }

.page {
  position: relative;
  z-index: 5;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(7rem, 14vw, 10rem) clamp(1.2rem, 5vw, 2.5rem) clamp(4rem, 8vw, 6rem);
}
.page--wide { max-width: 1100px; }
.page__head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.page h1 {
  font-family: "Bungee", cursive;
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1.05;
}
.page h2 {
  font-family: "Bungee", cursive;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--gold);
  margin: 2.4rem 0 .7rem;
}
.page p, .page li { color: rgba(255, 243, 249, .88); margin-bottom: .8rem; }
.page ul, .page ol { padding-left: 1.4rem; }
.page a { color: var(--cyan); }
.page__updated {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 243, 249, .5);
  margin-top: .8rem;
}
.page__cta { margin-top: 3rem; text-align: center; }

/* FAQ accordion (native details/summary) */
.faq-item {
  border: 3px solid rgba(255, 243, 249, .25);
  background: rgba(18, 4, 29, .6);
  margin-bottom: 1rem;
}
.faq-item[open] { border-color: rgba(255, 61, 166, .6); box-shadow: 6px 6px 0 rgba(255, 61, 166, .35); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  font-size: 1.02rem;
  padding: 1rem 1.2rem;
  color: var(--paper);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "+";
  font-family: "Bungee", cursive;
  color: var(--pink);
  margin-right: .8rem;
}
.faq-item[open] summary::before { content: "–"; color: var(--cyan); }
.faq-item .faq-item__a { padding: 0 1.2rem 1.1rem 2.9rem; }
.faq-item .faq-item__a p:last-child { margin-bottom: 0; }

/* comparison table */
.compare-wrap { overflow-x: auto; margin-top: 1.5rem; }
.compare {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(18, 4, 29, .6);
  border: 3px solid rgba(255, 243, 249, .3);
}
.compare th, .compare td {
  padding: .85rem 1rem;
  text-align: left;
  border: 1px solid rgba(255, 243, 249, .15);
  vertical-align: top;
  font-size: .95rem;
}
.compare thead th {
  font-family: "Bungee", cursive;
  font-weight: 400;
  font-size: .78rem;
  letter-spacing: .04em;
  background: rgba(42, 19, 72, .9);
}
.compare thead th:nth-child(2) { color: var(--pink); }
.compare tbody th { font-weight: 900; color: var(--paper); width: 24%; }
.compare td:nth-child(2) { background: rgba(255, 61, 166, .1); }
.compare .yes { color: var(--teal); font-weight: 900; }
.compare .no { color: rgba(255, 243, 249, .45); }
.compare .meh { color: var(--gold); }

/* 404 */
.lost {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.2rem;
  position: relative;
  z-index: 5;
}
.lost h1 { font-size: clamp(4rem, 16vw, 9rem); line-height: 1; }
.lost p { margin: 1.2rem 0 2rem; color: rgba(255, 243, 249, .85); }

/* ============ footer ============ */

.footer__nav { display: flex; gap: 1.4rem; justify-content: center; margin-top: 1rem; }
.footer__nav a {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 243, 249, .65);
  text-decoration: none;
}
.footer__nav a:hover { color: var(--cyan); }
.footer__bots { border: 1px dashed rgba(53, 214, 255, .45); padding: .25rem .55rem; }

.footer {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 3.2rem 1.2rem 3.6rem;
  border-top: 4px solid var(--ink);
  background: var(--ink);
}
.footer__brand {
  font-family: "Bungee", cursive;
  font-size: 1.4rem;
  color: var(--pink);
  text-shadow: 0 0 18px rgba(255, 61, 166, .8);
  animation: neon-flicker 7s linear infinite;
}
.footer__brand span { color: var(--cyan); text-shadow: 0 0 18px rgba(53, 214, 255, .8); }
.footer__line { margin-top: .6rem; font-size: .82rem; color: rgba(255, 243, 249, .5); letter-spacing: .08em; }

@keyframes neon-flicker {
  0%, 6.5%, 7.5%, 42%, 43.5%, 100% { opacity: 1; }
  7%, 42.8% { opacity: .35; }
  43.2% { opacity: .6; }
}

/* ============ scroll reveals ============ */

[data-reveal] {
  opacity: 0;
  transition:
    transform .85s cubic-bezier(.22, 1.35, .36, 1),
    opacity .45s ease-out;
  transition-delay: var(--d, 0s);
  will-change: transform, opacity;
}
[data-reveal="rise"] { transform: translateY(52px); }
[data-reveal="left"] { transform: translateX(-80px) rotate(-2.5deg); }
[data-reveal="right"] { transform: translateX(80px) rotate(2.5deg); }
[data-reveal="slam"] { transform: scale(1.16) rotate(calc(var(--tilt, 0deg) * 3.5)); }
[data-reveal="pop"] { transform: scale(.55) rotate(-7deg); }
[data-reveal].in {
  opacity: 1;
  transform: rotate(var(--tilt, 0deg));
}
/* scrolling back up: entrances flip so everything falls IN from above and
   pops back out the way it came — the page plays in reverse */
html[data-scroll-dir="up"] [data-reveal="rise"]:not(.in) { transform: translateY(-52px); }
html[data-scroll-dir="up"] [data-reveal="left"]:not(.in) { transform: translateX(-80px) rotate(2.5deg); }
html[data-scroll-dir="up"] [data-reveal="right"]:not(.in) { transform: translateX(80px) rotate(-2.5deg); }
html[data-scroll-dir="up"] [data-reveal="slam"]:not(.in) { transform: scale(.7) rotate(calc(var(--tilt, 0deg) * -3)); }

/* ============ responsive ============ */

@media (max-width: 980px) {
  .panels { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .panel--b, .panel--c { margin-top: 0; }
  .split, .split--flip { grid-template-columns: 1fr; }
  .split--flip .split__figure { order: 1; }
  .split--flip .split__copy { order: 2; }
  .split__figure img.cutout { max-height: 62vh; width: auto; }
  .dialers { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan--featured { scale: 1; }
  .scene__inner--cta { grid-template-columns: 1fr; align-items: start; }
  .cta__figure { order: 2; margin-bottom: calc(-1 * clamp(6rem, 12vw, 10rem)); }
  .cta__figure img.cutout { max-height: 52vh; width: auto; margin: 0 auto; }
}

@media (max-width: 720px) {
  :root { --hero-vh: 380vh; }
  .hero__right { display: none; }
  .hero__left {
    /* sit low so Ricky's face stays clear above the sign */
    top: auto;
    bottom: 12vh;
    left: 1rem;
    right: 1rem;
    max-width: none;
    padding: 1.2rem 1.2rem 1.4rem;
  }
  .hero__left .caption--tilt { max-width: none; }
  .grid { grid-template-columns: 1fr; }
  .nav__links a:not(.nav__cta) { display: none; }
  .burst { width: 88px; height: 88px; font-size: .68rem; }
  .panel .burst { top: -26px; right: -12px; }
}

/* ============ reduced motion ============ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  :root { --hero-vh: 100vh; }
  #hero-video-wrap { position: absolute; height: 100vh; }
  .hero__stage { position: absolute; height: 100vh; }
  .hero__right, .hero__indicator { display: none; }
  .hero__reveal { position: relative; min-height: auto; padding-top: 6rem; }
  .reveal__card > * { opacity: 1; }
  .hero { height: auto; }
  [data-reveal] { opacity: 1; transform: rotate(var(--tilt, 0deg)); transition: none; }
  .ticker__track { animation: none; }
  .cutout--float, .hero__chevron, .footer__brand,
  .neon--cyan, .neon--pink, .neon--gold, .hero__title-script { animation: none; }
  .hero__booked { display: none; }
  .vicebg__grid, .vicebg__scan { animation: none; }
  .scrollbar { display: none; }
  .panel:hover .panel__art img { transform: none; }
}
