:root {
  --ink: #08111e;
  --ink-soft: #101d2d;
  --paper: #f3f0e9;
  --paper-deep: #e8e3d8;
  --white: #f9fbff;
  --muted: #aab5c2;
  --muted-dark: #687280;
  --line: rgba(8, 17, 30, .13);
  --line-light: rgba(249, 251, 255, .18);
  --cyan: #85d8ed;
  --coral: #ff604c;
  --lime: #d9f26b;
  --shell: min(1180px, calc(100% - 64px));
  --radius-lg: 28px;
  --radius-md: 16px;
  --shadow: 0 28px 80px rgba(4, 9, 16, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
button { font: inherit; }
button, summary { -webkit-tap-highlight-color: transparent; }
button:focus-visible, summary:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link {
  position: fixed;
  z-index: 30;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border: 1px solid var(--cyan);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--ink);
  background: var(--cyan);
  cursor: pointer;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  position: absolute;
  z-index: 4;
  inset: 0 0 auto;
  color: var(--white);
}
.topbar-inner { min-height: 78px; display: flex; align-items: center; gap: 28px; border-bottom: 1px solid rgba(249,251,255,.15); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}
.brand-symbol { display: inline-flex; align-items: end; gap: 3px; width: 23px; height: 21px; }
.brand-symbol i { display: block; width: 5px; border-radius: 2px 2px 0 0; background: var(--cyan); }
.brand-symbol i:nth-child(1) { height: 11px; opacity: .7; }
.brand-symbol i:nth-child(2) { height: 18px; background: var(--coral); }
.brand-symbol i:nth-child(3) { height: 14px; background: var(--lime); }
.main-nav { display: flex; align-items: center; gap: 7px; margin-left: auto; }
.main-nav button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(249,251,255,.72);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.main-nav button:hover { border-color: rgba(249,251,255,.25); color: var(--white); }
.topbar-date { margin-left: 10px; color: rgba(249,251,255,.56); font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.menu-button { display: none; margin-left: auto; border: 0; padding: 8px; color: var(--white); background: transparent; cursor: pointer; }
.menu-button b { display: block; width: 23px; height: 2px; margin: 5px 0; background: currentColor; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(420px, 1.07fr);
  gap: 64px;
  min-height: 760px;
  padding-top: 164px;
  padding-bottom: 80px;
  color: var(--white);
}
.hero::before { position: absolute; z-index: -2; content: ""; inset: 0 calc((var(--shell) - 100vw) / 2); background: var(--ink); }
.hero::after { position: absolute; z-index: -1; content: ""; inset: 0 calc((var(--shell) - 100vw) / 2); background: radial-gradient(circle at 28% 33%, rgba(24, 78, 112, .26), transparent 37%), linear-gradient(180deg, rgba(5, 12, 21, .2), rgba(5, 12, 21, .9)); pointer-events: none; }
.hero-copy { position: relative; align-self: center; padding-bottom: 30px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--coral); font-size: 10px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 32px; height: 2px; background: var(--coral); }
.hero h1 { max-width: 650px; margin: 0; font-size: clamp(44px, 5.4vw, 78px); font-weight: 760; letter-spacing: -.065em; line-height: .98; }
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero-intro { max-width: 570px; margin: 28px 0 0; color: rgba(249,251,255,.73); font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 31px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 15px; min-height: 48px; border: 1px solid transparent; border-radius: 999px; padding: 12px 19px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--lime); }
.button-primary:hover { background: #e9ff92; }
.button-quiet { border-color: rgba(249,251,255,.27); color: var(--white); background: rgba(249,251,255,.04); }
.button-quiet:hover { border-color: var(--cyan); background: rgba(133,216,237,.1); }
.button-dark { width: 100%; color: var(--white); background: var(--ink); }
.button-dark:hover { background: #14263a; }
.fact-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 58px; border-top: 1px solid rgba(249,251,255,.2); }
.fact-strip > div { min-height: 91px; padding: 17px 16px 0 0; border-right: 1px solid rgba(249,251,255,.2); }
.fact-strip > div + div { padding-left: 18px; }
.fact-strip > div:last-child { border-right: 0; }
.fact-strip span, .fact-strip small { display: block; color: rgba(249,251,255,.48); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.fact-strip strong { display: block; margin-top: 7px; color: var(--white); font-size: 15px; line-height: 1.2; }
.fact-strip small { margin-top: 8px; font-size: 9px; letter-spacing: .05em; text-transform: none; }
.hero-art { position: relative; align-self: center; min-height: 515px; overflow: hidden; border: 1px solid rgba(249,251,255,.2); border-radius: var(--radius-lg); box-shadow: var(--shadow); isolation: isolate; }
.hero-art img { display: block; width: 100%; height: 100%; min-height: 515px; object-fit: cover; object-position: 58% center; }
.art-wash { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(5,12,21,.03) 25%, rgba(5,12,21,.82) 100%), linear-gradient(90deg, rgba(5,12,21,.38), transparent 60%); }
.art-card { position: absolute; z-index: 2; left: 25px; right: 25px; display: flex; align-items: center; justify-content: space-between; }
.art-card-top { top: 24px; color: rgba(249,251,255,.7); font-size: 10px; font-weight: 800; letter-spacing: .17em; }
.art-card-top strong { color: var(--white); font-size: 14px; letter-spacing: .12em; }
.art-card-top i { padding: 0 5px; color: var(--coral); font-size: 9px; font-style: normal; }
.art-card-bottom { bottom: 24px; align-items: end; color: rgba(249,251,255,.65); font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.art-card-bottom strong { color: var(--lime); font-size: 24px; letter-spacing: -.04em; }
.art-card-bottom small { font-size: 10px; letter-spacing: .12em; }
.art-number { position: absolute; z-index: 2; top: 35%; right: 20px; color: rgba(249,251,255,.17); font-size: clamp(90px, 13vw, 180px); font-weight: 800; letter-spacing: -.12em; line-height: .8; }

.player-zone { position: relative; padding: 75px 0 84px; color: var(--white); background: var(--ink-soft); }
.player-zone::before { position: absolute; content: ""; inset: 0; opacity: .35; background-image: linear-gradient(rgba(133,216,237,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(133,216,237,.08) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(90deg, transparent, black 25%, black 75%, transparent); pointer-events: none; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 26px; }
.section-head-light { position: relative; }
.section-head h2, .faq h2 { margin: 0; font-size: clamp(30px, 4vw, 52px); letter-spacing: -.055em; line-height: 1; }
.section-kicker { margin-bottom: 14px; color: var(--coral); font-size: 10px; }
.section-head-light .section-kicker { color: var(--cyan); }
.section-note { margin: 0 0 3px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.player-frame { position: relative; min-height: 190px; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid rgba(133,216,237,.27); border-radius: var(--radius-md); background: #050d17; box-shadow: 0 25px 70px rgba(0,0,0,.25); }
.player-frame::after { position: absolute; content: "ОКНО ЭФИРА / 16:9"; top: 20px; right: 22px; color: rgba(249,251,255,.3); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.player-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 16px; padding: 28px; background: radial-gradient(circle at 50% 48%, rgba(133,216,237,.1), transparent 34%), #07111e; }
.player-placeholder strong { display: block; color: var(--white); font-size: 17px; letter-spacing: -.02em; }
.player-placeholder p { max-width: 470px; margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.placeholder-orb { flex: 0 0 auto; width: 46px; height: 46px; border: 1px solid rgba(133,216,237,.5); border-radius: 50%; box-shadow: 0 0 0 8px rgba(133,216,237,.06); }
.placeholder-state { align-self: start; margin-left: auto; padding: 6px 9px; border: 1px solid rgba(255,96,76,.55); border-radius: 999px; color: var(--coral); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.dreams-player, .dreams-player iframe, .dreams-player video { position: absolute !important; inset: 0; width: 100% !important; height: 100% !important; border: 0; }
.player-under { display: flex; align-items: center; gap: 10px; padding-top: 17px; }
.player-under p { flex: 1; margin: 0; color: var(--muted); font-size: 12px; }
.signal-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(255,96,76,.12); }
.player-tag { color: var(--coral); font-size: 9px; font-weight: 800; letter-spacing: .13em; }

.analysis { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 74px; padding-top: 106px; padding-bottom: 100px; }
.analysis-main { min-width: 0; }
.article-topline { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); color: var(--muted-dark); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.analysis-main > h2 { max-width: 750px; margin: 34px 0 21px; font-size: clamp(40px, 5.2vw, 72px); letter-spacing: -.075em; line-height: .98; }
.article-lead { max-width: 780px; margin: 0 0 65px; color: #4d5864; font-size: 18px; line-height: 1.7; }
.copy-block { padding: 46px 0 48px; border-top: 1px solid var(--line); }
.copy-block h3 { margin: 0 0 15px; font-size: clamp(25px, 3vw, 38px); letter-spacing: -.055em; line-height: 1.05; }
.copy-block p { max-width: 780px; margin: 0 0 17px; color: #4d5864; font-size: 15px; }
.copy-block .section-kicker { margin-bottom: 17px; color: var(--muted-dark); }
.time-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin-top: 27px; border: 1px solid var(--line); background: var(--line); }
.time-grid > div { min-height: 115px; padding: 15px; background: var(--paper); }
.time-grid span, .time-grid small { display: block; color: var(--muted-dark); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.time-grid strong { display: block; margin: 12px 0 4px; color: var(--ink); font-size: 23px; letter-spacing: -.06em; }
.time-grid small { font-size: 9px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.time-grid-mark { background: var(--lime) !important; }
.venue-card { display: flex; align-items: flex-start; gap: 15px; max-width: 720px; margin-top: 28px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper-deep); }
.venue-pin { display: grid; flex: 0 0 auto; place-items: center; width: 35px; height: 35px; border-radius: 50%; color: var(--ink); background: var(--cyan); font-size: 22px; line-height: 1; }
.venue-card strong { display: block; margin-top: 1px; font-size: 15px; }
.venue-card p { margin: 5px 0 0; font-size: 12px; }
.road-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.road-card { position: relative; overflow: hidden; min-height: 155px; padding: 19px; border-radius: var(--radius-md); color: var(--white); }
.road-card::after { position: absolute; content: ""; width: 160px; height: 160px; right: -30px; bottom: -80px; border: 1px solid rgba(249,251,255,.25); border-radius: 50%; }
.road-card-blue { background: #173a57; }
.road-card-red { background: #64251f; }
.road-card > span { font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.road-card strong { display: block; margin-top: 18px; font-size: 40px; letter-spacing: -.08em; line-height: .8; }
.road-card p { margin: 13px 0 0; color: rgba(249,251,255,.72); font-size: 12px; line-height: 1.35; }
.road-card i { position: absolute; right: 19px; top: 21px; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); }
.history-row { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 29px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.history-row > div { min-height: 105px; padding: 17px 12px 14px 0; border-right: 1px solid var(--line); }
.history-row > div + div { padding-left: 15px; }
.history-row > div:last-child { border-right: 0; }
.history-row strong { display: block; color: var(--ink); font-size: 27px; letter-spacing: -.07em; }
.history-row span { display: block; margin-top: 7px; color: var(--muted-dark); font-size: 10px; line-height: 1.3; }
.duel-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 28px; background: var(--line); }
.duel-list > div { min-height: 125px; padding: 15px; background: var(--paper-deep); }
.duel-list span { display: block; color: var(--coral); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.duel-list strong { display: block; margin-top: 17px; font-size: 13px; line-height: 1.25; }
.duel-list small { display: block; margin-top: 7px; color: var(--muted-dark); font-size: 10px; line-height: 1.3; }
.checklist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 27px 0 0; padding: 0; list-style: none; counter-reset: none; }
.checklist li { min-height: 120px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper-deep); }
.checklist li > span { display: block; color: var(--coral); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.checklist p { margin: 26px 0 0; color: var(--ink); font-size: 12px; line-height: 1.35; }
.analysis-aside { min-width: 0; }
.aside-sticky { position: sticky; top: 28px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper-deep); }
.aside-label { margin: 0; color: var(--muted-dark); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.aside-teams { display: flex; align-items: center; justify-content: space-between; margin: 29px 0 22px; font-size: 24px; font-weight: 800; letter-spacing: -.05em; }
.aside-teams b { color: var(--coral); font-weight: 500; }
.aside-rule { height: 1px; background: var(--line); }
.aside-small { margin: 17px 0 24px; color: var(--muted-dark); font-size: 11px; line-height: 1.55; }
.aside-disclaimer { margin: 16px 0 0; color: var(--muted-dark); font-size: 10px; line-height: 1.45; }

.faq { padding-bottom: 82px; }
.faq .section-head { align-items: end; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.faq-list { border-bottom: 1px solid var(--line); }
.faq details { border-top: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 69px; padding: 17px 0; color: var(--ink); font-size: 15px; font-weight: 700; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--coral); font-size: 24px; font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "-"; }
.faq details p { max-width: 720px; margin: -2px 45px 25px 0; color: #4d5864; font-size: 14px; }
.footer { color: rgba(249,251,255,.7); background: var(--ink); }
.footer-inner { display: flex; align-items: center; gap: 26px; min-height: 96px; }
.brand-footer { color: var(--white); }
.footer-inner p { margin: 0; color: rgba(249,251,255,.45); font-size: 11px; }
.footer-state { margin-left: auto; color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.metrika-pixel { position: absolute; left: -9999px; width: 1px; height: 1px; }

@media (max-width: 960px) {
  :root { --shell: min(100% - 40px, 760px); }
  .topbar-inner { gap: 18px; }
  .topbar-date { display: none; }
  .hero { grid-template-columns: 1fr; gap: 35px; min-height: auto; padding-top: 135px; }
  .hero-copy { padding-bottom: 0; }
  .hero-art { min-height: 410px; }
  .hero-art img { min-height: 410px; }
  .analysis { grid-template-columns: 1fr; gap: 0; }
  .analysis-aside { order: -1; margin-bottom: 52px; }
  .aside-sticky { position: static; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 16px 18px; }
  .aside-teams { margin: 0; justify-content: start; gap: 15px; }
  .aside-rule, .aside-small { display: none; }
  .aside-sticky .button { width: auto; min-height: 41px; }
  .aside-disclaimer { grid-column: 1 / -1; margin: 0; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 32px); --radius-lg: 20px; }
  .topbar-inner { min-height: 66px; }
  .main-nav { position: absolute; top: 66px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 5px; padding: 12px 16px 16px; border-bottom: 1px solid rgba(249,251,255,.16); background: rgba(7,17,30,.97); }
  .main-nav.is-open { display: flex; }
  .main-nav button { text-align: left; }
  .menu-button { display: block; }
  .hero { padding-top: 112px; padding-bottom: 54px; }
  .hero h1 { font-size: clamp(41px, 13vw, 62px); }
  .hero-intro { font-size: 14px; line-height: 1.65; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .fact-strip { grid-template-columns: 1fr; margin-top: 40px; }
  .fact-strip > div, .fact-strip > div + div { min-height: auto; padding: 13px 0; border-right: 0; border-bottom: 1px solid rgba(249,251,255,.2); }
  .fact-strip > div:last-child { border-bottom: 0; }
  .fact-strip strong { display: inline-block; margin-right: 8px; }
  .fact-strip small { display: inline-block; }
  .hero-art { min-height: 290px; }
  .hero-art img { min-height: 290px; object-position: 62% center; }
  .art-card { left: 17px; right: 17px; }
  .art-card-bottom { bottom: 17px; }
  .art-card-bottom span { max-width: 150px; line-height: 1.3; }
  .art-number { top: 38%; right: 12px; font-size: 100px; }
  .player-zone { padding: 56px 0 62px; }
  .section-head { display: block; }
  .section-head .section-note { margin-top: 14px; }
  .section-head h2, .faq h2 { font-size: 34px; }
  .player-frame { min-height: 0; }
  .player-placeholder { flex-wrap: wrap; justify-content: flex-start; align-content: center; padding: 25px; }
  .player-placeholder > div { max-width: calc(100% - 65px); }
  .placeholder-state { position: absolute; top: 17px; right: 17px; }
  .player-under { align-items: flex-start; flex-wrap: wrap; }
  .player-under p { flex-basis: calc(100% - 25px); }
  .player-tag { margin-left: 18px; }
  .analysis { padding-top: 70px; padding-bottom: 66px; }
  .article-topline { display: block; line-height: 1.8; }
  .article-topline span { display: block; }
  .analysis-main > h2 { margin-top: 27px; font-size: 42px; }
  .article-lead { margin-bottom: 43px; font-size: 16px; }
  .copy-block { padding: 36px 0 38px; }
  .copy-block p { font-size: 14px; }
  .time-grid { grid-template-columns: 1fr 1fr; }
  .time-grid > div { min-height: 105px; padding: 13px; }
  .road-grid, .duel-list, .checklist { grid-template-columns: 1fr; }
  .road-card { min-height: 137px; }
  .history-row { grid-template-columns: 1fr 1fr; }
  .history-row > div:nth-child(2) { border-right: 0; }
  .history-row > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .duel-list > div { min-height: 100px; }
  .checklist li { min-height: 100px; }
  .checklist p { margin-top: 19px; }
  .analysis-aside { margin-bottom: 35px; }
  .aside-sticky { grid-template-columns: 1fr auto; gap: 10px 17px; }
  .aside-label { grid-column: 1 / -1; }
  .aside-teams { font-size: 22px; }
  .aside-sticky .button { width: auto; padding-inline: 14px; font-size: 9px; }
  .faq { padding-bottom: 58px; }
  .faq .section-head { padding-bottom: 20px; }
  .faq summary { font-size: 14px; }
  .faq details p { margin-right: 0; font-size: 13px; }
  .footer-inner { flex-wrap: wrap; gap: 12px 18px; min-height: 110px; padding-top: 21px; padding-bottom: 21px; }
  .footer-inner p { order: 3; flex-basis: 100%; }
  .footer-state { margin-left: auto; }
}

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