/* ============================================================
   20 YEARS OF LOW DOWN DEEP - London
   Signup / announce / general-sale pages. One shell, three states
   of knowledge: teaser (video), announce (artwork), on sale (link).

   Visual language taken from the client artwork: a real neon sign
   in a smoke-filled room. The room stays behind everything, blurred
   to light and haze; the neon is the only thing in focus.

   Signature: the CHEVRON RULE - a hairline that breaks for a small
   neon chevron pointing down. It is the arrow inside the client's
   own "20" pin, and it is the label's name drawn as a mark: low,
   down, deep. Used exactly once per panel state and nowhere else.
   ============================================================ */

/* Big Shoulders Display (OFL) - tall condensed caps, standing in for the
   client's DELIRIUMNCV title face. One variable file covers 600-800. */
@font-face {
  font-family: "Big Shoulders Display";
  src: url("/assets/fonts/BigShouldersDisplay-var.woff2?v=20260820-11") format("woff2");
  font-weight: 600 800; font-style: normal; font-display: swap;
}
/* Jost (OFL) - geometric sans, the free stand-in for the client's
   ITC Avant Garde Gothic Pro body face. */
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-var.woff2?v=20260820-11") format("woff2");
  font-weight: 400 600; font-style: normal; font-display: swap;
}

:root {
  /* every value sampled from the supplied artwork, not chosen */
  --void:   #0A0710;                    /* near-black aubergine, page base */
  --pitch:  #06040A;
  --blood:  #F93E66;                    /* the drip red-pink, sampled from the artwork */
  --blood-hi: #FF6285;
  --tube:   #6E70E8;                    /* neon tube violet, lifted off #4244C5 for contrast */
  --tube-deep: #4244C5;
  --ember:  #D32521;                    /* the pin's outer ring */
  --bone:   #F6E7EE;
  --dust:   rgba(246, 231, 238, 0.66);
  --hush:   rgba(246, 231, 238, 0.16);
  --err:    #FF9AA8;

  --panel-bg: rgba(14, 10, 22, 0.82);   /* translucent: the room hazes through */
  --field-bg: rgba(246, 231, 238, 0.055);
  /* the field/panel/room stack flattened to one opaque value - this is what
     the Chrome autofill box-shadow has to match, NOT the field's own rgba */
  --field-flat: #1F1926;

  --font:      "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-disp: "Big Shoulders Display", "Jost", Impact, Haettenschweiler, sans-serif;

  --gut: clamp(16px, 4vw, 40px);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
/* html carries the base colour; body stays transparent so it can never paint
   over the z-index:-1 room layer */
html { background: var(--void); }
body {
  position: relative;
  background: transparent;
  color: var(--bone);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Honeypot - display:none ONLY. Off-screen positioning is still an autofill
   target in Chrome/Edge, which silently blocks real signups. */
.hp-row { display: none !important; }

/* ============================================================
   THE ROOM - blurred to light and haze, fixed behind everything
   ============================================================ */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("/assets/images/bg-mobile.webp?v=20260820-11") center center / cover no-repeat,
              var(--void);
}
/* pulls the centre down so panel text always has a dark bed under it */
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 82% at 50% 40%, rgba(10, 7, 16, 0.16) 0%, rgba(10, 7, 16, 0.70) 62%, rgba(6, 4, 10, 0.90) 100%),
    linear-gradient(180deg, rgba(6, 4, 10, 0.55) 0%, rgba(6, 4, 10, 0.10) 34%, rgba(6, 4, 10, 0.78) 100%);
}

.sheet {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* ============================================================
   STAGE
   ============================================================ */
.stage {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: clamp(20px, 4vh, 44px) var(--gut) clamp(24px, 4vh, 44px);
}
.stage__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;                       /* auto at EVERY breakpoint */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(22px, 4vh, 38px);
}

/* ============================================================
   MEDIA COLUMN - the teaser film, or the announce artwork
   ============================================================ */
.media {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

/* --- teaser film ------------------------------------------- */
.film {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 56svh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--pitch);
  box-shadow:
    0 0 0 1px rgba(110, 112, 232, 0.30),
    0 0 34px rgba(66, 68, 197, 0.20),
    0 26px 64px rgba(0, 0, 0, 0.62);
}
.film__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* The fallback still MUST sit ABOVE the video: a <video> paints its own
   current frame - including frame 0 before playback - straight over
   anything behind it, so a poster layered underneath is a hidden image.
   Faded in only when playback is known not to be happening. */
.film__fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.film.is-stalled .film__fallback { opacity: 1; }

.film__sound {
  position: absolute;
  z-index: 2;
  right: 10px; bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(246, 231, 238, 0.28);
  border-radius: 999px;
  background: rgba(6, 4, 10, 0.60);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--bone);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.film__sound:hover { border-color: var(--blood); background: rgba(6, 4, 10, 0.78); }
.film__sound svg { width: 14px; height: 14px; flex: 0 0 auto; }
.film__sound .film__sound-on  { display: none; }
.film.is-audible .film__sound-on  { display: block; }
.film.is-audible .film__sound-off { display: none; }

/* --- announce / gensale artwork ----------------------------- */
.poster {
  display: block;
  width: 100%;
  height: auto;
  max-height: 62svh;
  object-fit: contain;
  margin: 0 auto;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.66);
}

/* ============================================================
   PANEL
   ============================================================ */
.signup { width: 100%; max-width: 480px; margin: 0 auto; }

.panel {
  isolation: isolate;                   /* keeps the country dropdown above the frame */
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: clamp(24px, 4.4vw, 34px) clamp(20px, 4vw, 32px) clamp(26px, 4.4vw, 34px);
  background: var(--panel-bg);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  backdrop-filter: blur(14px) saturate(115%);
  box-shadow:
    inset 0 0 0 1px rgba(246, 231, 238, 0.10),
    inset 0 1px 0 rgba(246, 231, 238, 0.14),
    0 30px 70px rgba(0, 0, 0, 0.55);
}
.panel__inner { position: relative; z-index: 1; }

/* exactly one state visible at a time; each carries its own full
   eyebrow + title + lede so nothing stacks through from idle */
.panel__state { display: none; }
.panel[data-form-state="idle"]    .panel__idle,
.panel[data-form-state="otp"]     .panel__otp,
.panel[data-form-state="success"] .panel__success { display: block; }

/* --- the pin: the client's own neon sign, live above the panel --- */
/* Sized off legibility, not off the layout. The pin is a wordmark, not an
   ornament: at the old clamp(76px, 13vw, 104px) the "LOW DOWN DEEP" line
   inside it rendered with a 4.5-6px cap-height and could not be read at any
   viewport (Adam, 2026-08-20). ~11px is the floor for that line, which puts
   the pin at 184px on desktop and 140px on a phone. */
.mark {
  display: block;
  /* Built from the client's cut-out `icon_cut.png`, with the alpha derived
     from LUMINANCE rather than from their selection.

     Every earlier attempt kept the sign's dark backing plate, which is lighter
     than the panel, so it read as a teardrop shape with a detectable boundary
     - and no amount of smoothing or feathering the matte fixed that, because
     the boundary itself was the problem. Deriving alpha from light dissolves
     the plate entirely: there is no silhouette, so there is nothing left to be
     ragged. The pink face glow that the alpha removes is put back as a baked
     bloom underneath.

     The sign is 73.38% of this image's width; the rest is bloom falloff.
     Recompute these if the asset changes; do not eyeball it. */
  width: clamp(196px, 41vw, 257px);
  height: auto;
  margin: -20px auto -8px;
}
/* --- eyebrow --- */
.panel__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--dust);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}
.panel__eyebrow-hair {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(246, 231, 238, 0) 0%, var(--hush) 100%);
}
.panel__eyebrow-hair:last-child {
  background: linear-gradient(90deg, var(--hush) 0%, rgba(246, 231, 238, 0) 100%);
}

/* --- title --- */
.panel__title {
  margin: 0;
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: clamp(2.5rem, 8.4vw, 3.9rem);
  line-height: 0.84;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-wrap: balance;                   /* never nowrap - it reads as off-centre */
  color: var(--bone);
}
.panel__title em {
  display: block;
  font-style: normal;
  color: var(--blood);
}

/* --- place / date line under the title --- */
.panel__where {
  margin: 12px 0 0;
  font-size: clamp(0.82rem, 3vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
}
.panel__when {
  margin: 4px 0 0;
  font-size: clamp(0.74rem, 2.6vw, 0.84rem);
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dust);
}

/* ============================================================
   THE CHEVRON RULE - signature. The arrow out of the client's pin.
   One per panel state.
   ============================================================ */
.chev {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: clamp(16px, 2.6vh, 22px) 0 clamp(14px, 2.4vh, 20px);
}
.chev::before,
.chev::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(110, 112, 232, 0) 0%, rgba(110, 112, 232, 0.62) 100%);
}
.chev::after {
  background: linear-gradient(90deg, rgba(110, 112, 232, 0.62) 0%, rgba(110, 112, 232, 0) 100%);
}
.chev__tip {
  flex: 0 0 auto;
  width: 11px; height: 11px;
  border-right: 2px solid var(--tube);
  border-bottom: 2px solid var(--tube);
  transform: rotate(45deg) translate(-2px, -2px);
  /* a real tube glow, in the pin's own two colours */
  box-shadow: 2px 2px 9px rgba(110, 112, 232, 0.75);
  filter: drop-shadow(0 0 3px rgba(211, 37, 33, 0.55));
}

/* --- lede --- */
.panel__lede {
  margin: 0;
  color: var(--dust);
  font-size: clamp(0.88rem, 3vw, 0.96rem);
  line-height: 1.58;
}
.panel__lede strong { color: var(--bone); font-weight: 600; }

/* ============================================================
   COUNTDOWN (announce page) - wells with GAP between them,
   never butted borders
   ============================================================ */
.clock {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
  list-style: none;
  padding: 0;
}
.clock__cell {
  padding: 10px 4px 8px;
  background: rgba(246, 231, 238, 0.05);
  box-shadow: inset 0 0 0 1px rgba(246, 231, 238, 0.10);
  text-align: center;
}
.clock__num {
  display: block;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(1.5rem, 6.4vw, 2rem);
  line-height: 1;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
}
.clock__lab {
  display: block;
  margin-top: 4px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dust);
}
.clock__note {
  margin: 10px 0 0;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blood);
  text-align: center;
}

/* ============================================================
   FORM
   ============================================================ */
.form { margin: clamp(18px, 3vh, 24px) 0 0; }
.form__row { margin: 0 0 13px; }
.form__row--check { margin: 16px 0 0; }

/* labels stay for screen readers; placeholders carry the meaning visually */
.form__label {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form__input {
  width: 100%;
  padding: 14px 15px;
  border: 0;
  border-radius: 0;
  background: var(--field-bg);
  box-shadow: inset 0 0 0 1px rgba(246, 231, 238, 0.16);
  color: var(--bone);
  font-family: var(--font);
  font-size: 16px;                      /* 16px minimum or iOS zooms on focus */
  line-height: 1.3;
  transition: box-shadow 0.15s ease, background-color 0.15s ease;
}
.form__input::placeholder { color: rgba(246, 231, 238, 0.34); }
.form__input:focus {
  outline: none;
  background: rgba(246, 231, 238, 0.085);
  box-shadow: inset 0 0 0 1px var(--blood), 0 0 0 3px rgba(249, 62, 102, 0.16);
}

/* Chrome paints autofilled fields pale lavender and ignores background /
   background-color. The only override is a huge inset box-shadow, and its
   colour must be the FLATTENED opaque equivalent of the field's rendered
   stack (field over panel over room), never the field's own rgba. */
.form__input:-webkit-autofill,
.form__input:-webkit-autofill:hover,
.form__input:-webkit-autofill:focus,
.form__input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--field-flat) inset !important;
          box-shadow: 0 0 0 1000px var(--field-flat) inset !important;
  -webkit-text-fill-color: var(--bone) !important;
  caret-color: var(--bone);
  /* without this Chrome flashes the lavender in before the shadow paints */
  transition: background-color 9999s ease-in-out 0s;
}

.form__check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  cursor: pointer;
  color: var(--dust);
  font-size: 12.5px;
  line-height: 1.5;
}
.form__check input {
  flex: 0 0 auto;
  width: 17px; height: 17px;
  margin: 2px 0 0;
  accent-color: var(--blood);
  cursor: pointer;
}
.form__check a { color: var(--blood); text-decoration: underline; }

.form__error { margin: 6px 0 0; color: var(--err); font-size: 12.5px; }
.form__error--global { margin-top: 12px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 20px 0 0;
  padding: 16px 18px;
  border: 0;
  border-radius: 0;
  font-family: var(--font-disp);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  /* shrink the type before it can wrap - a CTA never breaks to two lines */
  white-space: nowrap;
  font-size: clamp(1rem, 4.2vw, 1.3rem);
  letter-spacing: clamp(0.04em, 0.4vw, 0.12em);
  text-transform: uppercase;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn--primary { background: var(--blood); color: #14060C; }
.btn--primary:hover:not(:disabled) { background: var(--blood-hi); }
.btn--primary:disabled { opacity: 0.62; cursor: wait; }

.btn--ticket {
  background: var(--blood);
  color: #14060C;
  box-shadow: 0 0 26px rgba(249, 62, 102, 0.34);
}
.btn--ticket:hover { background: var(--blood-hi); box-shadow: 0 0 34px rgba(249, 62, 102, 0.48); }

.form__note,
.panel__note {
  margin: 12px 0 0;
  color: var(--dust);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
}

/* success state: scope p rules so they cannot out-specific the eyebrow */
.panel__success p:not(.panel__eyebrow):not(.panel__note) { color: var(--dust); }
.panel__success-note {
  margin: 0 0 10px;
  color: var(--bone);
  font-size: 0.92rem;
}

/* ============================================================
   intl-tel-input - neon dark theme, searchable dropdown
   ============================================================ */
.iti { width: 100%; }
/* repadPhone() re-measures at runtime; this is the safe starting value.
   Anything >= 80px breaks 320-390px viewports. */
.iti input.form__input { padding-left: calc(52px + 0.7rem); }

.iti__selected-country { background: transparent; color: var(--bone); }
.iti__selected-country:hover { background: rgba(246, 231, 238, 0.06); }
.iti__selected-dial-code { color: var(--dust); font-size: 15px; }
.iti__arrow { border-top-color: var(--blood); }
.iti__arrow--up { border-bottom-color: var(--blood); }

.iti__dropdown-content {
  background: #150F1F;
  border: 1px solid rgba(110, 112, 232, 0.34);
  border-radius: 0;
  color: var(--bone);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.68);
}
/* The vendor reserves padding-left:30px / padding-right:28px on the search
   input to clear its absolutely positioned magnifier and clear button. A
   padding SHORTHAND wipes that and the glass lands on top of the word
   "Search" - so set the vertical padding but keep the horizontal reservation. */
.iti__search-input {
  padding: 11px 30px 11px 32px;
  background: rgba(246, 231, 238, 0.05);
  border: none;
  border-bottom: 1px solid rgba(110, 112, 232, 0.30);
  color: var(--bone);
  font-family: var(--font);
  font-size: 15px;
}
.iti__search-input::placeholder { color: rgba(246, 231, 238, 0.36); }
.iti__search-input:focus { outline: none; border-bottom-color: var(--blood); }
.iti__country-list { background: transparent; }
.iti__country { padding: 9px 13px; font-size: 14.5px; }
.iti__country.iti__highlight { background: rgba(249, 62, 102, 0.20); }
.iti__country:hover { background: rgba(249, 62, 102, 0.12); }
.iti__dial-code { color: var(--dust); }
.iti--inline-dropdown .iti__dropdown-content { z-index: 50; }
/* the hidden state must not wait on the vendor stylesheet, or the whole
   country list flashes open on first paint */
.iti__dropdown-content.iti__hide { display: none !important; }

/* ============================================================
   FOOTER - basslayerz pattern, full width
   ============================================================ */
.foot {
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  padding: 18px var(--gut) 26px;
  background: rgba(6, 4, 10, 0.62);
  border-top: 1px solid rgba(246, 231, 238, 0.14);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.foot__left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.foot__legal { margin: 0; font-size: 12px; color: var(--dust); letter-spacing: 0.02em; }
.foot__legal a { color: var(--dust); text-decoration: none; }
.foot__legal a:hover { color: var(--blood); }
.site-built { margin: 0; }
.site-built a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--dust);
  text-decoration: none;
  padding: 5px 11px;
  border: 1px solid rgba(246, 231, 238, 0.16);
  border-radius: 999px;
}
.site-built a:hover { border-color: var(--blood); color: var(--bone); }
.site-built img { display: block; opacity: 0.9; }

/* ============================================================
   LAYOUT - two columns in landscape, stacked in portrait.
   Aspect-ratio thresholds, not width alone: width-only breakpoints
   leave gaps at squarish window shapes where neither treatment applies.
   ============================================================ */
@media (min-width: 768px) and (min-aspect-ratio: 7/10) {
  .bg { background-image: url("/assets/images/bg-desktop.webp?v=20260820-11"); }

  .stage__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(30px, 5vw, 70px);
  }
  .media  { justify-self: end;   max-width: 480px; }
  .signup { justify-self: start; max-width: 470px; }
  .film   { max-height: min(74svh, 620px); }
  .poster { max-height: min(80svh, 760px); }
  .panel__title { font-size: clamp(2.6rem, 3.9vw, 3.6rem); }
}

@media (max-width: 767px), (max-aspect-ratio: 7/10) {
  .foot { justify-content: center; text-align: center; }
  .foot__left { justify-content: center; }
}

/* Landscape phones are a first-class layout, not an edge case: rotated, a
   phone satisfies the width and aspect conditions above but has almost no
   height. Placed AFTER the desktop block so it wins at equal specificity. */
@media (min-width: 640px) and (min-aspect-ratio: 7/10) and (max-height: 520px) {
  .stage { padding: 14px var(--gut) 16px; }
  .stage__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: clamp(18px, 3vw, 30px);
    min-height: 0;
  }
  .media  { max-width: none; justify-self: end; }
  .film   { max-height: calc(100svh - 60px); width: auto; aspect-ratio: 3 / 4; height: calc(100svh - 60px); }
  .poster { max-height: calc(100svh - 60px); width: auto; }
  .signup { justify-self: start; max-width: 440px; }
  .panel  { padding: 16px 18px 18px; }
  .mark   { width: 145px; margin: -14px auto -6px; }
  .panel__title { font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
  .panel__eyebrow { margin-bottom: 9px; }
  .chev { margin: 10px 0 9px; }
  .panel__lede { font-size: 0.8rem; line-height: 1.45; }
  .form { margin-top: 13px; }
  .form__row { margin-bottom: 9px; }
  .form__input { padding: 10px 13px; }
  .btn { margin-top: 13px; padding: 12px 16px; }
  .clock__cell { padding: 6px 3px 5px; }
  .foot { padding: 8px var(--gut) 10px; }
}

/* very small phones */
@media (max-width: 360px) {
  .panel { padding: 20px 16px 22px; }
  .panel__eyebrow { gap: 8px; letter-spacing: 0.18em; }
  .clock { gap: 6px; }
}

/* ============================================================
   MOTION - one orchestrated entrance, then nothing moves.
   The neon warms up: the panel rises, the chevron strikes once.
   ============================================================ */
@keyframes lddRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes lddStrike {
  0%   { opacity: 0; }
  35%  { opacity: 1; }
  45%  { opacity: 0.25; }
  60%  { opacity: 1; }
  70%  { opacity: 0.4; }
  100% { opacity: 1; }
}
.media, .signup { animation: lddRise 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
.signup { animation-delay: 0.1s; }
.panel[data-form-state="idle"] .chev__tip { animation: lddStrike 1.1s ease-out 0.5s both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.iti__selected-country:focus-visible {
  outline: 2px solid var(--blood);
  outline-offset: 2px;
}
