/* ЧИСТЫЙ CSS. Без Tailwind, препроцессоров и сборки.
   Цвета и шрифты: :root в начале файла.
   Основные секции: #l1 ... #l9.
   Мобильная адаптация: @media ближе к концу файла. */
[hidden] {
  display: none !important;
}
/* 1. ЦВЕТА, ШРИФТЫ И БАЗОВЫЕ РАЗМЕРЫ */
:root {
  color-scheme: dark;
  --bg: #07060a;
  --bg2: #0b0a12;
  --ivory: #f4ede0;
  --dim: #9a8fa0;
  --gold: #f2b92e;
  --gold-soft: #ffd973;
  --ember: #ff5a2a;
  --hair: rgba(242, 185, 46, 0.22);
  --ticker-h: 38px;
  --disp: "Newsreader", Georgia, "Times New Roman", serif;
  --word: "Cinzel", Georgia, serif;
  --ui: "Space Grotesk", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
  --shell: min(1200px, calc(100% - 3rem));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--ui);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
}
p {
  margin: 0;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}
::selection {
  background: var(--gold);
  color: #141018;
}

/* ФОНОВЫЕ ЭФФЕКТЫ */
#fx {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.grain {
  position: fixed;
  inset: -50%;
  z-index: 5;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
.vignette {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 90% at 50% 45%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}
#beam {
  position: fixed;
  left: 0;
  top: 0;
  width: 90vmax;
  height: 90vmax;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.6s;
  background: radial-gradient(
    circle closest-side,
    rgba(255, 206, 92, 0.16),
    rgba(255, 140, 60, 0.05) 42%,
    transparent 68%
  );
}
#dot {
  position: fixed;
  left: 0;
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  z-index: 1001;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  box-shadow: 0 0 10px 2px rgba(255, 217, 115, 0.7);
}
body.beam-on #beam,
body.beam-on #dot {
  opacity: 1;
}
@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  body.beam-on,
  body.beam-on a,
  body.beam-on button {
    cursor: none;
  }
}

@media (pointer: coarse) {
  #beam {
    display: none;
  }
  .grain {
    animation: none;
    inset: 0;
  }
  .vignette {
    opacity: 0.85;
  }
}

/* ШАПКА И МЕНЮ */
.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1rem, 3vw, 2.2rem);
  mix-blend-mode: normal;
  background: linear-gradient(180deg, rgba(7, 6, 10, 0.85), transparent);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
}
.brand img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(242, 185, 46, 0.5);
}
.top__cta {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #141018;
  background: var(--gold);
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(242, 185, 46, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.top__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(242, 185, 46, 0.55);
}
.top__buy {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.top__label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
  margin-right: 0.15rem;
  white-space: nowrap;
}
.top__alt {
  font-family: var(--ui);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: var(--ivory);
  border: 1px solid rgba(242, 185, 46, 0.34);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.top__alt:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: rgba(242, 185, 46, 0.1);
}
@media (min-width: 1041px) {
  .buy-menu .only-narrow {
    display: none;
  }
}
@media (max-width: 1040px) {
  .top__label,
  .top__alt {
    display: none;
  }
}
@media (max-width: 420px) {
  .top__more {
    padding: 0.55rem 0.7rem;
    font-size: 0.68rem;
  }
}
.top__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex: none;
  cursor: pointer;
  min-height: 40px;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  margin-left: 0.35rem;
  background: rgba(244, 237, 224, 0.06);
  border: 1px solid rgba(244, 237, 224, 0.2);
  color: var(--ivory);
  font-family: var(--ui);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.top__more i {
  font-style: normal;
  font-size: 0.62rem;
  color: var(--gold);
  transition: transform 0.25s;
  display: inline-block;
}
.top__more:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}
.top__more[aria-expanded="true"] {
  background: rgba(242, 185, 46, 0.14);
  border-color: var(--gold);
}
.top__more[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.buy-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 238px;
  padding: 0.45rem;
  background: rgba(11, 10, 18, 0.97);
  border: 1px solid rgba(242, 185, 46, 0.3);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 26px 54px -18px rgba(0, 0, 0, 0.95);
  z-index: 60;
  max-height: calc(100vh - 5.5rem);
  max-height: calc(100svh - 5.5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
}
.buy-menu.on {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.buy-menu__h {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 0.55rem 0.7rem 0.3rem;
  margin: 0;
}
.buy-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 44px;
  padding: 0.5rem 0.7rem;
  border-radius: 9px;
  text-decoration: none;
  color: var(--ivory);
  font-family: var(--ui);
  font-weight: 500;
  font-size: 0.86rem;
  transition:
    background 0.18s,
    color 0.18s;
}
.buy-menu a:hover {
  background: rgba(242, 185, 46, 0.13);
  color: var(--gold-soft);
}
.buy-menu a span {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
@media (prefers-reduced-motion: reduce) {
  .buy-menu {
    transition: none;
  }
  .top__more[aria-expanded="true"] i {
    transform: none;
  }
}
.academy {
  display: block;
  max-width: min(720px, 92%);
  margin: 3.4rem auto 0;
  text-align: center;
  text-decoration: none;
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--hair);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(242, 185, 46, 0.05), rgba(242, 185, 46, 0.015));
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}
.academy:hover {
  border-color: rgba(242, 185, 46, 0.5);
  background: linear-gradient(180deg, rgba(242, 185, 46, 0.09), rgba(242, 185, 46, 0.03));
  transform: translateY(-2px);
}
.academy__eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.academy__line {
  display: block;
  font-family: var(--disp);
  font-weight: 300;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.5;
  color: var(--ivory);
}
.academy__line b {
  font-weight: 500;
  color: var(--gold-soft);
}
.academy__go {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.3s;
}
.academy:hover .academy__go {
  color: var(--gold);
}
@media (max-width: 620px) {
  .academy {
    padding: 1.25rem 1.1rem;
    margin-top: 2.6rem;
  }
  .academy__eyebrow {
    letter-spacing: 0.2em;
    font-size: 0.58rem;
  }
}
/* НИЖНЯЯ СТРОКА ПОКАЗАТЕЛЕЙ */
.ticker {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 3vw, 2.2rem);
  height: var(--ticker-h);
  padding: 0 clamp(0.7rem, 3vw, 1.6rem);
  background: rgba(7, 6, 10, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--hair);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
  overflow: hidden;
}
body.ticker-on .ticker {
  display: flex;
}
.ticker:hover {
  background: rgba(11, 10, 18, 0.95);
}
.ticker__live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--dim);
}
.ticker__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3f3a46;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.ticker.fresh .ticker__live::before {
  background: #5ad19a;
  box-shadow: 0 0 8px rgba(90, 209, 154, 0.8);
}
.ticker.fresh .ticker__live {
  color: #5ad19a;
}
.ticker__item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}
.ticker [hidden] {
  display: none !important;
}
.ticker__item b {
  font-family: var(--disp);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: var(--ivory);
}
.ticker__item.up b {
  color: #5ad19a;
}
.ticker__item.down b {
  color: #e0705a;
}
.ticker__sep {
  width: 1px;
  height: 14px;
  background: var(--hair);
  flex: none;
}
@media (max-width: 720px) {
  .ticker {
    gap: 0.9rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }
  .ticker__item b {
    font-size: 0.82rem;
  }
  .ticker__hide-sm {
    display: none;
  }
}
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--ember));
  z-index: 60;
  width: 0;
}
.lives-nav {
  position: fixed;
  right: clamp(0.6rem, 2vw, 1.6rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
}
.lives-nav a {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--dim);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.lives-nav a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  transition: transform 0.3s;
}
.lives-nav a.on {
  color: var(--gold);
}
.lives-nav a.on::before {
  transform: scale(1.7);
}
.lives-nav span {
  display: none;
}
@media (min-width: 900px) {
  .lives-nav a:hover span {
    display: inline;
  }
}
.hint {
  position: fixed;
  left: 50%;
  bottom: calc(1.3rem + var(--ticker-h));
  transform: translateX(-50%);
  z-index: 40;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  color: var(--dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
  transition: opacity 0.6s;
}
.hint::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: pulse 2s ease-in-out infinite;
}
body.scrolled .hint {
  opacity: 0;
}

/* СЕКЦИИ И ПРОКРУТКА */
.life {
  position: relative;
  z-index: 3;
}
.wrap {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6.5rem 0;
}
.tall {
  min-height: 220vh;
  min-height: 220svh;
}
.tall .wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  padding: 0;
  justify-content: center;
}
.num {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  flex-wrap: wrap;
  max-width: 100%;
}
.num::after {
  content: "";
  height: 1px;
  width: 70px;
  flex: 0 1 70px;
  min-width: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.lines .ln {
  display: block;
  overflow: hidden;
}
.lines .ln > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1s cubic-bezier(0.2, 0.75, 0.15, 1);
}
.in .lines .ln > span {
  transform: none;
}
.lines .ln:nth-child(2) > span {
  transition-delay: 0.08s;
}
.lines .ln:nth-child(3) > span {
  transition-delay: 0.16s;
}
.lines .ln:nth-child(4) > span {
  transition-delay: 0.24s;
}

/* ГЛАВНЫЙ ЭКРАН */
#l1 .wrap {
  align-items: center;
  text-align: center;
}
.h-title {
  font-family: var(--word);
  font-weight: 700;
  font-size: clamp(2rem, 8vw, 6.2rem);
  line-height: 1.04;
  letter-spacing: 0.115em;
  color: var(--ivory);
  text-shadow: 0 0 70px rgba(242, 185, 46, 0.22);
  text-indent: 0.115em;
}
.h-title .it {
  color: var(--gold);
  font-weight: 600;
}
.h-rule {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  justify-content: center;
  margin: 1.6rem auto 0.2rem;
  max-width: min(540px, 84vw);
}
.h-rule::before,
.h-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 185, 46, 0.5), transparent);
}
.h-rule span {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.h-sub {
  font-family: var(--disp);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  color: var(--dim);
  margin: 1.6rem 0 2.4rem;
}
.h-sub b {
  color: var(--gold);
  font-weight: 600;
}
.h-meta {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  color: var(--dim);
  margin-bottom: 2.6rem;
  max-width: 100%;
  overflow-wrap: break-word;
}
.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-note {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 1.1rem;
}
.buy-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.2rem;
}
.buy-row .btn {
  font-size: 0.86rem;
  padding: 0.9rem 1.6rem;
}
.btn {
  position: relative;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition:
    transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s;
  will-change: transform;
}
.btn--gold {
  background: var(--gold);
  color: #141018;
  box-shadow: 0 0 30px rgba(242, 185, 46, 0.35);
}
.btn--gold:hover {
  box-shadow: 0 0 46px rgba(242, 185, 46, 0.6);
}
.btn--line {
  color: var(--ivory);
  border: 1px solid var(--hair);
}
.btn--line:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ТЕКСТОВЫЕ СЦЕНЫ */
.omen {
  font-family: var(--disp);
  font-weight: 300;
  font-size: clamp(1.75rem, 4.7vw, 3.5rem);
  line-height: 1.34;
  max-width: 24ch;
  letter-spacing: 0;
}
.omen em {
  font-style: italic;
  color: var(--gold);
}
.omen .dim {
  color: var(--dim);
}

#l3 .wrap {
  align-items: center;
  text-align: center;
}
.coin-stage {
  position: relative;
  width: min(46vmin, 340px);
  height: min(46vmin, 340px);
  aspect-ratio: 1;
  margin: 2.2rem 0;
}
.coin-stage img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 80px rgba(242, 185, 46, 0.4),
    0 0 160px rgba(242, 185, 46, 0.15);
  animation: breathe 7s ease-in-out infinite;
}
.orbit {
  position: absolute;
  inset: -14%;
  border: 1px solid var(--hair);
  border-radius: 50%;
  animation: spin 26s linear infinite;
}
.orbit::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 12px 3px rgba(255, 217, 115, 0.8);
}
.orbit--2 {
  inset: -28%;
  animation-duration: 44s;
  animation-direction: reverse;
  border-color: rgba(242, 185, 46, 0.12);
}
.motto {
  font-family: var(--disp);
  font-weight: 300;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.25;
  letter-spacing: 0.015em;
  color: var(--ivory);
  margin-bottom: 0.7rem;
}
.motto b {
  font-weight: 500;
  font-size: 1.22em;
  color: var(--gold);
  text-shadow: 0 0 26px rgba(242, 185, 46, 0.45);
}
.cap {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  color: var(--dim);
  text-transform: uppercase;
}

/* ИЗОБРАЖЕНИЯ И РАСКРЫТИЕ ПРИ ПРОКРУТКЕ */
.scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.iris {
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-clip-path: circle(0% at 50% 52%);
  clip-path: circle(0% at 50% 52%);
  will-change: clip-path;
}
.iris img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.iris::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, transparent 40%, rgba(7, 6, 10, 0.75) 100%);
}
.scene__txt {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.2rem;
  text-shadow:
    0 1px 2px rgba(7, 6, 10, 0.62),
    0 3px 14px rgba(7, 6, 10, 0.72),
    0 0 52px rgba(7, 6, 10, 0.6);
}
.scene__txt::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  pointer-events: none;
  width: min(1180px, 94vw);
  height: 210%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse 52% 46% at 50% 50%,
    rgba(7, 6, 10, 0.54) 0%,
    rgba(7, 6, 10, 0.3) 46%,
    rgba(7, 6, 10, 0.1) 68%,
    transparent 86%
  );
}
.scene__txt .num {
  text-shadow: 0 1px 3px rgba(7, 6, 10, 0.9);
}
.scene__txt .num {
  justify-content: center;
}
.scene__txt .num::after {
  display: none;
}
.scene__line {
  font-family: var(--disp);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  max-width: 26ch;
  line-height: 1.3;
}
.scene__line b {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-soft);
}

#l5 .scene {
  --m: min(84vw, 54vh);
  flex-direction: column;
  gap: clamp(1.3rem, 3.4vh, 2.4rem);
  padding: 0 clamp(1rem, 4vw, 3rem);
}
#l5 .iris {
  -webkit-clip-path: none !important;
  clip-path: none !important;
  position: relative;
  inset: auto;
  flex: none;
  width: var(--m);
  height: var(--m);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(242, 185, 46, 0.5),
    0 0 90px rgba(242, 185, 46, 0.18),
    0 40px 90px -26px rgba(0, 0, 0, 0.95);
}
#l5 .iris img {
  object-position: 50% 50%;
  filter: saturate(0.92) contrast(1.05) brightness(0.9);
}
#l5 .iris::after {
  background: radial-gradient(circle at 50% 44%, transparent 58%, rgba(7, 6, 10, 0.45) 100%);
}
#l5 .scene__txt {
  max-width: 32ch;
  margin-inline: auto;
  text-shadow: 0 2px 24px rgba(7, 6, 10, 0.9);
}
#l5 .scene__txt .num {
  margin-bottom: 1.1rem;
}

@media (min-width: 1000px) and (min-height: 640px) {
  #l5 .scene {
    --m: min(48vw, 80vh);
    flex-direction: row;
    gap: clamp(2.2rem, 4.5vw, 5rem);
    justify-content: center;
  }
  #l5 .scene__txt {
    text-align: left;
    max-width: 22ch;
    margin: 0;
  }
  #l5 .scene__txt .num {
    justify-content: flex-start;
  }
  #l5 .scene__txt .num::after {
    display: block;
  }
}
@media (max-height: 560px) {
  #l5 .scene {
    --m: min(70vw, 62vh);
  }
}
#l5 .iris img {
  object-position: 50% 50%;
  filter: saturate(0.9) contrast(1.05) brightness(0.88);
}
#l5 .iris::after {
  background: radial-gradient(circle at 50% 44%, transparent 52%, rgba(7, 6, 10, 0.5) 100%);
}
#l5 .scene__txt {
  max-width: 30ch;
  margin-inline: auto;
  text-shadow: 0 2px 24px rgba(7, 6, 10, 0.9);
}
#l5 .scene__txt .num {
  margin-bottom: 1.1rem;
}
@media (max-height: 560px) {
  #l5 .iris {
    width: min(38vmin, 260px);
    height: min(38vmin, 260px);
  }
}
#l5 .iris::after {
  background:
    radial-gradient(
      ellipse 85% 70% at 52% 40%,
      rgba(7, 6, 10, 0.12) 0%,
      rgba(7, 6, 10, 0.55) 55%,
      rgba(7, 6, 10, 0.88) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 6, 10, 0.62) 0%,
      rgba(7, 6, 10, 0.1) 26%,
      rgba(7, 6, 10, 0.72) 74%,
      rgba(7, 6, 10, 0.95) 100%
    );
}
#l5 .scene {
  align-items: flex-end;
}
#l5 .scene__txt {
  padding-bottom: 11vh;
}
@media (max-width: 430px) {
  .top {
    padding: 0.9rem 0.8rem;
  }
  .brand {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
    gap: 0.5rem;
  }
  .brand img {
    width: 26px;
    height: 26px;
  }
  .top__cta {
    padding: 0.55rem 0.85rem;
    font-size: 0.78rem;
  }
  .top__more {
    padding: 0.5rem 0.7rem;
    font-size: 0.66rem;
    margin-left: 0.25rem;
  }
  .buy-menu {
    min-width: 210px;
  }
}
@media (max-width: 620px) {
  .num {
    letter-spacing: 0.26em;
    gap: 0.7rem;
  }
  .num::after {
    width: 38px;
    flex-basis: 38px;
  }
  .h-meta {
    letter-spacing: 0.22em;
  }
  .h-rule span {
    letter-spacing: 0.26em;
    font-size: 0.6rem;
  }
  .odo {
    font-size: clamp(2rem, 8.4vw, 8rem);
  }
  #l5 .iris img {
    object-position: 62% 42%;
  }
  #l5 .scene__txt {
    padding-bottom: 8vh;
  }
}

/* КАРТОЧКИ ПРАВИЛ */
.law {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin-top: 2.6rem;
}
.law article {
  background: var(--bg2);
  padding: 2.2rem 1.7rem;
  transition: background 0.4s;
}
.law article:hover {
  background: #12101c;
}
.law h3 {
  font-family: var(--disp);
  font-weight: 500;
  font-size: 1.44rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.law h3 span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--dim);
  display: block;
  margin-bottom: 0.8rem;
}
.law p {
  font-size: 0.92rem;
  color: var(--dim);
  line-height: 1.65;
}

#l7 .wrap {
  align-items: center;
  text-align: center;
}
.odo {
  display: flex;
  gap: 0.06em;
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(2.6rem, 9vw, 8rem);
  line-height: 1;
  color: var(--ivory);
  text-shadow: 0 0 50px rgba(242, 185, 46, 0.25);
}
.odo .sep {
  color: var(--gold);
  opacity: 0.85;
}
.digit {
  height: 1em;
  overflow: hidden;
}
.digit > span {
  display: block;
  transition: transform 2.1s cubic-bezier(0.15, 0.8, 0.15, 1);
}
.digit > span i {
  display: block;
  font-style: normal;
  height: 1em;
}
.odo-sub {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--dim);
  margin-top: 1.6rem;
  text-transform: uppercase;
}
.facts {
  display: flex;
  gap: 2.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}
.facts div {
  font-family: var(--ui);
}
.facts b {
  display: block;
  font-family: var(--disp);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--gold);
}
.facts span {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  color: var(--dim);
  text-transform: uppercase;
}

/* ШАГИ ПОКУПКИ */
.ritual {
  position: relative;
  margin-top: 2.8rem;
  padding-left: 2.4rem;
}
.thread {
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
}
.thread i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--ember));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.in .thread i {
  transform: scaleY(1);
}
.rstep {
  position: relative;
  padding: 0 0 2.6rem;
}
.rstep:last-child {
  padding-bottom: 0;
}
.rstep::before {
  content: "";
  position: absolute;
  left: -2.4rem;
  top: 0.35em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px rgba(242, 185, 46, 0.6);
}
.rstep h3 {
  font-family: var(--disp);
  font-weight: 500;
  font-size: 1.54rem;
  margin-bottom: 0.4rem;
}
.rstep h3 span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.rstep p {
  color: var(--dim);
  max-width: 56ch;
}
.rstep a {
  color: var(--gold-soft);
  text-decoration-color: rgba(255, 217, 115, 0.4);
  text-underline-offset: 4px;
}

/* АДРЕС КОНТРАКТА И ФИНАЛЬНЫЙ ЭКРАН */
#l9 .wrap {
  align-items: center;
  text-align: center;
}
.ninth {
  font-family: var(--disp);
  font-weight: 300;
  font-size: clamp(1.95rem, 5vw, 3.7rem);
  line-height: 1.3;
  max-width: 22ch;
}
.ninth em {
  font-style: italic;
  color: var(--gold);
}
.ca-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 2.4rem;
}
.plate {
  margin: 0.9rem 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.plate code {
  font-family: var(--mono);
  font-size: clamp(0.66rem, 1.6vw, 0.92rem);
  color: var(--gold-soft);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  word-break: break-all;
  background: rgba(11, 10, 18, 0.6);
  box-shadow: inset 0 0 30px rgba(242, 185, 46, 0.06);
}
.copy {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: #141018;
  background: var(--gold);
  border: 0;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 26px rgba(242, 185, 46, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  min-height: 50px;
}
.copy:hover {
  box-shadow: 0 0 40px rgba(242, 185, 46, 0.65);
}
.copy[data-done="1"] {
  background: #59d98c;
  box-shadow: 0 0 30px rgba(89, 217, 140, 0.5);
}
.verify {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--dim);
}
.verify a {
  color: var(--gold);
}
.links {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.6rem;
}
.links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 0.3rem;
}
.links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.35s;
}
.links a:hover {
  color: var(--gold);
}
.links a:hover::after {
  right: 0;
}

/* ПОДВАЛ */
.foot {
  position: relative;
  z-index: 3;
  padding: 3.4rem 0 calc(2.4rem + var(--ticker-h));
  border-top: 1px solid var(--hair);
}
.foot .shell {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.legal {
  font-size: 0.8rem;
  color: var(--dim);
  line-height: 1.7;
  max-width: 86ch;
}
.legal strong {
  color: var(--gold);
}
.foot__end {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  color: #5c5364;
}

@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-4%, 3%);
  }
  40% {
    transform: translate(3%, -4%);
  }
  60% {
    transform: translate(-3%, -2%);
  }
  80% {
    transform: translate(4%, 2%);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.7);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

@media (max-width: 900px) {
  .law {
    grid-template-columns: 1fr 1fr;
  }
  .lives-nav {
    display: none;
  }
}
@media (max-width: 430px) {
  .top {
    padding: 0.9rem 0.8rem;
  }
  .brand {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
    gap: 0.5rem;
  }
  .brand img {
    width: 26px;
    height: 26px;
  }
  .top__cta {
    padding: 0.55rem 0.85rem;
    font-size: 0.78rem;
  }
  .top__more {
    padding: 0.5rem 0.7rem;
    font-size: 0.66rem;
    margin-left: 0.25rem;
  }
  .buy-menu {
    min-width: 210px;
  }
}
@media (max-width: 620px) {
  .num {
    letter-spacing: 0.26em;
    gap: 0.7rem;
  }
  .num::after {
    width: 38px;
    flex-basis: 38px;
  }
  .h-meta {
    letter-spacing: 0.22em;
  }
  .h-rule span {
    letter-spacing: 0.26em;
    font-size: 0.6rem;
  }
  .odo {
    font-size: clamp(2rem, 8.4vw, 8rem);
  }
  .law {
    grid-template-columns: 1fr;
  }
  .cta-row {
    width: 100%;
    flex-direction: column;
  }
  .cta-row .btn {
    width: 100%;
    justify-content: center;
  }
  .plate {
    flex-direction: column;
    align-items: stretch;
  }
  .copy {
    width: 100%;
  }
  .tall {
    min-height: 190vh;
    min-height: 190svh;
  }
  .top__cta {
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  #fx,
  #beam,
  #dot,
  .grain {
    display: none;
  }
  .hint::after,
  .orbit,
  .coin-stage img {
    animation: none;
  }
  .lines .ln > span,
  .thread i {
    transform: none;
    transition: none;
  }
  .iris {
    -webkit-clip-path: none !important;
    clip-path: none !important;
  }
  .digit > span {
    transition: none;
  }
}

/* Responsive refinements keep the reference's desktop composition intact. */
html {
  scroll-padding-top: 5.5rem;
}
body {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.top {
  padding-top: max(1.1rem, env(safe-area-inset-top));
}
.ticker {
  height: calc(var(--ticker-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
}
.top__more {
  min-height: 44px;
}
.top__more[data-popup-open] i {
  transform: rotate(180deg);
}
.plate code {
  user-select: all;
}
#odo:empty::before {
  content: "1,000,000,000";
}
@media (pointer: coarse) {
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 40%, rgba(242, 185, 46, 0.065), transparent 62%);
    z-index: 0;
  }
  .mag {
    transform: none !important;
  }
}
@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 2.5rem);
    --ticker-h: 42px;
  }
  .top {
    padding: max(1rem, env(safe-area-inset-top)) 1rem 0.8rem;
  }
  .top__buy {
    gap: 0.25rem;
  }
  .brand {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }
  .brand img {
    width: 28px;
    height: 28px;
  }
  .top__cta {
    font-size: 0.72rem;
    padding: 0.6rem 0.8rem;
    min-height: 40px;
  }
  .top__more {
    padding: 0.55rem 0.65rem;
    font-size: 0.7rem;
    margin-left: 0.2rem;
  }
  .wrap {
    padding: 7rem 0 6rem;
  }
  #l1 .wrap {
    min-height: 100svh;
    padding-top: 7rem;
    padding-bottom: 6rem;
  }
  .h-title {
    font-size: clamp(2rem, 9vw, 3.5rem);
    letter-spacing: 0.055em;
    text-indent: 0.055em;
  }
  .num {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }
  .h-rule {
    margin-top: 1.7rem;
    max-width: 100%;
  }
  .h-rule span {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
  }
  .h-sub {
    font-size: 1.35rem;
    margin: 1.6rem 0 1.9rem;
  }
  .h-meta {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    margin-bottom: 2rem;
  }
  .cta-row {
    max-width: 360px;
    gap: 0.8rem;
  }
  .cta-row .btn {
    min-height: 54px;
    padding: 0.9rem 1.2rem;
    font-size: 0.875rem;
  }
  .cta-note {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    max-width: 30ch;
    margin-top: 1.3rem;
  }
  .hint {
    display: none;
  }
  .omen {
    font-size: clamp(1.8rem, 7.5vw, 2.7rem);
    max-width: 100%;
    line-height: 1.35;
  }
  .coin-stage {
    width: 60vw;
    height: 60vw;
    max-width: 280px;
    max-height: 280px;
    margin: 3.2rem 0;
  }
  .cap,
  .odo-sub,
  .facts span,
  .verify,
  .ca-label {
    font-size: 0.75rem;
    letter-spacing: 0.13em;
  }
  .motto {
    font-size: 1.35rem;
  }
  #l5 .scene {
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 6rem 1.4rem 4rem;
  }
  #l5 .iris {
    width: min(78vw, 44svh);
    height: min(78vw, 44svh);
  }
  #l5 .scene__txt {
    padding: 0;
    max-width: 28ch;
    text-align: center;
  }
  #l5 .scene__txt .num {
    justify-content: center;
    margin-bottom: 1rem;
  }
  #l5 .iris img {
    object-position: 50% 50%;
  }
  .scene__line {
    font-size: clamp(1.65rem, 6.8vw, 2.2rem);
    line-height: 1.35;
  }
  .law {
    grid-template-columns: 1fr;
    background: none;
    border: 0;
    gap: 1rem;
    margin-top: 2rem;
  }
  .law article {
    border: 1px solid var(--hair);
    padding: 1.65rem;
    border-radius: 12px;
    background: rgba(11, 10, 18, 0.85);
  }
  .law h3 {
    font-size: 1.6rem;
  }
  .law h3 span,
  .rstep h3 span {
    font-size: 0.75rem;
  }
  .law p,
  .rstep p {
    font-size: 1rem;
    line-height: 1.7;
  }
  .odo {
    font-size: clamp(1.8rem, 8.2vw, 3.2rem);
    letter-spacing: -0.035em;
  }
  .facts {
    gap: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .facts div:last-child {
    grid-column: 1/-1;
  }
  .ritual {
    padding-left: 1.9rem;
  }
  .rstep::before {
    left: -1.7rem;
  }
  .thread {
    left: 8px;
  }
  .rstep h3 {
    font-size: 1.65rem;
  }
  .academy {
    max-width: 100%;
    padding: 1.4rem 1rem;
  }
  .academy__eyebrow,
  .academy__go {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }
  .academy__line {
    font-size: 1.15rem;
  }
  .ninth {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .plate {
    width: 100%;
  }
  .plate code {
    font-size: 0.875rem;
    line-height: 1.8;
    padding: 1rem;
  }
  .copy {
    font-size: 0.8rem;
    min-height: 54px;
  }
  .buy-row {
    width: 100%;
    gap: 0.8rem;
    margin-top: 1.8rem;
  }
  .buy-row .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }
  .links {
    gap: 0.8rem 1.2rem;
    margin-top: 2rem;
  }
  .links a {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .ticker {
    gap: 0.65rem;
    font-size: 0.75rem;
    letter-spacing: 0.025em;
  }
  .ticker__item b {
    font-size: 1rem;
  }
  .foot {
    padding-top: 2rem;
  }
  .legal {
    font-size: 0.875rem;
  }
  .foot__end {
    font-size: 0.75rem;
    letter-spacing: 0.09em;
    line-height: 1.8;
  }
}
@media (max-width: 359px) {
  .brand {
    font-size: 0.62rem;
  }
  .brand img {
    width: 24px;
    height: 24px;
  }
  .top {
    padding-inline: 0.7rem;
  }
  .top__more {
    font-size: 0.65rem;
    padding-inline: 0.5rem;
  }
  .top__cta {
    padding-inline: 0.65rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tall {
    min-height: auto;
  }
  .tall .wrap {
    position: relative;
    min-height: 100svh;
    height: auto;
  }
  .scene {
    min-height: 85svh;
  }
  .lines .ln > span {
    transform: none;
  }
  .grain {
    display: none;
  }
}

/* Клавиатурная навигация в обычном HTML-меню. */
.buy-menu a:focus-visible {
  background: rgba(242, 185, 46, 0.13);
  color: var(--gold-soft);
}

/* AIRDROP: заголовок, одна подпись под ним и описание по центру. */
.h-title.h-title--airdrop {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.18em 0.3em;
  width: 100%;
  font-size: clamp(2rem, 7.5vw, 6.2rem);
  letter-spacing: 0.06em;
  text-indent: 0;
  text-align: center;
}

.h-start {
  display: block;
  width: 100%;
  margin: 1.8rem 0 0.2rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-align: center;
  white-space: nowrap;
  color: var(--gold);
}

.h-sub.h-sub--airdrop {
  width: 100%;
  max-width: 56ch;
  margin-inline: auto;
  text-align: center;
  color: var(--dim);
}

.h-sub--airdrop b {
  color: var(--gold);
}

@media (max-width: 620px) {
  .h-title.h-title--airdrop {
    font-size: clamp(2rem, 9vw, 3.5rem);
  }

  .h-start {
    margin-top: 1.5rem;
    letter-spacing: 0.3em;
    text-indent: 0.3em;
  }
}
