:root {
  --red: #E4022D;
  --red-dark: #B80125;
  --navy: #0E2547;
  --navy-2: #13315C;
  --navy-3: #1B4174;
  --navy-deep: #071426;
  --black: #0B0D12;
  --gray: #8A94A0;
  --slate: #5A7396;
  --mist: #F1F4F6;
  --white: #FFFFFF;
  --page-bg: #FFFFFF;
  --section-bg: #F1F4F6;
  --surface: #FFFFFF;
  --surface-2: #FFFFFF;
  --ink: #0B0D12;
  --ink-2: #5A7396;
  --border: #E3E8EC;
  --border-alt: #D3DAE1;
  --field-border: #D3DAE1;
  --topbar-bg: #0E2547;
  --footer-bg: #0E2547;
  --logo-ink: #0E2547;
  --outline-ink: #0E2547;
  --num-muted: #D3DAE1;
  --rule-strong: #0B0D12;
  --pop-border: #D3DAE1;
  --chip-active-bg: #0E2547;
  --chip-active-fg: #FFFFFF;
  --map-bg: #F1F4F6;
  --skeleton: linear-gradient(90deg, #F1F4F6 0%, #E3E8EC 40%, #F1F4F6 80%);
  --shadow-pop: 0 26px 56px rgba(7, 20, 38, .18);
  --shadow-card: 0 22px 50px rgba(14, 37, 71, .14);
  --shadow-modal: 0 30px 60px rgba(7, 20, 38, .46);
  --font-display: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-text: 'Golos Text', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --pad: clamp(20px, 6.7vw, 96px);
  --radius: 12px;
  --radius-lg: 16px;
  --header-h: 76px;
  --topbar-h: 36px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .28s;
}

[data-theme="dark"] {
  --page-bg: #0B0D12;
  --section-bg: #0E2547;
  --surface: #101826;
  --surface-2: #0E2547;
  --ink: #FFFFFF;
  --ink-2: #C4CDD6;
  --border: #1E2A3A;
  --border-alt: #13315C;
  --field-border: #13315C;
  --topbar-bg: #071426;
  --footer-bg: #071426;
  --logo-ink: #FFFFFF;
  --outline-ink: #FFFFFF;
  --num-muted: #25344A;
  --rule-strong: #FFFFFF;
  --pop-border: #13315C;
  --chip-active-bg: #FFFFFF;
  --chip-active-fg: #0B0D12;
  --map-bg: #101826;
  --skeleton: linear-gradient(90deg, #101826 0%, #172233 40%, #101826 80%);
  --shadow-pop: 0 26px 56px rgba(0, 0, 0, .5);
  --shadow-card: 0 22px 50px rgba(0, 0, 0, .45);
  --shadow-modal: 0 30px 60px rgba(0, 0, 0, .6);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--red); }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}
button { background: none; border: 0; padding: 0; cursor: pointer; }

:focus-visible {
  outline: 0;
  outline-offset: 3px;
}

hr { border: 0; border-top: 1px solid var(--border); margin: 0; }

[hidden] { display: none !important; }

::selection { background: var(--red); color: #fff; }

@supports selector(::-webkit-scrollbar) {
  ::-webkit-scrollbar { width: 10px; height: 10px; }
  ::-webkit-scrollbar-track { background: var(--section-bg); }
  ::-webkit-scrollbar-thumb { background: var(--border-alt); }
  ::-webkit-scrollbar-thumb:hover { background: var(--gray); }
}

.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .94;
  color: var(--ink);
}

.d-xxl { font-size: clamp(56px, 12vw, 196px); font-weight: 900; letter-spacing: -.05em; line-height: .84; }
.d-xl  { font-size: clamp(38px, 7.2vw, 104px); font-weight: 900; letter-spacing: -.05em; line-height: .86; }
.d-l   { font-size: clamp(34px, 5vw, 88px); letter-spacing: -.04em; line-height: .9; }
.d-m   { font-size: clamp(32px, 4.4vw, 72px); letter-spacing: -.035em; line-height: .94; }
.d-s   { font-size: clamp(28px, 3.4vw, 52px); letter-spacing: -.035em; line-height: 1; }
.d-xs  { font-size: clamp(24px, 2.6vw, 44px); letter-spacing: -.03em; line-height: 1.02; }
.d-xxs { font-size: clamp(20px, 1.9vw, 30px); font-weight: 700; letter-spacing: -.02em; line-height: 1.08; }

.lead {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
}

.kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gray);
}
.kicker--red { color: var(--red); }
.kicker--wide { letter-spacing: .24em; }

.num { font-variant-numeric: tabular-nums; }
.accent { color: var(--red); }
.muted { color: var(--ink-2); }
.dim { color: var(--gray); }

.rule-strong { border-bottom: 2px solid var(--rule-strong); }

.page { position: relative; }

.wrap {
  width: 100%;
  max-width: 1632px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: clamp(48px, 6vw, 96px); }
.section--tight { padding-block: clamp(36px, 4vw, 64px); }
.section--tinted { background: var(--section-bg); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: clamp(18px, 2vw, 26px);
  border-bottom: 2px solid var(--rule-strong);
  margin-bottom: clamp(24px, 3vw, 40px);
  flex-wrap: wrap;
}
.section-head__note {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 320px;
  padding-bottom: 6px;
}
.rail-grid {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: start;
  gap: 0;
}
.rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}
.rail__num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.rail__line { width: 1px; height: 120px; background: var(--border); }
.rail__label {
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gray);
}

@media (max-width: 900px) {
  .rail-grid { grid-template-columns: 1fr; }
  .rail {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    padding-top: 0;
    margin-bottom: 10px;
  }
  .rail__line { display: none; }
  .rail__label { writing-mode: horizontal-tb; letter-spacing: .18em; font-size: 10px; }
}
.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; }
.row--wrap { flex-wrap: wrap; }
.gap-6 { gap: 6px; } .gap-8 { gap: 8px; } .gap-10 { gap: 10px; }
.gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-20 { gap: 20px; }
.grow { flex: 1; min-width: 0; }
.nowrap { white-space: nowrap; }
.center { text-align: center; }
.right { text-align: right; }
.mt-auto { margin-top: auto; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.hatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 1px, transparent 1px 18px);
  pointer-events: none;
}
.slab {
  position: absolute;
  left: -80px; right: -80px;
  height: 128px;
  background: var(--red);
  transform: rotate(-3deg);
  opacity: .92;
  pointer-events: none;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
@keyframes bzTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes bzShimmer { from { background-position: -420px 0; } to { background-position: 420px 0; } }
@keyframes bzFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes bzFadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes bzPopIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes bzSheetIn { from { transform: translateY(100%); } to { transform: none; } }
@keyframes bzSpin { to { transform: rotate(360deg); } }
@keyframes bzPulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.m-0 { margin: 0; }
.mt-4 { margin-top: 4px; }
.mt-6 { margin-top: 6px; }
.mt-8 { margin-top: 8px; }
.mt-10 { margin-top: 10px; }
.mt-12 { margin-top: 12px; }
.mt-14 { margin-top: 14px; }
.mt-16 { margin-top: 16px; }
.mt-18 { margin-top: 18px; }
.mt-20 { margin-top: 20px; }
.mt-22 { margin-top: 22px; }
.mt-24 { margin-top: 24px; }
.mt-26 { margin-top: 26px; }
.mt-28 { margin-top: 28px; }
.mt-30 { margin-top: 30px; }
.mt-32 { margin-top: 32px; }
.mt-34 { margin-top: 34px; }
.mt-36 { margin-top: 36px; }
.mt-40 { margin-top: 40px; }
.mt-44 { margin-top: 44px; }
.mt-46 { margin-top: 46px; }
.mt-56 { margin-top: 56px; }
.mt-64 { margin-top: 64px; }
.mt-72 { margin-top: 72px; }
.mt-80 { margin-top: 80px; }
.mb-0 { margin-bottom: 0px; }
.mb-4 { margin-bottom: 4px; }
.mb-10 { margin-bottom: 10px; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
.mb-16 { margin-bottom: 16px; }
.mb-18 { margin-bottom: 18px; }
.mb-22 { margin-bottom: 22px; }
.pt-6 { padding-top: 6px; }
.pt-10 { padding-top: 10px; }
.pt-12 { padding-top: 12px; }
.pt-16 { padding-top: 16px; }
.pt-18 { padding-top: 18px; }
.pt-22 { padding-top: 22px; }
.pt-24 { padding-top: 24px; }
.pt-26 { padding-top: 26px; }
.pt-32 { padding-top: 32px; }
.pt-64 { padding-top: 64px; }
.pt-72 { padding-top: 72px; }
.pt-96 { padding-top: 96px; }
.mt-section { margin-top: clamp(48px, 6vw, 96px); }
.pt-section { padding-top: clamp(48px, 6vw, 96px); }
.pb-section { padding-bottom: clamp(48px, 6vw, 96px); }
.relative { position: relative; }
.min-w-0 { min-width: 0; }
.w-full { width: 100%; }
.flex-nowrap { flex-wrap: nowrap; }
.items-start { align-items: flex-start; }
.items-baseline { align-items: baseline; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.overflow-hidden { overflow: hidden; }
.text-xs { font-size: 12px; }
.text-sm { font-size: 13px; }
.text-md { font-size: 14px; }
.text-lg { font-size: 15px; }
.text-loose { line-height: 1.6; }
.op-70 { opacity: .7; }
.ink { color: var(--ink); }
.fw-600 { font-weight: 600; }
.svc-rule { border-top: 1px solid var(--border-alt); }
