/* ==========================================================================
   Blackout Party vol. 01 — 19. 09. 2026, Klub Wax2 Bratislava
   Mobile-first single column, max 600px. Dark, amber accent, film grain.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
  --bg: #050506;
  --panel: #0b0b0d;
  --fg: #eae8e6;
  --fg-rgb: 234 232 230;

  /* Accent. Swap with [data-accent] on <html>, or override --ac here. */
  --ac: #f6c343;

  --shell: 600px;
  --gutter: 20px;
  --nav-h: 78px;

  --sans: Archivo, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease-out: cubic-bezier(0.22, 0.8, 0.24, 1);
  --ease-wipe: cubic-bezier(0.16, 1, 0.3, 1);
}

@supports (color: oklch(0.84 0.15 86)) {
  :root { --ac: oklch(0.84 0.15 86); }
  :root[data-accent="red"]    { --ac: oklch(0.72 0.19 25); }
  :root[data-accent="cyan"]   { --ac: oklch(0.78 0.15 200); }
  :root[data-accent="violet"] { --ac: oklch(0.75 0.18 305); }
}

:root {
  --ac-60: color-mix(in oklab, var(--ac) 60%, transparent);
  --ac-35: color-mix(in oklab, var(--ac) 35%, transparent);
  --ac-32: color-mix(in oklab, var(--ac) 32%, transparent);
  --ac-30: color-mix(in oklab, var(--ac) 30%, transparent);
  --ac-22: color-mix(in oklab, var(--ac) 22%, transparent);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--fg); text-decoration: none; }
a:hover { color: var(--ac); }
:focus-visible { outline: 2px solid var(--ac); outline-offset: 3px; }
::selection { background: var(--ac); color: var(--bg); }

h1, h2, p, dl, dd, figure, ul { margin: 0; }
ul { padding: 0; list-style: none; }

.shell {
  position: relative;
  max-width: var(--shell);
  margin-inline: auto;
  padding-bottom: 96px;
}

/* --------------------------------------------------------------------------
   Chrome: progress bar, nav, grain
   -------------------------------------------------------------------------- */
.progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 40;
  background: rgb(var(--fg-rgb) / 0.08);
}
.progress__bar {
  display: block;
  height: 100%;
  background: var(--ac);
  transform: scaleX(var(--p, 0));
  transform-origin: 0 50%;
}

.nav {
  position: fixed;
  inset: 2px 0 auto;
  z-index: 38;
  display: flex;
  justify-content: center;
  background: rgb(5 5 6 / 0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgb(var(--fg-rgb) / 0.1);
  animation: ax-navin 0.4s var(--ease-out) both;
}
.nav[hidden] { display: none; }
.nav__inner {
  width: 100%;
  max-width: var(--shell);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px var(--gutter);
}
.nav__brand {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav__links a { color: rgb(var(--fg-rgb) / 0.7); transition: color 0.2s ease; }
.nav__links a:hover { color: var(--fg); }
.nav__ticket, .nav__links .nav__ticket { color: var(--ac); }

.grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: screen;
}
.grain span {
  position: absolute;
  inset: -5%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='150' height='150'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='150' height='150' filter='url(%23n)'/></svg>");
  animation: ax-grain 1.4s steps(3) infinite;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(26px + env(safe-area-inset-bottom, 0px));
  overflow: hidden;
}

.hero__media {
  position: relative;
  flex: none;
  height: 52svh;
  min-height: 260px;
  overflow: hidden;
  transform: scale(var(--s, 1.1)) translateY(var(--y, 0%));
  will-change: transform;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgb(5 5 6 / 0.55) 0%,
    rgb(5 5 6 / 0.12) 40%,
    rgb(5 5 6 / 0.86) 84%,
    var(--bg) 100%);
}
.hero__flash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: #fff;
  mix-blend-mode: screen;
  animation: ax-flash 3s ease-out 0.2s 1 both;
}

.beam {
  position: absolute;
  top: -20%;
  height: 150%;
  pointer-events: none;
  filter: blur(16px);
  animation: ax-beam 6s ease-in-out infinite;
}
.beam--a {
  left: 8%;
  width: 34%;
  background: linear-gradient(180deg, var(--ac-35), transparent 72%);
}
.beam--b {
  right: 12%;
  width: 26%;
  background: linear-gradient(180deg, var(--ac-22), transparent 68%);
  filter: blur(18px);
  animation-duration: 7.5s;
  animation-delay: 1s;
  animation-direction: reverse;
}

/* Sits on .hero, not .hero__media: the parallax transform would carry it
   off-screen at rest (see README). */
.hero__tag {
  position: absolute;
  top: 18px;
  left: var(--gutter);
  right: var(--gutter);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(var(--fg-rgb) / 0.8);
  animation: ax-up 0.7s ease-out both;
}
.hero__live { display: flex; align-items: center; gap: 7px; }
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ac);
  animation: ax-pulse 2.2s ease-in-out infinite;
}

.hero__body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 22px;
  margin-top: -34px;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ac);
  animation: ax-up 0.8s ease-out 0.1s both;
}

.wordmark {
  margin-top: 10px;
  font-weight: 900;
  font-size: min(15vw, 94px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: ax-clip 0.9s var(--ease-out) 0.2s both;
}

/* The "o" of Blackout, drawn as a bulb: ring with a notch + filament stem. */
.bulb {
  position: relative;
  display: inline-block;
  width: 0.74em;
  height: 0.74em;
  margin: 0 0.03em;
  vertical-align: -0.015em;
  color: var(--ac);
  animation: ax-flick 5s steps(1, end) 1.4s infinite;
}
.bulb__ring {
  position: absolute;
  inset: 0;
  border: 0.105em solid currentColor;
  border-radius: 50%;
  clip-path: polygon(0 0, 37% 0, 37% 27%, 63% 27%, 63% 0, 100% 0, 100% 100%, 0 100%);
}
.bulb__stem {
  position: absolute;
  left: 50%;
  top: -0.05em;
  width: 0.105em;
  height: 0.36em;
  background: currentColor;
  border-radius: 0.06em;
  transform: translateX(-50%);
}

.rule {
  display: block;
  margin-top: 16px;
  height: 1px;
  background: rgb(var(--fg-rgb) / 0.2);
  transform-origin: 0 50%;
  animation: ax-rule 0.9s var(--ease-out) 0.7s both;
}

.facts {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(var(--fg-rgb) / 0.86);
  animation: ax-up 0.8s ease-out 0.8s both;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
  animation: ax-up 0.8s ease-out 0.95s both;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding-inline: 22px;
  overflow: hidden;
  background: var(--ac);
  color: var(--bg);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: ax-halo 5s ease-in-out 2.2s infinite;
  transition: transform 0.25s var(--ease-out), filter 0.25s ease;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.5), transparent);
  animation: ax-shine 5s ease-in-out 1.8s infinite;
}
.cta:hover { color: var(--bg); filter: brightness(1.08); transform: translateY(-2px); }
.cta:active { transform: translateY(0); }
.cta__price { font-family: var(--mono); font-size: 12px; }

.cta--center {
  margin-top: 22px;
  justify-content: center;
  gap: 14px;
  animation-delay: 0s;
}
.cta--center::before { animation-delay: 0s; }

.cta-row { display: flex; gap: 9px; }
.btn-ghost {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid rgb(var(--fg-rgb) / 0.22);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.btn-ghost:hover {
  color: var(--fg);
  border-color: rgb(var(--fg-rgb) / 0.68);
  background: rgb(var(--fg-rgb) / 0.05);
}

.btn-outline {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding-inline: 17px;
  border: 1px solid var(--ac);
  color: var(--ac);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-outline:hover { background: var(--ac); color: var(--bg); }

/* --------------------------------------------------------------------------
   Countdown
   -------------------------------------------------------------------------- */
.countdown {
  padding: 26px var(--gutter) 30px;
  border-top: 1px solid rgb(var(--fg-rgb) / 0.1);
}
.cd__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(var(--fg-rgb) / 0.5);
}
.cd__grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.cd__cell { display: flex; flex-direction: column; gap: 7px; }
.cd__num {
  font-weight: 900;
  font-size: clamp(28px, 9.5vw, 44px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.cd__num--ac { color: var(--ac); }
.cd__hr { height: 1px; background: rgb(var(--fg-rgb) / 0.14); }
.cd__label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(var(--fg-rgb) / 0.48);
}

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgb(var(--fg-rgb) / 0.1);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: ax-marquee 26s linear infinite;
}
.marquee__group {
  flex: none;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px var(--gutter) 11px 10px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(var(--fg-rgb) / 0.7);
}
.marquee__group i { color: var(--ac); font-style: normal; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: 48px var(--gutter) 0; }
.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.section__title {
  font-weight: 900;
  font-size: clamp(28px, 9vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  scroll-margin-top: var(--nav-h);
}
.section__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(var(--fg-rgb) / 0.48);
}

/* Line-up ---------------------------------------------------------------- */
.lineup { margin-top: 22px; display: flex; flex-direction: column; }
.set {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 4px;
  border-top: 1px solid rgb(var(--fg-rgb) / 0.12);
  transition: padding-left 0.3s ease;
}
.set:last-child { border-bottom: 1px solid rgb(var(--fg-rgb) / 0.12); }
.set:hover { padding-left: 14px; }
.set__time {
  min-width: 90px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ac);
}
.set__name {
  flex: 1;
  font-weight: 900;
  font-size: clamp(24px, 8vw, 34px);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

/* Perks ------------------------------------------------------------------ */
.perks { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.perk {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 19px 17px;
  background: var(--panel);
  border: 1px solid rgb(var(--fg-rgb) / 0.09);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.perk:hover { border-color: rgb(var(--fg-rgb) / 0.3); transform: translateY(-2px); }
.perk__no {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ac);
}
.perk__text { font-size: 15.5px; font-weight: 600; }

/* Scroll-driven band ----------------------------------------------------- */
.band {
  margin-top: 44px;
  padding: 26px 0 22px;
  overflow: hidden;
  border-block: 1px solid rgb(var(--fg-rgb) / 0.1);
}
.band__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-weight: 900;
  font-size: clamp(42px, 12.5vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgb(var(--fg-rgb) / 0.45);
  transform: translateX(var(--x, 0%));
  will-change: transform;
}
.band__track > span { flex: none; padding-right: 26px; }
.band__ac { color: var(--ac); -webkit-text-stroke: 0; }

/* Tickets ---------------------------------------------------------------- */
.tiers { margin-top: 20px; display: flex; flex-direction: column; }
.tier {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 4px;
  border-top: 1px solid rgb(var(--fg-rgb) / 0.12);
}
.tier:last-child { border-bottom: 1px solid rgb(var(--fg-rgb) / 0.12); }
.tier__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(var(--fg-rgb) / 0.7);
}
.tier__price { font-weight: 900; font-size: 23px; letter-spacing: -0.035em; }
.tier--door .tier__label,
.tier--door .tier__price { color: rgb(var(--fg-rgb) / 0.46); }

/* Sold-out wave: barrier tape crossed over the row. The row clips the tape,
   so the four ends are cut off at its edges. */
.tier--past {
  position: relative;
  overflow: hidden;
  align-items: center;
  min-height: 104px;
}
.tier--past .tier__label,
.tier--past .tier__price { color: rgb(var(--fg-rgb) / 0.4); }

.tape { position: absolute; inset: 0; pointer-events: none; }
.tape__strip {
  position: absolute;
  top: 50%;
  left: -14%;
  width: 128%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 6px 0;
  background:
    linear-gradient(180deg,
      rgb(255 255 255 / 0.3) 0%,
      rgb(255 255 255 / 0) 42%,
      rgb(0 0 0 / 0.17) 100%),
    var(--ac);
  box-shadow:
    inset 0 1px rgb(0 0 0 / 0.2),
    inset 0 -1px rgb(0 0 0 / 0.2),
    0 3px 14px rgb(0 0 0 / 0.5);
  color: var(--bg);
  font-family: var(--mono);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tape__strip--a { transform: translateY(-50%) rotate(-11deg); }
.tape__strip--b { transform: translateY(-50%) rotate(11deg); }

/* Visually hidden, still announced. */
.u-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* The wave on sale right now — lifted onto its own panel with an accent edge,
   so it wins attention against the sold-out tape above it. */
.tier--now {
  position: relative;
  /* The list aligns rows on the baseline, which drags the small label down to
     meet the 29px price. Inside a panel, centre both instead. */
  align-items: center;
  padding: 22px 18px 22px 20px;
  border-top-color: transparent;
  background:
    linear-gradient(90deg,
      color-mix(in oklab, var(--ac) 13%, transparent) 0%,
      color-mix(in oklab, var(--ac) 4%, transparent) 46%,
      transparent 82%),
    var(--panel);
  box-shadow:
    inset 0 0 0 1px color-mix(in oklab, var(--ac) 20%, transparent),
    0 10px 34px color-mix(in oklab, var(--ac) 9%, transparent);
}
.tier--now::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ac);
}
.tier--now .tier__label {
  color: var(--fg);
  font-weight: 500;
}
.tier--now .tier__price {
  color: var(--ac);
  font-size: 29px;
  letter-spacing: -0.04em;
}
.tier--now .tier__tag {
  background: var(--ac);
  color: var(--bg);
  font-weight: 600;
}
.tier__tag {
  margin-left: 8px;
  padding: 2px 6px;
  border: 1px solid var(--ac);
  color: var(--ac);
  font-style: normal;
  font-size: 8.5px;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.note {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: rgb(var(--fg-rgb) / 0.58);
}

/* Info grid -------------------------------------------------------------- */
.info {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgb(var(--fg-rgb) / 0.1);
  border: 1px solid rgb(var(--fg-rgb) / 0.1);
}
.info__cell { background: var(--bg); padding: 17px 15px; }
.info__k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(var(--fg-rgb) / 0.46);
}
.info__v { margin: 7px 0 0; font-size: 15px; font-weight: 600; }

/* Venue ------------------------------------------------------------------ */
.venue {
  margin-top: 20px;
  padding: 20px 18px;
  background: var(--panel);
  border: 1px solid rgb(var(--fg-rgb) / 0.09);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.venue__name {
  font-weight: 900;
  font-size: 25px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.venue__addr { font-size: 14.5px; color: rgb(var(--fg-rgb) / 0.76); }

/* Finale ----------------------------------------------------------------- */
.finale {
  position: relative;
  margin-top: 52px;
  padding: 60px var(--gutter) 52px;
  border-top: 1px solid rgb(var(--fg-rgb) / 0.1);
  overflow: hidden;
  text-align: center;
}
.finale__beam {
  top: -30%;
  left: 20%;
  width: 30%;
  height: 160%;
  background: linear-gradient(180deg, var(--ac-30), transparent 70%);
  filter: blur(18px);
  animation-duration: 7s;
}
.finale__inner { position: relative; }
.finale__eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgb(var(--fg-rgb) / 0.58);
}
.finale__title {
  margin-top: 12px;
  font-weight: 900;
  font-size: clamp(40px, 15vw, 74px);
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.finale__note {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.55;
  color: rgb(var(--fg-rgb) / 0.66);
}

/* Footer ----------------------------------------------------------------- */
.footer {
  padding: 26px var(--gutter) 34px;
  border-top: 1px solid rgb(var(--fg-rgb) / 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer__word {
  font-weight: 900;
  font-size: min(15vw, 94px);
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgb(var(--fg-rgb) / 0.16);
}
.footer__legal {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: rgb(var(--fg-rgb) / 0.38);
}

/* --------------------------------------------------------------------------
   Sticky buy bar
   -------------------------------------------------------------------------- */
.dock {
  position: fixed;
  inset: auto 0 0;
  z-index: 35;
  display: flex;
  justify-content: center;
  padding: 10px 12px calc(14px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgb(5 5 6 / 0) 0%, rgb(5 5 6 / 0.92) 42%, var(--bg) 100%);
  animation: ax-up 0.4s ease-out both;
}
.dock[hidden] { display: none; }
.dock__cta {
  position: relative;
  width: 100%;
  max-width: 576px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding-inline: 20px;
  overflow: hidden;
  background: var(--ac);
  color: var(--bg);
}
.dock__cta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.45), transparent);
  animation: ax-shine 4.5s ease-in-out 1s infinite;
}
.dock__cta:hover, .dock__cta:active { color: var(--bg); }
.dock__cta:active { transform: translateY(1px); }
.dock__stack { display: flex; flex-direction: column; gap: 3px; }
.dock__label {
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.dock__sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}
.dock__arrow { font-family: var(--mono); font-size: 13px; }

/* --------------------------------------------------------------------------
   Reveal on scroll — gated on .js so the page stays readable without it
   -------------------------------------------------------------------------- */
.js [data-reveal] { opacity: 0; }
.js [data-reveal].is-in { animation: ax-up 0.8s ease-out var(--d, 0s) both; }
.js [data-reveal="wipe"].is-in { animation: ax-wipe 0.9s var(--ease-wipe) var(--d, 0s) both; }
.js [data-reveal="clip"].is-in { animation: ax-clip 0.9s var(--ease-out) var(--d, 0s) both; }

/* --------------------------------------------------------------------------
   Keyframes
   -------------------------------------------------------------------------- */
@keyframes ax-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes ax-clip {
  from { opacity: 0; clip-path: inset(0 0 105% 0); }
  to { opacity: 1; clip-path: inset(-30% -30% -30% -30%); }
}
@keyframes ax-wipe {
  from { opacity: 0; clip-path: inset(0 100% 0 0); }
  to { opacity: 1; clip-path: inset(0 0 0 0); }
}
@keyframes ax-rule {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes ax-flick {
  0%, 41%, 43.5%, 45%, 47.5%, 62%, 64%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 14px var(--ac-60));
  }
  42%, 44.5%, 63% { opacity: 0.12; filter: none; }
  46% { opacity: 0.5; filter: none; }
}
@keyframes ax-beam {
  0%, 100% { opacity: 0.16; transform: translateX(-4%) skewX(-9deg); }
  50% { opacity: 0.4; transform: translateX(4%) skewX(-9deg); }
}
@keyframes ax-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes ax-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
@keyframes ax-grain {
  from { transform: translate(0, 0); }
  to { transform: translate(-2.5%, -2.5%); }
}
@keyframes ax-flash {
  0%, 5%, 11%, 100% { opacity: 0; }
  2.5% { opacity: 0.5; }
  8% { opacity: 0.26; }
}
@keyframes ax-shine {
  0% { transform: translateX(-130%) skewX(-18deg); }
  60%, 100% { transform: translateX(340%) skewX(-18deg); }
}
@keyframes ax-halo {
  0%, 100% { box-shadow: 0 0 0 rgb(0 0 0 / 0); }
  50% { box-shadow: 0 12px 46px var(--ac-32); }
}
@keyframes ax-navin {
  from { opacity: 0; transform: translateY(-110%); }
  to { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .hero__media { transform: none !important; }
  .band__track { transform: none !important; }
}
