:root {
  --void: #070908;
  --ink: #0b100d;
  --panel: #101714;
  --steel: #1c2620;
  --line: rgba(61, 255, 106, 0.2);
  --neon: #3dff6a;
  --neon-hot: #7cff9a;
  --neon-dim: #1a8f3e;
  --chrome: #e8ece9;
  --fog: #8b968e;
  --white: #f6f8f6;
  --font-poster: "Bebas Neue", sans-serif;
  --font-made: "Barlow Condensed", sans-serif;
  --font-num: "Teko", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--void);
  color: var(--white);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(61, 255, 106, 0.12), transparent 58%),
    radial-gradient(circle at 12% 80%, rgba(26, 143, 62, 0.08), transparent 36%),
    radial-gradient(circle at 88% 20%, rgba(61, 255, 106, 0.05), transparent 28%),
    var(--void);
}

.stage-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 9, 8, 0.35) 70%, var(--void) 100%);
}

.stage-sunburst {
  position: absolute;
  width: 140vmax;
  height: 140vmax;
  left: 50%;
  top: 18%;
  translate: -50% -50%;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(61, 255, 106, 0.045) 0deg 6deg,
    transparent 6deg 12deg
  );
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.85), transparent 62%);
  animation: sunspin 80s linear infinite;
}

.stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 255, 106, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 255, 106, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
  animation: griddrift 28s linear infinite;
}

#tape-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.38;
}

.stage-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.025) 0 1px,
    transparent 1px 3px
  );
  opacity: 0.25;
  animation: scanflicker 7s steps(2) infinite;
}

.stage-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(0, 0, 0, 0.72) 100%);
}

.cursor-aura {
  position: fixed;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(61, 255, 106, 0.14), transparent 68%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.is-pointer .cursor-aura {
  opacity: 1;
}

.rail {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 42px;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
  border-color: var(--line);
  border-style: solid;
  background: rgba(7, 9, 8, 0.55);
}

.rail-left {
  left: 0;
  border-right-width: 1px;
}

.rail-right {
  right: 0;
  border-left-width: 1px;
}

.rail-track {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 20px 0;
  animation: railup 26s linear infinite;
}

.rail-track.reverse {
  animation-name: raildown;
}

.rail-track span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon);
  opacity: 0.55;
  white-space: nowrap;
}

.topbar,
main,
footer {
  position: relative;
  z-index: 5;
}

.topbar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 72px;
  backdrop-filter: blur(16px);
  background: rgba(7, 9, 8, 0.62);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, padding 0.3s ease;
}

.topbar.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(7, 9, 8, 0.86);
  padding-top: 12px;
  padding-bottom: 12px;
}

.mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mark-seal {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--line), 0 0 18px rgba(61, 255, 106, 0.25);
}

.mark-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mark-type {
  display: flex;
  flex-direction: column;
  line-height: 0.82;
}

.mark-type em {
  font-family: var(--font-made);
  font-style: italic;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.mark-type b {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 22px;
  color: var(--neon);
  letter-spacing: 0.12em;
}

.menu {
  display: flex;
  gap: 22px;
}

.menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-made);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--fog);
  transition: color 0.2s ease;
}

.menu a i {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10px;
  color: var(--neon);
}

.menu a:hover {
  color: var(--white);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chip,
.buy,
.ghost,
.join-links a,
.board-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.chip {
  width: 40px;
  height: 40px;
  background: rgba(16, 23, 20, 0.8);
}

.chip img,
.buy img,
.ghost img,
.join-links a img,
.board-bar a img,
.ticket-icon img,
.dossier-copy li img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.chip:hover,
.buy:hover,
.ghost:hover,
.join-links a:hover,
.board-bar a:hover {
  transform: translateY(-2px);
  border-color: var(--neon);
  box-shadow: 0 0 22px rgba(61, 255, 106, 0.22);
}

.buy {
  height: 42px;
  padding: 0 16px;
  background: linear-gradient(180deg, #3dff6a, #1a8f3e);
  color: #061108;
  font-family: var(--font-made);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(61, 255, 106, 0.28);
}

.buy img {
  filter: brightness(0.2);
}

.buy-lg {
  height: 52px;
  padding: 0 22px;
  font-size: 18px;
}

.ghost {
  height: 52px;
  padding: 0 18px;
  background: rgba(16, 23, 20, 0.72);
  font-family: var(--font-made);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  padding: 0 11px;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--chrome);
}

main {
  padding: 0 72px 80px;
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 0 18px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.live-pill,
.clock {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog);
}

.live-pill img {
  width: 14px;
  height: 14px;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  animation: pulse 1.6s ease-in-out infinite;
}

.certificate {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 42px 40px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(16, 23, 20, 0.78), rgba(11, 16, 13, 0.88));
  border: 1px solid var(--line);
  box-shadow:
    0 0 0 8px rgba(7, 9, 8, 0.45),
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 0 80px rgba(61, 255, 106, 0.04);
  overflow: hidden;
}

.certificate::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(61, 255, 106, 0.18);
  pointer-events: none;
}

.certificate::after {
  content: "";
  position: absolute;
  left: -20%;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: sheen 7.5s ease-in-out infinite;
  pointer-events: none;
}

.cert-edge i {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--neon);
}

.cert-edge i:nth-child(1) { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.cert-edge i:nth-child(2) { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.cert-edge i:nth-child(3) { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.cert-edge i:nth-child(4) { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.serial,
.cert-kicker,
.idx,
.symbol {
  font-family: var(--font-mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.serial {
  margin: 0 0 8px;
  font-size: 11px;
  color: var(--neon);
}

.serial span {
  animation: flicker 4s step-end infinite;
}

.cert-kicker {
  margin: 0;
  font-size: 12px;
  color: var(--fog);
}

h1 {
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.word-made {
  font-family: var(--font-made);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(64px, 11vw, 128px);
  line-height: 0.82;
  letter-spacing: 0.04em;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.12);
}

.word-num {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: clamp(72px, 14vw, 152px);
  line-height: 0.78;
  color: var(--neon);
  letter-spacing: 0.08em;
  text-shadow:
    0 0 20px rgba(61, 255, 106, 0.45),
    3px 3px 0 #061108;
  animation: numglow 3.2s ease-in-out infinite;
}

.symbol {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--fog);
}

.seal {
  position: relative;
  width: min(340px, 72vw);
  margin: 18px auto 8px;
}

.seal-halo,
.seal-orbit,
.seal-plate {
  border-radius: 50%;
}

.seal-halo {
  position: absolute;
  inset: -18px;
  background: radial-gradient(circle, rgba(61, 255, 106, 0.28), transparent 68%);
  animation: halo 4s ease-in-out infinite;
}

.seal-orbit {
  position: absolute;
  inset: -10px;
  border: 1px dashed rgba(61, 255, 106, 0.45);
  animation: orbit 18s linear infinite;
}

.seal-plate {
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--line),
    0 0 40px rgba(61, 255, 106, 0.22);
  animation: floaty 5.5s ease-in-out infinite;
}

.seal-plate img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.seal-plate::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(61, 255, 106, 0.18), transparent);
  animation: beam 4.8s ease-in-out infinite;
}

.stamp {
  position: absolute;
  right: -6%;
  bottom: 8%;
  padding: 6px 10px;
  border: 2px solid var(--neon);
  color: var(--neon);
  font-family: var(--font-poster);
  letter-spacing: 0.16em;
  font-size: 16px;
  rotate: -12deg;
  background: rgba(7, 9, 8, 0.55);
  animation: stamp 6s ease-in-out infinite;
}

.lede {
  max-width: 560px;
  margin: 10px auto 22px;
  color: var(--fog);
  line-height: 1.6;
}

.print-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 620px;
  margin: 0 auto 18px;
  padding: 8px 8px 8px 14px;
  background: rgba(7, 9, 8, 0.7);
  border: 1px solid var(--line);
}

.print-label {
  font-family: var(--font-poster);
  letter-spacing: 0.14em;
  color: var(--neon);
}

#ca-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--chrome);
}

#ca-copy {
  height: 36px;
  padding: 0 14px;
  background: var(--steel);
  border: 1px solid var(--line);
  font-family: var(--font-made);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#ca-copy:hover {
  border-color: var(--neon);
  color: var(--neon);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.prints {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 920px;
  margin: 22px auto 0;
}

.prints article {
  padding: 14px 16px;
  background: rgba(16, 23, 20, 0.7);
  border: 1px solid var(--line);
}

.prints small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog);
}

.prints strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-num);
  font-size: 32px;
  font-weight: 600;
  color: var(--neon-hot);
  letter-spacing: 0.04em;
}

.ticker {
  margin: 10px -72px 10px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(7, 9, 8, 0.7);
}

.ticker-track {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 10px 0;
  animation: ticker 28s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
}

.ticker-track span {
  white-space: nowrap;
}

section {
  padding: 88px 0 10px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.idx {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--neon);
}

.section-head h2,
.dossier-copy h3,
.billboard-copy h3,
.clause h3,
.ticket h3 {
  margin: 0 0 10px;
  font-family: var(--font-poster);
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 0.04em;
  line-height: 0.92;
}

.section-head p,
.dossier-copy p,
.clause p,
.ticket p,
.billboard-copy p,
.colophon p {
  color: var(--fog);
  line-height: 1.65;
}

.prospectus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.clause {
  padding: 22px;
  background: linear-gradient(180deg, rgba(16, 23, 20, 0.9), rgba(11, 16, 13, 0.9));
  border: 1px solid var(--line);
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.clause::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.clause:hover::after {
  transform: scaleX(1);
}

.clause header span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
}

.clause h3 {
  font-size: 34px;
}

.dossier {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-top: 28px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(10, 14, 12, 0.72);
}

.dossier-plate {
  width: min(360px, 100%);
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--line), 0 0 40px rgba(61, 255, 106, 0.18);
}

.dossier-plate img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.dossier-copy h3 {
  font-size: 42px;
}

.dossier-copy ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.dossier-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-made);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tickets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}

.tickets::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0.35;
}

.ticket {
  position: relative;
  padding: 22px 18px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 250px;
}

.ticket-no {
  font-family: var(--font-num);
  font-size: 28px;
  color: var(--neon);
}

.ticket-icon {
  width: 46px;
  height: 46px;
  margin: 10px 0 14px;
  display: grid;
  place-items: center;
  background: #0a0d0b;
  border: 1px solid var(--line);
}

.ticket-icon img {
  width: 24px;
  height: 24px;
}

.ticket-icon.sol img {
  width: 22px;
}

.ticket h3 {
  font-size: 28px;
}

.ticket-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.board {
  border: 1px solid var(--line);
  background: rgba(10, 14, 12, 0.8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.board-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.board-bar a {
  height: 36px;
  padding: 0 12px;
  background: rgba(16, 23, 20, 0.9);
}

#dexscreener-embed {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
}

#dexscreener-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0f0c;
}

.billboard {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 520px;
  display: grid;
  align-items: end;
}

.billboard-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: billow 18s ease-in-out infinite;
}

.billboard-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 8, 0.15) 20%, rgba(7, 9, 8, 0.88) 78%),
    radial-gradient(circle at 70% 20%, rgba(61, 255, 106, 0.12), transparent 40%);
}

.billboard-copy {
  position: relative;
  z-index: 1;
  padding: 36px;
  max-width: 640px;
}

.billboard-copy h3 {
  font-size: 56px;
}

.join-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.join-links a {
  height: 44px;
  padding: 0 14px;
  background: rgba(7, 9, 8, 0.72);
  font-family: var(--font-made);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.colophon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 72px 40px;
  border-top: 1px solid var(--line);
}

.colophon p {
  max-width: 420px;
  margin: 0;
  font-size: 13px;
}

.colo-links {
  display: flex;
  gap: 10px;
}

.colo-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(16, 23, 20, 0.8);
}

.colo-links img {
  width: 16px;
  height: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: calc(var(--d, 0) * 1ms);
}

.menu.is-open {
  display: flex;
}

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

@keyframes griddrift {
  to { background-position: 72px 72px; }
}

@keyframes scanflicker {
  50% { opacity: 0.16; }
}

@keyframes railup {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes raildown {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

@keyframes sheen {
  0%, 70% { transform: translateX(0); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: translateX(380%); opacity: 0; }
}

@keyframes pulse {
  50% { transform: scale(0.7); opacity: 0.55; }
}

@keyframes flicker {
  0%, 92%, 100% { opacity: 1; }
  93% { opacity: 0.25; }
  95% { opacity: 1; }
}

@keyframes numglow {
  50% { text-shadow: 0 0 32px rgba(61, 255, 106, 0.75), 3px 3px 0 #061108; }
}

@keyframes halo {
  50% { opacity: 0.55; transform: scale(1.06); }
}

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

@keyframes floaty {
  50% { transform: translateY(-8px); }
}

@keyframes beam {
  0% { top: -20%; opacity: 0; }
  20% { opacity: 1; }
  100% { top: 120%; opacity: 0; }
}

@keyframes stamp {
  50% { rotate: -8deg; box-shadow: 0 0 18px rgba(61, 255, 106, 0.25); }
}

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

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@keyframes billow {
  50% { transform: scale(1.06) translateY(-1.5%); }
}

@media (min-width: 1400px) {
  #dexscreener-embed {
    padding-bottom: 65%;
  }
}

@media (max-width: 1100px) {
  .prospectus,
  .tickets,
  .prints {
    grid-template-columns: repeat(2, 1fr);
  }

  .tickets::before {
    display: none;
  }

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

@media (max-width: 860px) {
  .rail {
    display: none;
  }

  .topbar,
  main,
  .colophon {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ticker {
    margin-left: -18px;
    margin-right: -18px;
  }

  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(7, 9, 8, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .menu a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(61, 255, 106, 0.1);
  }

  .menu.is-open {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .buy span {
    display: none;
  }

  .top-actions .buy {
    width: 42px;
    padding: 0;
  }

  .certificate {
    padding: 28px 18px 30px;
  }

  .prints,
  .prospectus,
  .tickets {
    grid-template-columns: 1fr;
  }

  .colophon {
    flex-direction: column;
    text-align: center;
  }

  .hero-meta {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
