/* ═══════════════════════════════════════════════════════════════
   AUYL BILIM TALKS — сайт события
   Один шрифт на весь сайт — Montserrat. Цифры везде табличные,
   одной высоты с прописными. Палитра — «Steppe Sunrise» проекта
   Aul Bilim: синий, солнечный, кремовый.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy-950: #071630;
  --navy-900: #0B1E3F;
  --navy-800: #10254A;
  --navy-700: #16305C;
  --primary: #1B4F8A;
  --primary-dark: #143A6E;
  --primary-light: #2D6AB4;

  --accent: #F2A413;
  --accent-deep: #C97D06;
  --accent-soft: #FFD27A;

  --cream: #FBF5E9;
  --cream-deep: #F5EAD6;
  --paper: #FFFFFF;

  --ink: #171A26;
  --body: #4A4A5E;
  --muted: #8A8A9C;

  --line: rgba(160, 125, 55, .24);
  --line-soft: rgba(160, 125, 55, .13);
  --line-dark: rgba(255, 255, 255, .13);

  --f: 'Montserrat', system-ui, 'Segoe UI', sans-serif;

  --r: 22px;
  --r-sm: 14px;
  --nav-h: 84px;
  --shadow: 0 1px 2px rgba(23, 26, 38, .04), 0 20px 46px -26px rgba(11, 30, 63, .32);
  --shadow-lg: 0 2px 5px rgba(23, 26, 38, .05), 0 40px 76px -34px rgba(11, 30, 63, .42);
  --ease: cubic-bezier(.22, .8, .28, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f);
  font-weight: 500;
  background: var(--cream);
  color: var(--body);
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: -.002em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-variant-numeric: tabular-nums lining-nums;
}

h1, h2, h3, h4 { font-family: var(--f); color: var(--ink); line-height: 1.1; font-weight: 800; letter-spacing: -.03em; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* всё, что содержит цифры, — табличными, чтобы столбцы были ровными */
.num, time, .fs b, .ag__time, .spk__time, .cd b, .datecard__day, .vs__t { font-variant-numeric: tabular-nums lining-nums; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

html[data-lang="ru"] [lang="kk"] { display: none; }
html[data-lang="kk"] [lang="ru"] { display: none; }

.wrap {
  max-width: 1200px; margin: 0 auto;
  padding-left: max(clamp(20px, 4vw, 36px), env(safe-area-inset-left));
  padding-right: max(clamp(20px, 4vw, 36px), env(safe-area-inset-right));
}

/* эффекты наведения — только там, где есть настоящий курсор */
@media (hover: none) {
  .btn:active, .spk:active, .ptr:active, .ar:active, .megacta:active, .wacta:active { transform: scale(.985); }
}

.skip-link {
  position: fixed; left: 14px; top: 12px; z-index: 999; transform: translateY(-160%);
  background: var(--ink); color: #fff; font-weight: 700; padding: 10px 18px; border-radius: 100px; transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .4;
  background-image: radial-gradient(circle at 1px 1px, rgba(160, 125, 55, .10) 1px, transparent 0);
  background-size: 24px 24px;
}

/* общий «кикер» — прописные, но не мелкие */
.kicker {
  font-weight: 800; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-deep);
}
.kicker--sun { color: var(--accent-soft); display: inline-flex; align-items: center; gap: 12px; }
.kicker--sun::before { content: ""; width: 30px; height: 2px; background: var(--accent); border-radius: 2px; }

/* ─────────── БЕГУЩАЯ СТРОКА ─────────── */
.topline { position: sticky; top: 0; z-index: 90; }
.ticker { background: var(--navy-900); overflow: hidden; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.ticker__run {
  display: flex; align-items: center; gap: 0; white-space: nowrap;
  width: max-content; animation: tick 42s linear infinite;
}
.ticker__run > span {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 9px 0; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 255, 255, .58);
}
.ticker__run > span::after {
  content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
  margin: 0 22px; opacity: .8;
}
.ticker__run > span.sun { color: var(--accent-soft); }
@keyframes tick { to { transform: translate3d(-50%, 0, 0); } }
.ticker:hover .ticker__run { animation-play-state: paused; }

/* полоса прогресса чтения */
.progress { height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-soft)); width: 0; transition: width .1s linear; }

/* ─────────── NAV ─────────── */
nav.bar {
  position: relative; z-index: 90;
  background: rgba(251, 245, 233, .84);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s, background .3s;
}
nav.bar.stuck { box-shadow: 0 12px 34px -26px rgba(11, 30, 63, .7); background: rgba(251, 245, 233, .95); }
.bar-in { display: flex; align-items: center; gap: clamp(12px, 3vw, 28px); height: var(--nav-h); }

.brand { display: flex; align-items: center; gap: 15px; flex: none; }
.brand__mark { height: 42px; width: auto; }
.brand__rule { width: 1px; height: 30px; background: var(--line); }
.brand__word { height: 16px; width: auto; opacity: .9; }

.nav-links { display: flex; align-items: center; gap: clamp(10px, 1.7vw, 24px); flex: 1; justify-content: center; }
.nav-links a {
  font-weight: 700; font-size: 14px; color: var(--body); padding: 9px 2px; position: relative;
  white-space: nowrap; transition: color .2s; letter-spacing: -.01em;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; border-radius: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--primary); }

.nav-right { display: flex; align-items: center; gap: 12px; flex: none; }
.lang { display: flex; background: rgba(27, 79, 138, .08); border-radius: 100px; padding: 3px; }
.lang button {
  font-weight: 800; font-size: 12px; letter-spacing: .05em; padding: 7px 14px; border-radius: 100px;
  color: var(--primary); opacity: .6; transition: all .22s var(--ease);
}
.lang button.on { background: var(--primary); color: #fff; opacity: 1; box-shadow: 0 8px 18px -10px rgba(27, 79, 138, .95); }

.burger { display: none; width: 42px; height: 42px; border-radius: 12px; position: relative; }
.burger span { position: absolute; left: 11px; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }
.burger.on span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; padding: 4px 0 16px; border-top: 1px solid var(--line-soft); background: rgba(251, 245, 233, .98); }
.mobile-menu a {
  font-weight: 700; font-size: 16.5px; color: var(--ink); padding: 15px clamp(20px, 4vw, 36px);
  border-bottom: 1px solid var(--line-soft); display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
}
.mobile-menu a b { font-weight: 800; font-size: 11.5px; letter-spacing: .12em; color: var(--accent-deep); }
.mobile-menu.on { display: flex; }

/* ─────────── HERO ─────────── */
.hero { position: relative; overflow: hidden; background: var(--navy-900); isolation: isolate; }
.hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .34; filter: saturate(.5) contrast(1.04);
  transform: scale(1.07); animation: heroPan 26s var(--ease) forwards;
}
@keyframes heroPan { to { transform: scale(1); } }
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(130% 100% at 88% 4%, rgba(45, 106, 180, .5) 0%, transparent 56%),
    radial-gradient(80% 60% at 0% 100%, rgba(242, 164, 19, .14) 0%, transparent 62%),
    linear-gradient(to bottom, rgba(7, 22, 48, .82) 0%, rgba(9, 27, 57, .88) 50%, rgba(7, 22, 48, .97) 100%);
}
.hero__dots {
  position: absolute; inset: 0; opacity: .42;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .17) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

.hero__in {
  position: relative; z-index: 2;
  padding: clamp(50px, 7vw, 92px) clamp(20px, 4vw, 36px) clamp(46px, 6vw, 76px);
  display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(300px, .68fr);
  gap: clamp(28px, 5vw, 66px); align-items: center;
}
.hero__left { min-width: 0; }
.hero__title { margin: clamp(20px, 2.6vw, 30px) 0 clamp(18px, 2.2vw, 24px); }
.hero__title img { width: min(560px, 100%); height: auto; filter: drop-shadow(0 14px 42px rgba(3, 12, 30, .6)); }
.hero__sub { color: rgba(255, 255, 255, .8); font-size: clamp(16px, 1.6vw, 19px); max-width: 48ch; line-height: 1.5; font-weight: 500; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(26px, 3.2vw, 36px); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 800; font-size: 14.5px; letter-spacing: -.005em;
  padding: 15px 28px; border-radius: 100px;
  transition: transform .24s var(--ease), box-shadow .24s, background .24s;
}
.btn--sun { background: var(--accent); color: #241703; box-shadow: 0 18px 36px -16px rgba(242, 164, 19, .85); }
.btn--ghost { color: #fff; border: 1.5px solid rgba(255, 255, 255, .3); }
.btn--navy { background: var(--primary); color: #fff; box-shadow: 0 18px 36px -20px rgba(27, 79, 138, .95); }
@media (hover: hover) and (pointer: fine) {
  .btn--sun:hover { transform: translateY(-2px); box-shadow: 0 24px 46px -16px rgba(242, 164, 19, .95); }
  .btn--ghost:hover { background: rgba(255, 255, 255, .11); transform: translateY(-2px); }
  .btn--navy:hover { transform: translateY(-2px); background: var(--primary-dark); }
}

/* карточка даты */
.datecard {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r); padding: clamp(22px, 2.4vw, 28px);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 40px 80px -46px rgba(0, 0, 0, .8);
}
.datecard__date { display: flex; align-items: center; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, .15); }
.datecard__day {
  font-weight: 900; font-size: clamp(60px, 7vw, 82px); line-height: .84; color: #fff; letter-spacing: -.05em;
}
.datecard__mo { display: flex; flex-direction: column; gap: 3px; padding-top: 4px; }
.datecard__mo b { font-weight: 800; font-size: 17px; color: var(--accent-soft); text-transform: uppercase; letter-spacing: .06em; }
.datecard__mo i { font-style: normal; font-weight: 700; font-size: 17px; color: rgba(255, 255, 255, .55); letter-spacing: .1em; }

.datecard__rows { padding: 18px 0 20px; display: flex; flex-direction: column; gap: 13px; }
.datecard__rows > div { display: flex; gap: 12px; align-items: flex-start; }
.datecard__rows dt { flex: none; width: 20px; color: var(--accent-soft); opacity: .85; }
.datecard__rows dt svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.datecard__rows dd { font-size: 14.6px; color: #E9F0F8; font-weight: 600; line-height: 1.4; }
.datecard__rows dd small { display: block; font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, .5); margin-top: 2px; }

.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .15); }
.cd { text-align: center; padding: 10px 4px 8px; border-radius: 12px; background: rgba(255, 255, 255, .07); }
.cd b { display: block; font-weight: 800; font-size: clamp(20px, 2.2vw, 25px); color: #fff; line-height: 1; letter-spacing: -.03em; }
.cd span { display: block; margin-top: 6px; font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .48); }
.cd--msg { grid-column: 1 / -1; padding: 14px; }
.cd--msg b { font-size: 16px; }

/* лента партнёров */
.hero__strip { position: relative; z-index: 2; border-top: 1px solid rgba(255, 255, 255, .11); background: rgba(4, 15, 34, .55); }
.hero__strip-in { display: grid; grid-template-columns: repeat(4, 1fr); }
.hp { padding: 24px clamp(12px, 2vw, 28px); border-right: 1px solid rgba(255, 255, 255, .09); display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.hp:last-child { border-right: 0; }
.hp:first-child { padding-left: 0; }
.hp__role { font-weight: 800; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--accent-soft); opacity: .85; }
.hp__logo { height: 42px; width: auto; max-width: 100%; object-fit: contain; object-position: left center; }
.hp__logo--tight { height: 52px; }

/* ─────────── СЕКЦИИ ─────────── */
.block { position: relative; z-index: 2; padding: clamp(66px, 9vw, 118px) 0; }
.block.on-dark { background: var(--navy-900); color: rgba(255, 255, 255, .72); }
.block.on-dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .12) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(85% 55% at 50% 0%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(85% 55% at 50% 0%, #000, transparent 78%);
}
.block.tinted { background: var(--cream-deep); }
.block > .wrap { position: relative; z-index: 2; }

.sec-head { margin-bottom: clamp(34px, 4.6vw, 58px); }
.sec-num {
  display: inline-block; font-weight: 800; font-size: 12.5px; letter-spacing: .2em;
  color: var(--accent-deep); margin-bottom: 14px;
}
.sec-side {
  float: right; font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); padding-top: 2px; display: inline-flex; align-items: center; gap: 12px;
}
.sec-side::before { content: ""; width: 26px; height: 1px; background: var(--line); }
.sec-head--light .sec-side { color: rgba(255, 255, 255, .45); }
.sec-head--light .sec-side::before { background: rgba(255, 255, 255, .25); }
@media (max-width: 720px) { .sec-side { display: none; } }
.sec-head h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 900; letter-spacing: -.038em; color: var(--ink); text-wrap: balance; }
.sec-head h2::after { content: ""; display: block; width: 58px; height: 4px; border-radius: 4px; background: var(--accent); margin-top: 20px; }
.sec-note { margin-top: 18px; max-width: 60ch; font-size: 16px; color: var(--muted); font-weight: 500; }
.sec-head--light .sec-num { color: var(--accent-soft); }
.sec-head--light h2 { color: #fff; }
.sec-head--light .sec-note { color: rgba(255, 255, 255, .62); }

.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero__photo, .ticker__run, .fin__run { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─────────── О ФОРУМЕ ─────────── */
.about-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 70px); align-items: start; }
.about-lead { font-size: clamp(19px, 2.1vw, 24px); line-height: 1.48; color: var(--ink); font-weight: 600; letter-spacing: -.022em; }
.about-points { display: flex; flex-direction: column; }
.ap { padding: 22px 0; border-top: 1px solid var(--line); }
.ap:first-child { border-top: 0; padding-top: 0; }
.ap h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; display: flex; align-items: center; gap: 11px; }
.ap h3::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }
.ap p { font-size: 15px; color: var(--body); font-weight: 500; }

.factsheet {
  margin-top: clamp(40px, 5vw, 64px); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden;
}
.factsheet__head {
  padding: 16px 26px; border-bottom: 1px solid var(--line-soft);
  font-weight: 800; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary); background: rgba(27, 79, 138, .045);
}
.factsheet__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.fs { padding: 30px 26px 28px; border-right: 1px solid var(--line-soft); display: flex; flex-direction: column; }
.fs:last-child { border-right: 0; }
.fs b {
  display: block; font-weight: 900; font-size: clamp(36px, 4.4vw, 54px); color: var(--primary);
  line-height: .95; letter-spacing: -.045em;
}
.fs span { display: block; margin-top: 12px; font-size: 13.5px; font-weight: 600; color: var(--muted); }

/* фотолента */
.band { margin-top: clamp(34px, 4.4vw, 54px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.3vw, 16px); }
.bi { position: relative; overflow: hidden; border-radius: var(--r-sm); aspect-ratio: 4 / 3; cursor: zoom-in; background: var(--cream-deep); }
.bi img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.bi:hover img { transform: scale(1.05); }
.bi figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 14px;
  background: linear-gradient(to top, rgba(7, 22, 48, .9), transparent);
  font-size: 13px; font-weight: 600; color: #fff;
}

/* ─────────── ПРОГРАММА ─────────── */
.agenda { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-lg); overflow: hidden; }
.ag {
  display: grid; grid-template-columns: 190px 1fr; gap: clamp(18px, 3vw, 40px);
  padding: clamp(24px, 3vw, 34px) clamp(20px, 3.4vw, 42px);
  border-top: 1px solid var(--line-soft); position: relative;
}
.ag:first-child { border-top: 0; }
.ag__when { position: relative; padding-left: 28px; }
.ag__when::before { content: ""; position: absolute; left: 5px; top: 4px; bottom: -100px; width: 2px; background: var(--line-soft); }
.ag:last-child .ag__when::before { bottom: auto; height: 14px; }
.ag__when::after {
  content: ""; position: absolute; left: 0; top: 6px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--primary-light);
}
.ag--opening .ag__when::after, .ag--expo .ag__when::after, .ag--closing .ag__when::after {
  background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 5px rgba(242, 164, 19, .2);
}
.ag__time { display: block; font-weight: 800; font-size: clamp(18px, 2vw, 22px); color: var(--ink); letter-spacing: -.035em; line-height: 1.15; white-space: nowrap; }
.ag__tag { display: block; margin-top: 10px; font-weight: 800; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); }
.ag__no {
  display: inline-flex; align-items: center; justify-content: center; margin-top: 10px;
  width: 30px; height: 30px; border-radius: 50%; background: rgba(27, 79, 138, .09);
  font-weight: 800; font-size: 14px; color: var(--primary);
}
.ag__body { min-width: 0; }
.ag__title { font-weight: 800; font-size: clamp(17px, 2vw, 21px); color: var(--ink); letter-spacing: -.028em; line-height: 1.32; text-wrap: pretty; }
.ag__note { margin-top: 10px; font-size: 15px; color: var(--muted); font-weight: 500; }
.ag__people { margin-top: 17px; display: flex; flex-direction: column; gap: 13px; }
.pr { display: flex; gap: 13px; }
.pr::before { content: ""; width: 18px; height: 2px; background: var(--accent); border-radius: 2px; flex: none; margin-top: 10px; }
.pr__n { display: block; font-weight: 700; font-size: 15.4px; color: var(--ink); letter-spacing: -.015em; }
.pr__r { display: block; font-size: 13.6px; color: var(--muted); font-weight: 500; margin-top: 2px; }

.ag--opening { background: linear-gradient(100deg, rgba(242, 164, 19, .085), rgba(242, 164, 19, .015) 62%); }
.ag--opening .ag__title { color: var(--primary-dark); }
.ag--expo, .ag--closing { background: rgba(27, 79, 138, .03); }

/* ─────────── СПИКЕРЫ ─────────── */
.spk-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(14px, 1.8vw, 20px); }
.spk {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px 24px 26px; position: relative; overflow: hidden; display: flex; flex-direction: column;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s;
}
.spk::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.spk:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(160, 125, 55, .4); }
.spk:hover::after { transform: scaleX(1); }

.spk__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.spk__time {
  font-weight: 800; font-size: 17px; color: #fff; letter-spacing: -.03em;
  background: var(--primary); padding: 8px 15px; border-radius: 100px;
  box-shadow: 0 10px 22px -14px rgba(27, 79, 138, 1);
}
.spk__no {
  margin-left: auto; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  border: 2px solid var(--line); font-weight: 800; font-size: 14px; color: var(--accent-deep);
}
.spk__name { font-weight: 800; font-size: 17.5px; color: var(--ink); letter-spacing: -.025em; line-height: 1.25; }
.spk__name + .spk__name { margin-top: 5px; }
.spk__topic { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-soft); font-size: 15px; color: var(--body); font-weight: 500; line-height: 1.5; flex: 1; }

.officials { margin-top: clamp(42px, 5vw, 68px); }
.officials__h { font-weight: 800; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 22px; display: flex; align-items: center; gap: 16px; }
.officials__h::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.officials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.off { background: var(--paper); padding: 22px; }
.off__n { font-weight: 800; font-size: 16px; color: var(--ink); letter-spacing: -.022em; line-height: 1.28; }
.off__r { margin-top: 9px; font-size: 13.6px; color: var(--muted); font-weight: 500; line-height: 1.45; }

/* ─────────── ВЫСТАВКА ─────────── */
.areas { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(12px, 1.6vw, 18px); }
.ar {
  background: var(--navy-800); border: 1px solid var(--line-dark); border-radius: var(--r);
  padding: clamp(22px, 2.6vw, 30px); display: flex; flex-direction: column;
  transition: transform .32s var(--ease), border-color .3s, background .3s;
}
.ar:hover { transform: translateY(-4px); border-color: rgba(255, 210, 122, .35); background: #13294F; }
.ar__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.ar__no { font-weight: 800; font-size: 13px; letter-spacing: .18em; color: rgba(255, 255, 255, .34); }
.ar__count {
  padding: 6px 14px; border-radius: 100px;
  background: rgba(242, 164, 19, .16); border: 1px solid rgba(255, 210, 122, .38);
  color: var(--accent-soft); font-weight: 800; font-size: 11.5px; letter-spacing: .02em; white-space: nowrap;
}
.ar__name { font-weight: 800; font-size: clamp(18px, 2vw, 22px); color: #fff; letter-spacing: -.032em; line-height: 1.2; text-wrap: balance; }
.ar__d { margin-top: 13px; font-size: 15px; color: rgba(255, 255, 255, .66); font-weight: 500; line-height: 1.58; }

/* ─────────── ПАСПОРТ ВЫСТАВКИ (игра) ─────────── */
.pass {
  margin-top: clamp(20px, 2.6vw, 28px);
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(24px, 4vw, 54px); align-items: center;
  background: linear-gradient(118deg, rgba(242, 164, 19, .16) 0%, rgba(242, 164, 19, .04) 46%, rgba(255, 255, 255, .03) 100%);
  border: 1px solid rgba(255, 210, 122, .3); border-radius: var(--r);
  padding: clamp(26px, 3.6vw, 44px);
}
.pass__kicker {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 800; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-soft);
}
.pass__kicker::before { content: "★"; font-size: 13px; letter-spacing: 0; }
.pass__title { margin-top: 14px; font-size: clamp(21px, 2.7vw, 30px); font-weight: 900; color: #fff; letter-spacing: -.035em; line-height: 1.16; text-wrap: balance; }
.pass__lead { margin-top: 14px; font-size: 15.5px; color: rgba(255, 255, 255, .74); font-weight: 500; max-width: 52ch; }
.pass__steps { margin-top: clamp(20px, 2.4vw, 28px); display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; }
.ps { display: flex; gap: 13px; align-items: flex-start; }
.ps__n {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(242, 164, 19, .18); border: 1px solid rgba(255, 210, 122, .42);
  font-weight: 800; font-size: 11.5px; color: var(--accent-soft);
}
.ps__b b { display: block; font-weight: 700; font-size: 14.6px; color: #fff; letter-spacing: -.015em; line-height: 1.3; }
.ps__b small { display: block; margin-top: 4px; font-size: 13px; color: rgba(255, 255, 255, .55); font-weight: 500; line-height: 1.4; }
.pass__note { margin-top: clamp(20px, 2.4vw, 26px); padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .13); font-size: 13.4px; color: rgba(255, 255, 255, .5); font-weight: 500; }

/* «билет» — визуальный паспорт */
.ticket {
  background: var(--cream); border-radius: 18px; padding: 22px 22px 20px;
  box-shadow: 0 40px 70px -34px rgba(0, 0, 0, .8); position: relative; overflow: hidden;
  background-image: radial-gradient(circle at 1px 1px, rgba(27, 79, 138, .09) 1px, transparent 0);
  background-size: 20px 20px;
}
.ticket__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1.5px dashed rgba(27, 79, 138, .28); }
.ticket__label { font-weight: 800; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); }
.ticket__brand { font-weight: 700; font-size: 10.5px; letter-spacing: .05em; color: var(--muted); white-space: nowrap; }
.ticket__stamps { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px 0; }
.stamp {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  aspect-ratio: 1 / .82; border: 2px dashed rgba(27, 79, 138, .3); border-radius: 12px;
  font-weight: 700; font-size: 10.5px; color: var(--muted); text-align: center; padding: 6px 4px;
  background: rgba(255, 255, 255, .5);
}
.stamp i {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid rgba(27, 79, 138, .22); font-style: normal; font-size: 13px; color: transparent;
}
.stamp--on { border-style: solid; border-color: rgba(47, 143, 99, .45); background: rgba(47, 143, 99, .09); color: #24704C; }
.stamp--on i { background: #2F8F63; border-color: #2F8F63; color: #fff; font-weight: 800; }
.ticket__perf { height: 0; border-top: 1.5px dashed rgba(27, 79, 138, .28); margin: 0 -22px; position: relative; }
.ticket__perf::before, .ticket__perf::after {
  content: ""; position: absolute; top: -9px; width: 18px; height: 18px; border-radius: 50%; background: var(--navy-900);
}
.ticket__perf::before { left: -9px; }
.ticket__perf::after { right: -9px; }
.ticket__foot { padding-top: 16px; display: flex; flex-direction: column; gap: 3px; }
.ticket__num-label { font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.ticket__num { font-weight: 800; font-size: 13px; color: var(--primary); letter-spacing: .04em; }
.ticket__num b { font-size: 27px; letter-spacing: -.03em; }
.ticket__hint { font-size: 12px; color: var(--muted); font-weight: 500; }

/* ─────────── ПЛОЩАДКА ─────────── */
.venue-hero { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); }
.venue-hero img { width: 100%; height: clamp(260px, 42vw, 480px); object-fit: cover; }
.venue-hero figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(50px, 8vw, 80px) clamp(22px, 3.4vw, 40px) clamp(22px, 3vw, 32px);
  background: linear-gradient(to top, rgba(7, 22, 48, .92), rgba(7, 22, 48, .4) 55%, transparent);
  display: flex; flex-direction: column; gap: 7px;
}
.venue-hero__name { font-weight: 900; font-size: clamp(22px, 3.2vw, 36px); color: #fff; letter-spacing: -.035em; }
.venue-hero__addr { font-size: 15px; color: rgba(255, 255, 255, .78); font-weight: 500; }

.venue-grid { margin-top: clamp(22px, 3vw, 34px); display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(22px, 3vw, 40px); align-items: start; }
.venue-lead { font-size: 16.5px; color: var(--ink); font-weight: 500; line-height: 1.55; }
.venue-steps { margin: clamp(22px, 2.6vw, 30px) 0; display: flex; flex-direction: column; }
.vs { display: grid; grid-template-columns: 78px 1fr; gap: 16px; padding: 15px 0; border-top: 1px solid var(--line); align-items: baseline; }
.vs:first-child { border-top: 0; padding-top: 0; }
.vs__t { font-weight: 800; font-size: 19px; color: var(--primary); letter-spacing: -.035em; }
.vs__d { font-size: 15px; color: var(--body); font-weight: 500; }

.venue-shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(10px, 1.2vw, 14px); }
.venue-shots .bi { aspect-ratio: 4 / 3; }

/* ─────────── ПАРТНЁРЫ ─────────── */
.ptr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: clamp(14px, 2vw, 20px); }
.ptr {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 26px 26px; display: flex; flex-direction: column;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}
.ptr:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ptr__role { font-weight: 800; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 20px; }
.ptr__logo { height: 70px; display: flex; align-items: center; margin-bottom: 22px; }
.ptr__logo img { max-height: 100%; max-width: 205px; width: auto; object-fit: contain; }
.ptr__logo--tight img { max-height: 88px; max-width: 100px; }
.ptr__name { font-weight: 800; font-size: 16.5px; color: var(--ink); letter-spacing: -.025em; line-height: 1.3; }
.ptr__d { margin-top: 11px; font-size: 14.6px; color: var(--body); font-weight: 500; flex: 1; }
.ptr__link {
  margin-top: 20px; font-weight: 800; font-size: 13px; color: var(--primary);
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  border-bottom: 2px solid rgba(27, 79, 138, .22); padding-bottom: 3px; transition: gap .25s var(--ease), border-color .25s;
}
.ptr__link:hover { gap: 13px; border-color: var(--accent); }

/* ─────────── ФИНАЛЬНЫЙ БЛОК ─────────── */
.fin { position: relative; z-index: 2; background: var(--navy-900); overflow: hidden; padding-bottom: clamp(58px, 7vw, 90px); }
.fin__marq { padding: clamp(26px, 3.4vw, 42px) 0; border-bottom: 1px solid rgba(255, 255, 255, .1); overflow: hidden; }
.fin__run {
  display: flex; align-items: center; white-space: nowrap; width: max-content;
  animation: tick 30s linear infinite;
}
.fin__lang { display: flex; }
html[data-lang="ru"] .fin__lang[lang="kk"],
html[data-lang="kk"] .fin__lang[lang="ru"] { display: none; }
.fin__run b {
  font-weight: 900; font-size: clamp(30px, 6vw, 72px); letter-spacing: -.045em;
  color: transparent; -webkit-text-stroke: 1.4px rgba(255, 210, 122, .42); padding-right: .5em;
}
.fin__run b:nth-child(even) { color: rgba(255, 210, 122, .9); -webkit-text-stroke: 0; }

.fin__in { padding-top: clamp(38px, 5vw, 60px); display: flex; flex-direction: column; align-items: flex-start; gap: clamp(24px, 3vw, 34px); }
.fin__lead { font-size: clamp(17px, 2vw, 22px); color: rgba(255, 255, 255, .82); font-weight: 500; max-width: 54ch; line-height: 1.5; }
.megacta {
  display: inline-flex; align-items: center; gap: 18px;
  background: var(--accent); color: #241703; font-weight: 900; font-size: clamp(17px, 2.2vw, 23px);
  letter-spacing: -.03em; padding: 18px 28px 18px 34px; border-radius: 100px;
  box-shadow: 0 24px 50px -20px rgba(242, 164, 19, .8);
  transition: transform .26s var(--ease), box-shadow .26s;
}
.megacta .arr {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(36, 23, 3, .12);
  display: grid; place-items: center; font-size: 19px; transition: transform .26s var(--ease);
}
.megacta:hover { transform: translateY(-3px); box-shadow: 0 32px 62px -20px rgba(242, 164, 19, .9); }
.megacta:hover .arr { transform: translateX(4px); }

.fin__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
.wacta {
  display: inline-flex; align-items: center; gap: 13px;
  border: 1.5px solid rgba(255, 255, 255, .26); border-radius: 100px; padding: 12px 24px 12px 15px;
  transition: border-color .26s, background .26s, transform .26s var(--ease);
}
.wacta:hover { border-color: #25D366; background: rgba(37, 211, 102, .1); transform: translateY(-2px); }
.wacta__ic { width: 34px; height: 34px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; flex: none; }
.wacta__ic svg { width: 20px; height: 20px; }
.wacta__txt { display: flex; flex-direction: column; line-height: 1.25; }
.wacta__txt b { font-weight: 700; font-size: 14.5px; color: #fff; letter-spacing: -.015em; }
.wacta__txt small { font-size: 12.5px; color: rgba(255, 255, 255, .5); font-weight: 600; letter-spacing: .02em; }
.fin__info { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.fin__info > span {
  font-weight: 700; font-size: 12.5px; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255, 255, 255, .55); display: inline-flex; align-items: center; gap: 12px;
}
.fin__info > span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ─────────── FOOTER ─────────── */
.site-foot { position: relative; z-index: 2; background: var(--navy-950); color: rgba(255, 255, 255, .6); padding: clamp(54px, 6vw, 80px) 0 max(32px, calc(env(safe-area-inset-bottom) + 20px)); }
.foot-top { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: clamp(26px, 3.4vw, 48px); }
.foot-brand img { height: 19px; width: auto; margin-bottom: 20px; opacity: .95; }
.foot-brand p { font-size: 14.4px; max-width: 42ch; line-height: 1.6; font-weight: 500; }
.foot-col h4 { font-weight: 800; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 18px; }
.foot-col a, .foot-plain { display: block; font-size: 14.4px; padding: 6px 0; color: rgba(255, 255, 255, .64); font-weight: 500; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { margin-top: clamp(36px, 4vw, 54px); padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: rgba(255, 255, 255, .44); font-weight: 500; }

/* ─────────── ЗАКРЕПЛЁННЫЕ КНОПКИ ─────────── */
.dock {
  position: fixed; z-index: 85; right: clamp(16px, 2.4vw, 28px); bottom: clamp(16px, 2.4vw, 28px);
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .32s var(--ease), transform .32s var(--ease), visibility .32s;
}
.dock.on { opacity: 1; visibility: visible; transform: none; }

.dock__btn {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 12px 20px 12px 13px; border-radius: 100px;
  font-weight: 800; font-size: 14px; letter-spacing: -.015em; white-space: nowrap;
  box-shadow: 0 18px 38px -14px rgba(7, 22, 48, .55), 0 2px 6px rgba(7, 22, 48, .16);
  transition: transform .24s var(--ease), box-shadow .24s;
}
.dock__txt b { font-weight: 800; }
.dock__short { display: none; }
.dock__ic { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.dock__ic svg { width: 18px; height: 18px; }
.dock__btn--cal { background: var(--accent); color: #241703; }
.dock__btn--cal .dock__ic { background: rgba(36, 23, 3, .13); }
.dock__btn--wa { background: var(--navy-900); color: #fff; }
.dock__btn--wa .dock__ic { background: #25D366; color: #fff; }
@media (hover: hover) and (pointer: fine) {
  .dock__btn:hover { transform: translateY(-2px); box-shadow: 0 24px 46px -14px rgba(7, 22, 48, .6); }
}

/* ─────────── LIGHTBOX ─────────── */
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(4, 12, 28, .96); display: grid; place-items: center; padding: 4vh 5vw; animation: lbIn .25s var(--ease); }
@keyframes lbIn { from { opacity: 0; } }
.lb[hidden] { display: none; }
.lb__fig { max-width: 100%; max-height: 100%; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.lb__fig img { max-width: 100%; max-height: 82vh; width: auto; border-radius: 10px; box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .9); }
.lb__fig figcaption { font-size: 14px; color: rgba(255, 255, 255, .75); text-align: center; max-width: 62ch; font-weight: 500; }
.lb__close { position: absolute; top: 16px; right: 20px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255, 255, 255, .1); color: #fff; font-size: 27px; line-height: 1; }
.lb__close:hover { background: rgba(255, 255, 255, .2); }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255, 255, 255, .1); color: #fff; font-size: 31px; line-height: 1; }
.lb__nav:hover { background: rgba(255, 255, 255, .2); }
.lb__nav--prev { left: 14px; }
.lb__nav--next { right: 14px; }

/* ═══════════ АДАПТИВ ═══════════ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .hero__in { grid-template-columns: 1fr; gap: 34px; }
  .datecard { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  .burger { width: 44px; height: 44px; }
  .burger span { left: 12px; }
  .burger span:nth-child(1) { top: 16px; }
  .burger span:nth-child(2) { top: 21px; }
  .burger span:nth-child(3) { top: 26px; }
  .lang { padding: 4px; }
  .lang button { min-height: 36px; padding: 8px 14px; }
  .mobile-menu { max-height: calc(100dvh - var(--nav-h) - 46px); overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 860px) {
  :root { --nav-h: 72px; }
  html { scroll-padding-top: calc(var(--nav-h) + 46px); }
  .brand__mark { height: 36px; }
  .brand__word, .brand__rule { display: none; }

  /* тикер компактнее, чтобы липкая шапка не съедала экран */
  .ticker__run > span { padding: 6px 0; font-size: 10.5px; letter-spacing: .08em; }
  .ticker__run > span::after { margin: 0 16px; }

  /* плавность скролла на среднем Android */
  nav.bar { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(251, 245, 233, .97); }
  nav.bar.stuck { background: rgba(251, 245, 233, .99); }
  .datecard { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(9, 26, 55, .74); box-shadow: 0 24px 50px -34px rgba(0, 0, 0, .8); }
  .grain { opacity: .28; }

  /* лента партнёров — плитки 2×2 с одинаковым боксом логотипа */
  .hero__strip { background: linear-gradient(180deg, rgba(4, 15, 34, .3), rgba(4, 15, 34, .8)); }
  .hero__strip-in { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding-top: 16px; padding-bottom: 22px; }
  .hp, .hp:first-child {
    border: 1px solid rgba(255, 255, 255, .1); border-radius: 16px;
    background: rgba(255, 255, 255, .045); padding: 12px 10px 14px;
    display: grid; grid-template-rows: auto 46px; gap: 8px;
    align-items: center; justify-items: center; text-align: center;
  }
  .hp__role {
    font-size: 9.5px; line-height: 1.3; letter-spacing: .09em; opacity: .8;
    min-height: 2.6em; display: flex; align-items: center; text-wrap: balance;
  }
  .hp__logo, .hp__logo--tight { height: auto; width: auto; max-height: 100%; max-width: 100%; object-position: center; }
  /* оптическая нормализация: широкие логотипы ниже, квадратный герб выше */
  .hp__logo[src*="jelken"] { max-height: 32px; }
  .hp__logo[src*="qazaqstan"] { max-height: 22px; max-width: 152px; }
  .hp__logo[src*="logo-bilim"] { max-height: 26px; max-width: 148px; }
  .hp__logo[src*="gerb"] {
    max-height: 40px; padding: 3px; border-radius: 10px;
    background: rgba(251, 245, 233, .92); box-shadow: 0 2px 10px -4px rgba(0, 0, 0, .5);
  }

  /* обрубок линии таймлайна в программе на узком экране не нужен */
  .ag__when::before { display: none; }

  .factsheet__row { grid-template-columns: 1fr 1fr; }
  .fs { border-bottom: 1px solid var(--line-soft); }
  .fs:nth-child(even) { border-right: 0; }
  .fs:nth-child(3), .fs:nth-child(4) { border-bottom: 0; }
  .areas { grid-template-columns: 1fr; }
  .ag { grid-template-columns: 1fr; gap: 14px; }
  .ag__when { display: flex; align-items: center; gap: 14px; padding-left: 26px; }
  .ag__when::before { bottom: -26px; }
  .ag:last-child .ag__when::before { display: none; }
  .ag__when::after { top: 50%; transform: translateY(-50%); }
  .ag__tag, .ag__no { margin-top: 0; }
  .ag__no { width: 26px; height: 26px; font-size: 13px; }
}

@media (max-width: 620px) {
  body { font-size: 15.5px; }
  .hero__title img { width: 100%; }

  /* кнопки: тоньше и по содержимому, а не 50/50 */
  .hero__cta { gap: 10px; align-items: center; margin-top: 24px; }
  .hero__cta .btn { flex: 0 1 auto; }
  .btn {
    font-size: 13.5px; font-weight: 700; letter-spacing: .005em; line-height: 1.25;
    padding: 12px 20px; min-height: 46px; gap: 8px;
  }
  .btn--sun { box-shadow: 0 8px 18px -10px rgba(242, 164, 19, .55); }
  .btn--navy { box-shadow: 0 8px 18px -12px rgba(27, 79, 138, .7); }
  .btn--ghost { border-width: 1px; border-color: rgba(255, 255, 255, .26); background: rgba(255, 255, 255, .05); color: rgba(255, 255, 255, .94); }

  .datecard { padding: 20px; }
  .datecard__day { font-size: 56px; }

  .band { grid-template-columns: 1fr 1fr; gap: 8px; }
  .band .bi { aspect-ratio: 1 / 1; }
  .band .bi:first-child { grid-column: span 2; aspect-ratio: 16 / 9; }
  .bi figcaption { padding: 26px 12px 11px; font-size: 11.5px; line-height: 1.3; background: linear-gradient(to top, rgba(7, 22, 48, .95), rgba(7, 22, 48, .35) 55%, transparent); }

  .spk-grid { grid-template-columns: 1fr; }
  .spk { padding: 20px 18px 22px; }
  .spk__head { gap: 10px; margin-bottom: 14px; }
  .spk__time { font-size: 15px; padding: 6px 13px; box-shadow: none; }
  .spk__no { width: 28px; height: 28px; font-size: 13px; border-width: 1.5px; }
  .spk__name { font-size: 16.5px; }

  /* на телефоне — панель во всю ширину внизу экрана */
  .dock {
    left: 0; right: 0; bottom: 0; flex-direction: row; align-items: stretch; gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(7, 22, 48, .92);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, .12);
    transform: translateY(100%);
  }
  .dock.on { transform: none; }
  .dock__btn {
    flex: 1; justify-content: center; padding: 11px 12px 11px 10px; gap: 9px;
    font-size: 13.5px; box-shadow: none; min-height: 48px;
  }
  .dock__ic { width: 28px; height: 28px; }
  .dock__ic svg { width: 16px; height: 16px; }
  .dock__full { display: none; }
  .dock__short { display: inline; }
  .dock__btn--wa { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16); }
  /* чтобы панель не перекрывала конец подвала */
  .site-foot { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }

  .pass { grid-template-columns: 1fr; }
  .pass__steps { grid-template-columns: 1fr; gap: 14px; }
  .megacta { font-size: 16px; padding: 15px 22px 15px 26px; }
  .megacta .arr { width: 32px; height: 32px; font-size: 17px; }
  .wacta { padding: 10px 20px 10px 12px; }
  .fin__cta { width: 100%; }
  .foot-col a, .foot-plain { padding: 10px 0; }
  .officials__grid { grid-template-columns: 1fr; }
  .venue-shots { grid-template-columns: 1fr; }
  .venue-shots .bi:first-child { grid-column: span 1; }
  .vs { grid-template-columns: 68px 1fr; gap: 12px; }
  .foot-top { grid-template-columns: 1fr; }
  .lb__nav { width: 44px; height: 44px; font-size: 26px; }
}

@media (max-width: 480px) {
  /* показатели держим в две колонки — сводка должна читаться одним взглядом */
  .factsheet__row { grid-template-columns: 1fr 1fr; }
  .fs { padding: 22px 16px 20px; }
  .fs b { font-size: 32px; letter-spacing: -.05em; }
  .fs span { margin-top: 8px; font-size: 12.5px; line-height: 1.35; }
  .countdown { gap: 5px; }
  .cd { padding: 9px 2px 7px; }
  .cd b { font-size: 21px; }
  .cd span { font-size: 9.5px; letter-spacing: .04em; }
  .ticket { padding: 18px; }
  .ticket__perf { margin: 0 -18px; }
}

@media (max-width: 350px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__strip-in { grid-template-columns: 1fr; }
}

@media print {
  nav.bar, .hero__cta, .countdown, .burger, .lang, .lb, .grain, .band, .venue-shots { display: none !important; }
  body { background: #fff; }
  .block { padding: 24px 0; }
  .agenda { box-shadow: none; }
}
