/*
  Лига ЦТФ — общий дизайн-код сайта
  Статический адаптивный прототип: HTML + CSS + JavaScript.
*/

:root {
  --bg: #020817;
  --bg-deep: #01040e;
  --bg-raised: #07112b;
  --bg-panel: rgba(8, 16, 43, 0.78);
  --light: #f4f6fb;
  --light-alt: #edf1f8;
  --paper: #ffffff;
  --ink: #0a1026;
  --ink-soft: #35405f;
  --white: #f8faff;
  --muted: #a8b2cf;
  --muted-dark: #66708c;
  --cyan: #00e8ff;
  --blue: #2585ff;
  --violet: #8148ff;
  --pink: #ff168f;
  --green: #32e5af;
  --warning: #ffb63f;
  --gradient: linear-gradient(105deg, var(--cyan) 0%, var(--blue) 34%, var(--violet) 69%, var(--pink) 100%);
  --gradient-soft: linear-gradient(105deg, rgba(0,232,255,.16), rgba(37,133,255,.14) 34%, rgba(129,72,255,.16) 69%, rgba(255,22,143,.14));
  --line-dark: rgba(119, 151, 234, 0.22);
  --line-light: rgba(16, 34, 83, 0.13);
  --shadow: 0 22px 70px rgba(6, 18, 57, 0.12);
  --shadow-dark: 0 32px 100px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --radius-sm: 14px;
  --shell: 1260px;
  --header-h: 82px;
  --mx: 0;
  --my: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--bg-deep);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
h4,
ul,
ol {
  margin-top: 0;
}

::selection {
  color: white;
  background: rgba(85, 69, 255, 0.85);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: #000;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100%, calc(var(--shell) + 2 * clamp(20px, 5vw, 76px)));
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 76px);
}

.shell--wide {
  width: min(100%, 1600px);
}

.section {
  position: relative;
  isolation: isolate;
  padding-block: clamp(78px, 9vw, 136px);
  overflow: visible;
}

.section--dark,
.superfinal {
  overflow: hidden;
}

.section--light {
  color: var(--ink);
  background: var(--light);
}

.section--light-alt {
  color: var(--ink);
  background: var(--light-alt);
}

.section--compact {
  padding-block: clamp(48px, 6vw, 72px);
}

.section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 30%, rgba(24, 83, 255, .15), transparent 34%),
    radial-gradient(circle at 6% 75%, rgba(255, 22, 143, .10), transparent 28%),
    linear-gradient(120deg, #020716 0%, #040b21 48%, #020817 100%);
}

.section--dark::before,
.page-hero::before,
.home-hero::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .20;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(56, 106, 226, .10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 106, 226, .08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.section__head {
  display: grid;
  gap: 15px;
  width: 100%;
  max-width: min(860px, 100%);
  min-width: 0;
  margin-bottom: clamp(42px, 5vw, 70px);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0;
  color: #526080;
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.section--dark .kicker,
.page-hero .kicker,
.home-hero .kicker {
  color: rgba(229, 236, 255, .72);
}

.kicker::before {
  content: "";
  width: 38px;
  height: 4px;
  flex: none;
  transform: skewX(-28deg);
  background: var(--gradient);
  box-shadow: 0 0 14px rgba(0, 232, 255, .28);
}

.kicker--center {
  margin-inline: auto;
}

.section-title,
.page-title {
  margin: 0;
  max-width: 100%;
  min-width: 0;
  font-family: "Unbounded", "Arial Black", "Segoe UI Black", sans-serif;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.14;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: manual;
}

.section-title {
  max-width: 100%;
  font-size: clamp(28px, 4.2vw, 64px);
}

.section-lead {
  max-width: min(820px, 100%);
  min-width: 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.55vw, 23px);
  line-height: 1.55;
  overflow-wrap: break-word;
}

.title-break {
  display: none;
}

@media (max-width: 900px) {
  .title-break {
    display: block;
  }
}

.section--dark .section-lead,
.page-hero__lead {
  color: rgba(235, 240, 255, .80);
}

.body-copy {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.72;
}

.section--dark .body-copy {
  color: rgba(229, 235, 252, .76);
}

.accent-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow-number {
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

/* Header and navigation */
.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  overflow: visible;
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header--solid {
  position: fixed;
  background: rgba(2, 7, 23, .88);
  box-shadow: 0 10px 36px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  border-bottom: 1px solid rgba(112, 144, 229, .18);
}

.site-header__inner::after {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 76px);
  bottom: -1px;
  width: clamp(90px, 13vw, 190px);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), transparent);
  box-shadow: 0 0 16px rgba(0, 232, 255, .34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: none;
  max-width: min(52vw, 168px);
  overflow: visible;
  padding-block: 8px;
}

.brand__logo,
.brand__mark {
  display: block;
  width: auto;
  height: 44px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  overflow: visible;
  filter: drop-shadow(0 0 10px rgba(0, 198, 255, .20));
}

.brand__logo {
  height: 42px;
  aspect-ratio: 1560 / 488;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.5vw, 27px);
}

.nav-links a {
  position: relative;
  padding-block: 12px;
  color: rgba(234, 240, 255, .72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--gradient);
  transition: right 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  right: 0;
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 23px;
  overflow: hidden;
  border: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(0 0, 92% 0, 100% 26%, 100% 100%, 8% 100%, 0 74%);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  min-height: 43px;
  padding-inline: 19px;
  border: 1px solid rgba(0, 226, 255, .50);
  background: rgba(5, 15, 41, .58);
  box-shadow: inset 0 0 22px rgba(25, 100, 255, .12);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.10);
}

.button--gradient {
  color: white;
  background: var(--gradient);
  box-shadow: 0 12px 34px rgba(43, 80, 255, .23);
}

.button--gradient::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px;
  background: linear-gradient(110deg, rgba(6, 23, 51, .72), rgba(26, 14, 66, .66));
  clip-path: inherit;
}

.button--dark {
  color: #fff;
  border: 1px solid rgba(114, 148, 235, .30);
  background: rgba(6, 13, 35, .74);
}

.button--light {
  color: var(--ink);
  border: 1px solid rgba(15, 32, 77, .16);
  background: white;
  box-shadow: 0 12px 30px rgba(11, 27, 72, .08);
}

.button--text {
  min-height: 42px;
  padding-inline: 0;
  clip-path: none;
  color: #1c39a7;
  background: none;
  justify-content: flex-start;
}

.button svg,
.link-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(103, 137, 229, .30);
  color: white;
  background: rgba(5, 12, 34, .72);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--gradient);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Form controls */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #283453;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select,
.subscribe-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(24, 47, 108, .18);
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  outline: 0;
  padding: 14px 16px;
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 142px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.subscribe-form input:focus {
  border-color: #2585ff;
  background: white;
  box-shadow: 0 0 0 3px rgba(37, 133, 255, .25);
}

.form-field input::placeholder,
.form-field textarea::placeholder,
.subscribe-form input::placeholder {
  color: #6b7590;
}

.form-card {
  position: relative;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid var(--line-light);
  color: var(--ink);
  background: rgba(255,255,255,.93);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 96% 0, 100% 5%, 100% 100%, 4% 100%, 0 95%);
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  height: 4px;
  background: var(--gradient);
}

.form-card__title {
  margin-bottom: 27px;
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.form-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 22px;
}

.form-consent {
  max-width: 760px;
  margin: 15px 0 0;
  color: #6d7690;
  font-size: 12px;
  line-height: 1.55;
}

.form-consent a {
  color: #324cc3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-contact {
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.form-contact a {
  color: #3048b5;
  font-weight: 800;
}

.form-message {
  display: none;
  margin-top: 18px;
  padding: 13px 15px;
  border-left: 3px solid var(--blue);
  color: #26324f;
  background: rgba(37, 133, 255, .08);
  font-size: 14px;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-success {
  border-left-color: var(--green);
  background: rgba(50, 229, 175, .11);
}

.form-message.is-error {
  border-left-color: var(--pink);
  background: rgba(255, 22, 143, .08);
}

.form-card--dark {
  color: white;
  border-color: rgba(114, 148, 235, .23);
  background: rgba(4, 11, 33, .78);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
}

.form-card--dark .form-field label,
.form-card--dark .form-contact {
  color: rgba(230, 236, 255, .72);
}

.form-card--dark .form-field input,
.form-card--dark .form-field textarea,
.form-card--dark .form-field select,
.section--dark .subscribe-form input,
.home-hero .subscribe-form input {
  color: #fff;
  border-color: rgba(122, 153, 233, .28);
  background: rgba(4, 12, 34, .70);
  box-shadow: inset 0 0 20px rgba(25, 100, 255, .06);
}

.form-card--dark .form-field input::placeholder,
.form-card--dark .form-field textarea::placeholder,
.section--dark .subscribe-form input::placeholder,
.home-hero .subscribe-form input::placeholder {
  color: rgba(190, 201, 231, .66);
}

.form-card--dark .form-consent {
  color: rgba(203, 211, 234, .58);
}

.form-card--dark .form-consent a,
.form-card--dark .form-contact a {
  color: var(--cyan);
}

.form-card--dark .form-message {
  color: #e9eeff;
}

.subscribe-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: 100%;
}

.subscribe-form .button {
  min-width: 148px;
}

.subscribe-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, .7fr);
  gap: 12px;
  align-items: stretch;
}

.subscribe-actions__email {
  display: grid;
  gap: 8px;
}

.subscribe-actions__hint,
.action-card small {
  color: rgba(213, 222, 246, .57);
  font-size: 11px;
  line-height: 1.45;
}

.action-card {
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 74px;
  padding: 13px 16px;
  border: 1px solid rgba(119, 151, 234, .26);
  background: rgba(5, 13, 37, .64);
  clip-path: polygon(0 0, 92% 0, 100% 18%, 100% 100%, 8% 100%, 0 82%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.action-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 232, 255, .60);
  background: rgba(13, 31, 74, .72);
}

.action-card strong {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.action-card svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Main hero */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  height: clamp(850px, 100svh, 1030px);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 64%, rgba(16, 96, 255, .24), transparent 30%),
    radial-gradient(circle at 91% 62%, rgba(255, 21, 151, .15), transparent 29%),
    radial-gradient(circle at 35% 42%, rgba(78, 52, 229, .12), transparent 34%),
    linear-gradient(116deg, #020615 0%, #04091d 49%, #020618 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(1,4,15,.08) 0%, rgba(1,4,15,0) 42%, rgba(1,4,15,.12) 100%),
    linear-gradient(to bottom, rgba(1,4,15,.02), transparent 66%, rgba(1,4,15,.54));
  box-shadow: inset 0 0 180px rgba(0, 0, 0, .58);
}

.hero-binary {
  position: absolute;
  z-index: -1;
  left: clamp(22px, 3.6vw, 64px);
  top: 100px;
  color: rgba(24, 122, 255, .17);
  font: 500 10px/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .22em;
  white-space: nowrap;
  user-select: none;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  top: 70px;
  right: -1.5vw;
  bottom: 0;
  width: min(63vw, 1080px);
  pointer-events: none;
  transform: translate3d(calc(var(--mx) * -11px), calc(var(--my) * -7px), 0);
  transition: transform 120ms linear;
  /* Fade left edge + clip any baked bottom UI strip from the art */
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.14) 8%, #000 24%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 88%, rgba(0,0,0,.35) 96%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.14) 8%, #000 24%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 88%, rgba(0,0,0,.35) 96%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,8,26,.93), transparent 28%, transparent 84%, rgba(3,8,26,.11)),
    linear-gradient(to top, rgba(2,6,21,.92) 0%, rgba(2,6,21,.45) 10%, transparent 22%);
}

.hero-visual img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 52%;
  filter: saturate(1.06) contrast(1.04) brightness(.96);
}

.hero-slash {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(calc(var(--mx) * 10px), calc(var(--my) * 6px), 0) skewX(-20deg) rotate(-24deg);
  filter: drop-shadow(0 0 18px rgba(40, 88, 255, .18));
}

.hero-slash--one {
  left: 43%;
  top: 9%;
  width: 150px;
  height: 21px;
  background: linear-gradient(90deg, transparent, #2b3cff, #9234ff);
  clip-path: polygon(0 55%, 100% 0, 84% 100%);
}

.hero-slash--two {
  left: 36%;
  bottom: 10%;
  width: 230px;
  height: 36px;
  background: linear-gradient(90deg, transparent, #06cbff 35%, #6d48ff 72%, #ff1b9b);
  clip-path: polygon(0 44%, 100% 0, 84% 48%, 100% 100%, 20% 64%);
  opacity: .68;
}

.hero-content {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  min-height: 100%;
  padding-top: calc(var(--header-h) + clamp(38px, 5vh, 72px));
  padding-bottom: clamp(56px, 6vh, 86px);
}

.hero-copy {
  width: min(64vw, 820px);
  transform: translate3d(calc(var(--mx) * 5px), calc(var(--my) * 3px), 0);
  transition: transform 120ms linear;
  overflow: visible;
}

.hero-slogan {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 18px 0 0;
  font-family: "Unbounded", "Arial Black", "Segoe UI Black", sans-serif;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.075em;
  line-height: .82;
  text-transform: uppercase;
  overflow: visible;
}

.hero-slogan > span {
  display: inline-block;
  transform: skewX(-5deg);
  white-space: nowrap;
  overflow: visible;
}

.hero-slogan__top {
  font-size: clamp(46px, 4.4vw, 76px);
  color: #f8f9fe;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.35));
}

/* SVG gradient word — avoids background-clip cropping italic glyphs */
.hero-slogan__league {
  margin-top: .02em;
  padding: 0;
  margin-inline: 0;
  font-size: clamp(73px, 7.3vw, 122px);
  line-height: 0;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(30, 119, 255, .18)) drop-shadow(0 14px 26px rgba(0,0,0,.35));
  transform: skewX(-5deg);
}

.hero-slogan__league-svg {
  display: block;
  width: auto;
  height: 1em;
  overflow: visible;
}

.hero-slogan__league-svg text {
  font-family: "Unbounded", "Arial Black", "Segoe UI Black", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 148px;
  letter-spacing: -.075em;
}

.hero-slogan__sport {
  margin-top: .14em;
  max-width: none;
  padding-right: 0.12em;
  font-size: clamp(22px, 2.85vw, 46px);
  color: #f8f9fe;
  letter-spacing: -.055em;
  white-space: nowrap;
  line-height: .95;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.35));
}

.hero-rule {
  display: flex;
  align-items: center;
  width: min(100%, 600px);
  gap: 17px;
  margin: 24px 0 20px;
}

.hero-rule::before {
  content: "";
  height: 3px;
  flex: 1;
  transform: skewX(-28deg);
  background: var(--gradient);
  box-shadow: 0 0 18px rgba(29, 140, 255, .28);
}

.hero-rule span {
  width: 28px;
  height: 7px;
  transform: skewX(-28deg);
  background: var(--pink);
  box-shadow: 0 0 15px rgba(255, 22, 143, .48);
}

.hero-subtitle {
  margin: 0 0 10px;
  color: rgba(239, 244, 255, .86);
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 700;
}

/* Season intro — elevated light band under hero */
.season-intro-section {
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .55), transparent 42%),
    var(--light);
}

.season-intro {
  display: grid;
  gap: 0;
  max-width: 920px;
}

.season-intro .kicker {
  margin-bottom: 18px;
}

.season-intro__lead {
  margin: 0;
  max-width: 22em;
  font-family: "Unbounded", "Arial Black", "Segoe UI Black", sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.12;
  color: var(--ink);
  text-wrap: balance;
}

.season-intro__rule {
  display: flex;
  align-items: center;
  width: min(100%, 420px);
  gap: 14px;
  margin: 22px 0 20px;
}

.season-intro__rule::before {
  content: "";
  height: 3px;
  flex: 1;
  transform: skewX(-28deg);
  background: var(--gradient);
  box-shadow: 0 0 14px rgba(37, 133, 255, .22);
}

.season-intro__rule span {
  width: 22px;
  height: 6px;
  transform: skewX(-28deg);
  background: var(--pink);
  box-shadow: 0 0 12px rgba(255, 22, 143, .35);
}

.season-intro__copy {
  margin: 0;
  max-width: 68ch;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.72;
  text-wrap: pretty;
}

.season-intro__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.season-intro__chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 18px 10px 16px;
  border: 1px solid rgba(16, 34, 83, .12);
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 28px rgba(14, 30, 72, .06);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  clip-path: polygon(0 0, 92% 0, 100% 22%, 100% 100%, 8% 100%, 0 78%);
}

.season-intro__chip::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  flex: none;
  transform: rotate(45deg);
  background: var(--gradient);
  box-shadow: 0 0 10px rgba(0, 232, 255, .28);
}

.season-intro__chip--wide {
  letter-spacing: .03em;
}

/* Running marquee strip — single-track seamless infinite loop */
.season-marquee {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: 56px;
  color: rgba(236, 242, 255, .88);
  background:
    linear-gradient(90deg, rgba(0, 232, 255, .08), transparent 28%, transparent 72%, rgba(255, 22, 143, .08)),
    linear-gradient(120deg, #020716 0%, #040b21 48%, #020817 100%);
  border-block: 1px solid rgba(88, 122, 214, .22);
}

.season-marquee__viewport {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.season-marquee__track {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: max-content;
  height: 100%;
  will-change: transform;
  animation: season-marquee 28s linear infinite;
}

.season-marquee__group {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
  padding-inline-end: clamp(36px, 5vw, 64px);
  white-space: nowrap;
}

.season-marquee__item {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: .35em;
  white-space: nowrap;
  font-size: clamp(12px, 1.05vw, 14px);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(220, 230, 255, .72);
}

.season-marquee__item strong {
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-weight: 800;
  letter-spacing: .08em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes season-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.hero-description {
  width: min(100%, 655px);
  margin: 0;
  color: rgba(228, 235, 253, .68);
  font-size: clamp(14px, .95vw, 16px);
  line-height: 1.62;
}

.hero-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 17px;
  margin: 17px 0 18px;
  color: rgba(241, 245, 255, .84);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .035em;
}

.hero-dates span {
  position: relative;
  padding-left: 14px;
}

.hero-dates span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 6px;
  height: 6px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--pink);
  box-shadow: 0 0 12px rgba(255, 22, 143, .58);
}

.hero-subscribe {
  max-width: 700px;
}

.home-hero .subscribe-actions {
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, .7fr);
}

.home-hero .subscribe-form input {
  min-height: 48px;
}

.home-hero .subscribe-form .button {
  min-height: 48px;
}

.home-hero .action-card {
  min-height: 68px;
}

.hero-consent {
  max-width: 670px;
  margin: 10px 0 0;
  color: rgba(197, 207, 233, .72);
  font-size: 12px;
  line-height: 1.5;
}

.hero-consent a {
  color: rgba(0, 232, 255, .75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-rail {
  position: absolute;
  z-index: 7;
  left: 17px;
  top: 54%;
  transform: translate(-45%, -50%) rotate(-90deg);
  color: rgba(199, 211, 248, .40);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .24em;
  white-space: nowrap;
}


/* Generic inner hero */
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(580px, 78vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 74px;
  background:
    radial-gradient(circle at 80% 52%, rgba(28, 99, 255, .22), transparent 32%),
    radial-gradient(circle at 93% 75%, rgba(255, 22, 143, .12), transparent 29%),
    linear-gradient(116deg, #020615 0%, #04091d 52%, #020618 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, transparent 65%, rgba(0, 0, 0, .20)),
    linear-gradient(to bottom, transparent 65%, rgba(0,0,0,.36));
  box-shadow: inset 0 0 170px rgba(0, 0, 0, .46);
}

.page-hero__content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.page-title {
  margin-top: 17px;
  font-size: clamp(48px, 6.6vw, 96px);
  text-transform: uppercase;
  line-height: .98;
}

.page-hero__lead {
  max-width: 780px;
  margin: 27px 0 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 650;
  line-height: 1.42;
}

.page-hero__text {
  max-width: 820px;
  margin: 20px 0 0;
  color: rgba(218, 226, 248, .67);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.72;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-hero__glyph {
  position: absolute;
  z-index: 0;
  right: clamp(-22px, 2vw, 38px);
  bottom: -0.16em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(91, 123, 230, .15);
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-size: clamp(180px, 28vw, 480px);
  font-weight: 800;
  letter-spacing: -.12em;
  line-height: .72;
  text-transform: uppercase;
  user-select: none;
}

.page-hero__slashes {
  position: absolute;
  z-index: 1;
  right: 6vw;
  top: 27%;
  width: 300px;
  height: 190px;
  opacity: .52;
  transform: rotate(-13deg);
}

.page-hero__slashes::before,
.page-hero__slashes::after {
  content: "";
  position: absolute;
  right: 0;
  height: 22px;
  transform: skewX(-35deg);
  clip-path: polygon(0 0, 100% 0, 81% 100%, 10% 100%);
}

.page-hero__slashes::before {
  top: 25px;
  width: 280px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet));
}

.page-hero__slashes::after {
  top: 84px;
  width: 190px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
}

.page-hero--partners {
  min-height: clamp(610px, 82vh, 800px);
}

.page-hero--partners .page-hero__content {
  max-width: 930px;
}

.page-hero--partners .page-title {
  max-width: 840px;
}

/* Cards and grids */
.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  min-height: 100%;
  padding: clamp(24px, 2.8vw, 38px);
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.74);
  box-shadow: 0 14px 48px rgba(18, 36, 86, .07);
  clip-path: polygon(0 0, 94% 0, 100% 7%, 100% 100%, 6% 100%, 0 93%);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
  height: 3px;
  background: var(--gradient);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 133, 255, .28);
  box-shadow: 0 24px 70px rgba(18, 36, 86, .12);
}

.card h3 {
  margin-bottom: 13px;
  color: var(--ink);
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-size: clamp(20px, 1.85vw, 28px);
  line-height: 1.17;
  letter-spacing: -.035em;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.card--dark {
  border-color: rgba(118, 150, 234, .23);
  color: white;
  background: rgba(5, 13, 38, .72);
  box-shadow: 0 22px 70px rgba(0,0,0,.20);
  backdrop-filter: blur(12px);
}

.card--dark h3 {
  color: white;
}

.card--dark p {
  color: rgba(221, 229, 250, .68);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 23px;
  border: 1px solid rgba(37,133,255,.24);
  color: #284ed0;
  background: rgba(37, 133, 255, .08);
  clip-path: polygon(0 0, 82% 0, 100% 18%, 100% 100%, 18% 100%, 0 82%);
}

.card--dark .card__icon {
  color: var(--cyan);
  border-color: rgba(0,232,255,.32);
  background: rgba(0,232,255,.08);
}

.card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card__tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: #41517c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.card--dark .card__tag {
  color: rgba(0,232,255,.78);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 23px;
  color: #2c48bc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

.link-arrow svg {
  transition: transform 180ms ease;
}

/* About — mobile-first, so narrow viewports never inherit minmax(320px) tracks */
.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 90px);
  align-items: start;
}

@media (min-width: 901px) {
  .about-intro {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(36px, 6vw, 90px);
  }
}

.about-intro__copy {
  max-width: 700px;
  min-width: 0;
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

@media (min-width: 901px) {
  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.stat-card {
  position: relative;
  min-height: 190px;
  padding: 28px 25px;
  border: 1px solid rgba(14, 34, 84, .12);
  background: rgba(255,255,255,.82);
  box-shadow: 0 15px 42px rgba(14, 30, 72, .07);
  clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 12% 100%, 0 88%);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 44%;
  height: 4px;
  background: var(--gradient);
}

.stat-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 1;
  letter-spacing: -.06em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card span {
  color: var(--ink-soft);
  line-height: 1.55;
}

.principles {
  margin-top: clamp(44px, 6vw, 78px);
}

.principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line-light);
}

.principle:last-child {
  border-bottom: 1px solid var(--line-light);
}

.principle__number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: linear-gradient(135deg, #1d77ff, #7b45ff 62%, #ff178f);
  font-family: "Unbounded", sans-serif;
  font-size: 11px;
  font-weight: 800;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
}

.principle h3 {
  margin-bottom: 8px;
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-size: 20px;
  letter-spacing: -.035em;
}

.principle p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Participants */
.participants-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 92px);
  align-items: center;
}

@media (min-width: 901px) {
  .participants-layout {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(34px, 6vw, 92px);
  }
}

.participants-copy {
  min-width: 0;
}

.participants-copy .section-lead {
  margin-top: 20px;
}

.participant-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

@media (min-width: 681px) {
  .participant-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.participant-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.participant-card__number {
  color: transparent;
  -webkit-text-stroke: 1px rgba(37,133,255,.27);
  font-family: "Unbounded", sans-serif;
  font-size: 78px;
  font-weight: 800;
  line-height: .8;
}

/* Calendar */
.season-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.season-timeline::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 4%;
  right: 4%;
  top: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet), var(--pink));
  opacity: .56;
  box-shadow: 0 0 20px rgba(37,133,255,.25);
}

.timeline-item {
  position: relative;
  padding-top: 78px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 6px solid #050c25;
  background: var(--gradient);
  box-shadow: 0 0 0 1px rgba(0,232,255,.65), 0 0 20px rgba(0,232,255,.35);
  transform: rotate(45deg);
}

.timeline-item__date {
  min-height: 42px;
  margin-bottom: 15px;
  color: rgba(0,232,255,.84);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-bottom: 12px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.2;
  letter-spacing: -.035em;
}

.timeline-item p {
  margin: 0;
  color: rgba(222, 229, 249, .64);
  font-size: 14px;
  line-height: 1.65;
}

.timeline-note {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 48px 0 0;
  padding: 14px 18px;
  border: 1px solid rgba(114, 148, 235, .24);
  color: rgba(231, 237, 253, .72);
  background: rgba(5, 13, 37, .58);
}

.timeline-note::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: none;
  transform: rotate(45deg);
  background: var(--pink);
  box-shadow: 0 0 12px rgba(255,22,143,.55);
}

/* Path */
.path-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: path;
}

.path-card {
  position: relative;
  min-height: 250px;
  padding: 29px;
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.70);
  overflow: hidden;
}

.path-card::before {
  counter-increment: path;
  content: "0" counter(path);
  position: absolute;
  right: 18px;
  top: 11px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(37, 82, 198, .16);
  font-family: "Unbounded", sans-serif;
  font-size: 68px;
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: 1;
}

.path-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46%;
  height: 4px;
  background: var(--gradient);
}

.path-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 63px;
  margin-bottom: 11px;
  font-family: "Unbounded", sans-serif;
  font-size: 21px;
  letter-spacing: -.035em;
}

.path-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Ratings */
.rating-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rating-card {
  position: relative;
  min-height: 280px;
  padding: clamp(27px, 3vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(19, 42, 99, .13);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 52px rgba(16, 36, 88, .08);
}

.rating-card::before {
  content: attr(data-index);
  position: absolute;
  right: -9px;
  bottom: -31px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(37, 82, 198, .13);
  font-family: "Unbounded", sans-serif;
  font-size: 160px;
  font-weight: 800;
  line-height: 1;
}

.rating-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 48%;
  height: 4px;
  background: var(--gradient);
}

.rating-card h3 {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 0 15px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(22px, 2vw, 31px);
  letter-spacing: -.04em;
}

.rating-card p {
  position: relative;
  z-index: 1;
  max-width: 590px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.rating-note {
  max-width: 920px;
  margin: 35px 0 0;
  color: #5a6480;
  font-size: 14px;
  line-height: 1.65;
}

/* Superfinal */
.superfinal {
  min-height: 760px;
  overflow: hidden;
}

.superfinal__art {
  position: absolute;
  z-index: -1;
  right: -2%;
  bottom: 0;
  top: 18%;
  width: min(58vw, 900px);
  opacity: .58;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 26%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 26%, #000 100%);
}

.superfinal__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #03091c 0%, transparent 39%, rgba(3,9,28,.06));
}

.superfinal__art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(1.08) contrast(1.06) brightness(.78);
}

.superfinal__head {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.superfinal__lead {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(229, 236, 255, .78);
  font-size: clamp(18px, 1.55vw, 23px);
}

.superfinal-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(48px, 6vw, 74px);
}

.superfinal-card {
  min-height: 315px;
}

.superfinal-card__day {
  display: inline-flex;
  margin-bottom: 19px;
  color: rgba(0,232,255,.74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

/* Teasers */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.teaser-card {
  display: flex;
  flex-direction: column;
  min-height: 370px;
}

.teaser-card h3.card__tag {
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.3;
  color: #41517c;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.teaser-card .link-arrow {
  margin-top: auto;
  padding-top: 28px;
}

/* Subscription CTA — mobile-first */
.subscribe-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 88px);
  align-items: center;
}

@media (min-width: 901px) {
  .subscribe-section__layout {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  }
}

.subscribe-section__copy .section-title {
  margin-top: 16px;
}

.subscribe-section__copy p {
  max-width: 540px;
  margin: 20px 0 0;
  color: rgba(221, 229, 250, .68);
  font-size: 17px;
  line-height: 1.7;
}

/* Formats page */
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.format-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.format-card__index {
  display: inline-flex;
  margin-bottom: 30px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(37,133,255,.34);
  font-family: "Unbounded", sans-serif;
  font-size: 62px;
  font-weight: 800;
  line-height: 1;
}

.format-card h3 {
  font-size: clamp(25px, 2.2vw, 34px);
}

.format-card__list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.format-card__list li {
  position: relative;
  padding-left: 18px;
  color: rgba(20, 28, 58, .72);
  font-size: 14px;
  line-height: 1.45;
}

.format-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2585ff, #c43dff);
}

.format-card__note {
  margin-top: auto !important;
  padding-top: 26px;
  color: #394db1 !important;
  font-weight: 700;
  font-style: italic;
}

.format-card .link-arrow {
  margin-top: 18px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.journal-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.journal-card h3 {
  margin: 14px 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.25;
  letter-spacing: -.02em;
}

.journal-card p {
  margin: 14px 0 0;
  color: rgba(20, 28, 58, .68);
  font-size: 15px;
  line-height: 1.55;
}

.journal-card .link-arrow {
  margin-top: auto;
  padding-top: 22px;
}

.journal-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.journal-more .button svg {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* University page */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 340px;
}

.partnership-band {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.partnership-band__marker {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(114,148,235,.24);
  background: rgba(4, 12, 35, .60);
  overflow: hidden;
}

.partnership-band__marker strong {
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,232,255,.38);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(72px, 8vw, 120px);
  font-weight: 800;
  letter-spacing: -.1em;
}

.partnership-band__marker::before,
.partnership-band__marker::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 17px;
  transform: skewX(-30deg) rotate(-18deg);
  background: var(--gradient);
}

.partnership-band__marker::before {
  left: -25px;
  top: 42px;
}

.partnership-band__marker::after {
  right: -28px;
  bottom: 42px;
}

/* Organizers page */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.condition-card {
  padding: clamp(28px, 3.4vw, 48px);
}

.condition-card h3 {
  margin-bottom: 25px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(25px, 2.3vw, 36px);
  letter-spacing: -.045em;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  line-height: 1.62;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 12px;
  height: 12px;
  border: 2px solid #3154cf;
  transform: rotate(45deg);
}

.check-list ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding-left: 18px;
  color: #626d89;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 34px;
  height: 2px;
  background: var(--gradient);
  opacity: .44;
}

.process-step {
  position: relative;
  padding-top: 75px;
}

.process-step__number {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(0,232,255,.48);
  color: #fff;
  background: #07102b;
  box-shadow: 0 0 24px rgba(0,232,255,.12);
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  font-weight: 800;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
}

.process-step h3 {
  margin: 15px 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: 19px;
  letter-spacing: -.035em;
}

.process-note {
  max-width: 980px;
  margin: 48px 0 0;
  color: rgba(224, 231, 251, .66);
  line-height: 1.7;
}

/* Partners page */
.partner-form-section {
  margin-top: -54px;
  padding-top: 0;
}

.partner-form-wrap {
  position: relative;
  z-index: 4;
  max-width: 940px;
  margin-inline: auto;
}

/* Privacy */
.policy-hero {
  min-height: 420px;
  padding-bottom: 72px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 820px);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
  justify-content: center;
}

.policy-toc {
  position: sticky;
  top: calc(var(--header-h) + 26px);
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.74);
}

.policy-toc strong {
  margin-bottom: 8px;
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.policy-toc a {
  padding: 7px 0;
  color: #59647f;
  font-size: 13px;
  transition: color 160ms ease;
}

.policy-toc a:hover {
  color: #2649c2;
}

.policy-article {
  color: var(--ink-soft);
}

.policy-warning {
  margin-bottom: 35px;
  padding: 22px 24px;
  border-left: 4px solid var(--warning);
  color: #55421d;
  background: rgba(255, 182, 63, .15);
  line-height: 1.65;
}

.policy-article h2 {
  scroll-margin-top: calc(var(--header-h) + 22px);
  margin: 56px 0 21px;
  color: var(--ink);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: -.04em;
}

.policy-article h2:first-of-type {
  margin-top: 0;
}

.policy-article p {
  margin-bottom: 16px;
  line-height: 1.75;
}

.policy-placeholder {
  padding: 1px 5px;
  color: #8d3f00;
  background: rgba(255, 182, 63, .22);
  font-weight: 700;
}

.policy-consent-sample {
  margin-top: 50px;
  padding: 26px;
  border: 1px solid var(--line-light);
  background: white;
}

.policy-consent-sample h2 {
  margin-top: 0;
}

/* Footer */
.site-footer {
  position: relative;
  isolation: isolate;
  padding-block: 62px 28px;
  overflow: hidden;
  color: rgba(224, 231, 251, .70);
  background: #01040e;
  border-top: 1px solid rgba(113, 145, 232, .18);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) repeat(3, minmax(150px, .55fr));
  gap: clamp(28px, 5vw, 68px);
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
  color: rgba(216, 225, 247, .58);
  font-size: 14px;
  line-height: 1.7;
}

.footer-column h2 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-column nav,
.footer-column address {
  display: grid;
  gap: 10px;
  color: rgba(216, 225, 247, .62);
  font-size: 13px;
  font-style: normal;
}

.footer-column a {
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 30px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(113, 145, 232, .15);
  color: rgba(194, 204, 231, .70);
  font-size: 12px;
  letter-spacing: .04em;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(.2,.75,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 150ms; }
.reveal-delay-3 { transition-delay: 220ms; }
.reveal-delay-4 { transition-delay: 290ms; }

/* Focus: dark inner ring + cyan outer ring so the indicator reads on light and dark sections alike */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  box-shadow: 0 0 0 2px rgba(2, 8, 23, .85);
}

/* Responsive */
@media (max-width: 1180px) {
  /* Все 7 пунктов меню не помещаются в строку — переходим на бургер уже здесь */
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 4;
  }

  .nav-panel {
    position: fixed;
    z-index: 3;
    inset: 0;
    display: grid;
    align-content: start;
    gap: 20px;
    padding: calc(var(--header-h) + 34px) 24px 34px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background:
      radial-gradient(circle at 80% 20%, rgba(37,133,255,.18), transparent 36%),
      rgba(1, 5, 17, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 15px 2px;
    border-bottom: 1px solid rgba(114,148,235,.14);
    font-size: 14px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    min-height: 52px;
    width: 100%;
  }

  .home-hero {
    height: max(940px, 100svh);
  }

  .hero-copy {
    width: min(61vw, 690px);
  }

  .hero-visual {
    width: 68vw;
    right: -9vw;
  }

  .home-hero .subscribe-actions {
    grid-template-columns: minmax(0, 1.35fr) minmax(160px, .65fr);
  }

  .card-grid--4,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .season-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .season-timeline::before {
    display: none;
  }

  .timeline-item {
    padding: 70px 20px 24px;
    border: 1px solid rgba(114,148,235,.21);
    background: rgba(5, 13, 38, .54);
  }

  .timeline-item::before {
    top: 25px;
    left: 23px;
  }

  .subscribe-section__layout {
    grid-template-columns: 1fr;
  }

  .subscribe-section__copy {
    max-width: 760px;
  }

  .footer-grid {
    grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(140px, .6fr));
  }

  .footer-grid .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

/* Tablet + mobile: static hero — no parallax / transform drift */
@media (max-width: 1024px) {
  .home-hero {
    --mx: 0 !important;
    --my: 0 !important;
  }

  .hero-visual,
  .hero-copy {
    transform: none !important;
    transition: none !important;
  }

  .hero-slash {
    transform: skewX(-20deg) rotate(-24deg) !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: calc(76px + env(safe-area-inset-top, 0px));
  }

  .section-title {
    font-size: clamp(28px, 4.6vw, 40px);
  }

  .site-header {
    overflow: visible;
    padding-top: env(safe-area-inset-top, 0px);
  }

  .site-header__inner {
    border-bottom: 0;
    padding-block: 0;
    overflow: visible;
  }

  .brand {
    max-width: min(64vw, 168px);
    padding-block: 12px;
  }

  .brand__logo,
  .brand__mark {
    height: 40px;
    filter: none;
  }

  .home-hero {
    min-height: 1080px;
    height: max(100svh, 1080px);
  }

  .hero-content {
    align-items: flex-start;
    padding-top: calc(var(--header-h) + 58px);
  }

  .hero-copy {
    width: 100%;
    max-width: 690px;
  }

  .hero-visual {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 48%;
    opacity: .72;
    -webkit-mask-image:
      linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.18) 10%, #000 28%, #000 82%, rgba(0,0,0,.45) 92%, transparent 100%);
    mask-image:
      linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.18) 10%, #000 28%, #000 82%, rgba(0,0,0,.45) 92%, transparent 100%);
    -webkit-mask-composite: source-over;
    mask-composite: add;
  }

  .hero-visual::after {
    background:
      linear-gradient(to bottom, rgba(3,8,26,.97), transparent 32%, rgba(3,8,26,.08)),
      linear-gradient(to top, rgba(2,6,21,.96) 0%, rgba(2,6,21,.55) 14%, transparent 30%);
  }

  .hero-visual img {
    object-fit: cover;
    object-position: 72% 58%;
  }

  .hero-rail {
    display: none;
  }

  .home-hero .subscribe-actions {
    grid-template-columns: minmax(0, 1.35fr) minmax(160px, .65fr);
  }

  .page-hero {
    min-height: 610px;
  }

  .page-hero__glyph {
    opacity: .7;
  }

  .about-intro,
  .participants-layout,
  .partnership-band {
    grid-template-columns: 1fr;
  }

  .season-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--3,
  .format-grid,
  .teaser-grid,
  .superfinal-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .format-card,
  .teaser-card,
  .superfinal-card,
  .journal-card {
    min-height: auto;
  }

  .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-line::before {
    display: none;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .policy-toc strong {
    grid-column: 1 / -1;
  }

  .superfinal__art {
    width: 100%;
    right: -24%;
    opacity: .33;
  }
}

@media (max-width: 680px) {
  .section {
    padding-block: 72px;
  }

  .section-title {
    font-size: clamp(24px, 6.8vw, 30px);
    letter-spacing: -.035em;
  }

  .page-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .site-header__inner {
    padding-inline: max(20px, env(safe-area-inset-left, 0px)) max(20px, env(safe-area-inset-right, 0px));
  }

  .site-header__inner::after {
    left: max(20px, env(safe-area-inset-left, 0px));
    right: max(20px, env(safe-area-inset-right, 0px));
  }

  .brand {
    max-width: min(58vw, 140px);
    margin-left: 0;
    padding-block: 14px 10px;
    padding-left: 6px;
  }

  .brand__logo,
  .brand__mark {
    height: 30px;
  }

  .home-hero {
    min-height: 1120px;
    height: max(100svh, 1120px);
  }

  .hero-slogan {
    padding-left: 0.06em;
    max-width: 100%;
  }

  .hero-slogan__league {
    margin-inline-start: 0;
  }

  .season-intro__lead {
    max-width: 100%;
    font-size: clamp(22px, 6.2vw, 28px);
    overflow-wrap: break-word;
    word-break: normal;
  }

  .season-intro__dates {
    display: grid;
    grid-template-columns: 1fr;
  }

  .season-intro__chip {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-content {
    padding-top: calc(var(--header-h) + 42px);
    padding-bottom: 86px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding-right: 4px;
  }

  .hero-slogan__top {
    font-size: clamp(34px, 11vw, 52px);
  }

  .hero-slogan__league {
    font-size: clamp(52px, 16vw, 78px);
  }

  .hero-slogan__sport {
    font-size: clamp(16px, 5.6vw, 24px);
    max-width: 100%;
    white-space: normal;
  }

  .home-hero .subscribe-actions,
  .subscribe-actions {
    grid-template-columns: 1fr;
  }

  .subscribe-form {
    grid-template-columns: 1fr;
  }

  .subscribe-form .button {
    min-width: 0;
    width: 100%;
  }

  .action-card {
    min-height: 64px;
  }

  .hero-visual {
    right: 0;
    left: 0;
    width: 100%;
    height: 42%;
    opacity: .62;
  }

  .hero-visual img {
    object-position: 70% 65%;
  }

  .page-hero {
    min-height: 570px;
    padding-top: calc(var(--header-h) + 50px);
  }

  .page-hero__lead {
    font-size: 19px;
  }

  .page-hero__glyph {
    right: -14px;
    font-size: 190px;
  }

  .page-hero__slashes {
    right: -70px;
    top: 21%;
    opacity: .34;
  }

  .stats-grid,
  .participant-cards,
  .season-timeline,
  .path-grid,
  .rating-grid,
  .benefit-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .participant-card,
  .path-card,
  .rating-card,
  .benefit-card {
    min-height: auto;
  }

  .timeline-item {
    min-height: 250px;
  }

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

  .form-field--full {
    grid-column: auto;
  }

  .form-card {
    clip-path: polygon(0 0, 94% 0, 100% 3%, 100% 100%, 6% 100%, 0 97%);
  }

  .policy-toc {
    grid-template-columns: 1fr;
  }

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

  .footer-grid .footer-column:last-child {
    grid-column: auto;
  }

  .footer-meta {
    display: grid;
  }
}

@media (max-height: 760px) and (min-width: 901px) {
  .home-hero {
    min-height: 880px;
    height: 880px;
  }

  .hero-content {
    padding-top: calc(var(--header-h) + 30px);
    padding-bottom: 48px;
  }

  .hero-slogan {
    margin-top: 9px;
  }

  .hero-rule {
    margin-block: 18px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .hero-visual,
  .hero-copy {
    transform: none !important;
  }

  .hero-slash--one,
  .hero-slash--two {
    transform: skewX(-20deg) rotate(-24deg) !important;
  }

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

  .season-marquee__track {
    animation: none;
    transform: none;
  }

  .season-marquee__group {
    flex-wrap: nowrap;
  }

  .season-marquee__group[aria-hidden="true"] {
    display: none;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

section[id] {
  scroll-margin-top: var(--header-h);
}

.subscribe-form .form-message {
  grid-column: 1 / -1;
  margin-top: 0;
}

/* Long legal and institutional titles need a little more breathing room. */
.policy-hero .page-title {
  max-width: 1120px;
  font-size: clamp(42px, 5.35vw, 78px);
}

@media (max-width: 680px) {
  .page-title {
    font-size: clamp(36px, 10.4vw, 54px);
    hyphens: auto;
  }

  .policy-hero .page-title {
    font-size: clamp(32px, 9vw, 46px);
  }
}
