@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/unbounded-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/unbounded-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #10120f;
  --ink-2: #1b1e1a;
  --paper: #f3f4ef;
  --paper-2: #e7eae3;
  --surface: #fff;
  --surface-warm: #fff8f3;
  --accent: #1db975;
  --accent-dark: #08784d;
  --cta: #18c980;
  --cta-dark: #078d58;
  --signal: #bff1cf;
  --mint: #d9f3e4;
  --muted: #626860;
  --muted-light: #aeb5ac;
  --line: #cfd4cb;
  --line-dark: rgba(255, 255, 255, .16);
  --shadow: 0 26px 70px rgba(16, 18, 15, .13);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 26px;
  --container: 1240px;
  --wide: 1420px;
  --header: 74px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --bg: var(--paper);
  --text: var(--ink);
  --shadow-soft: 0 18px 48px rgba(16, 18, 15, .08);
  --radius-card: var(--radius);
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Onest", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body:after {
  content: "";
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: .018;
  background-image: radial-gradient(rgba(16, 18, 15, .92) .55px, transparent .72px), radial-gradient(rgba(255, 255, 255, .9) .45px, transparent .68px);
  background-size: 5px 5px, 7px 7px;
  background-position: 0 0, 2px 3px;
}
main { scroll-margin-top: var(--header); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button { cursor: pointer; }
h1, h2, h3, h4, p, figure { margin-top: 0; }
h1, h2, .coach-showcase-head h3, .selection-process > header h3, .application-head h2 {
  font-family: "Unbounded", "Onest", Arial, sans-serif;
  font-weight: 700;
  text-wrap: balance;
}
em {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  color: var(--accent);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  transform: translateY(-160%);
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(16, 18, 15, .97);
  color: #fff;
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 14px; margin-right: auto; text-decoration: none; }
.brand img:first-child { width: 120px; height: 42px; object-fit: contain; }
.brand-divider { width: 1px; height: 28px; background: var(--line-dark); }
.brand .chessopen-logo { width: 98px; height: 42px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}
.main-nav a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cta);
  transition: transform 180ms ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover:after { transform: scaleX(1); }
.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  background: var(--accent);
  color: var(--ink);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}
.header-cta:after { content: "↗"; font-size: 16px; }
.header-cta:hover { background: var(--cta-dark); color: #fff; transform: translateY(-1px); }

@media (min-width: 901px) and (max-width: 1080px) {
  .site-header { gap: 16px; }
  .main-nav { gap: 13px; }
  .main-nav a { font-size: 11px; }
  .header-cta { min-height: 42px; padding-inline: 14px; font-size: 12px; }
}

.open-call {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 8px max(24px, calc((100vw - var(--container)) / 2));
  background: var(--accent);
  color: var(--ink);
}
.open-call > div { display: flex; align-items: center; gap: 18px; }
.open-call-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
}
.open-call-status i, .selection-action span i {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(191, 241, 207, .26);
}
.open-call p { margin: 0; color: rgba(16, 18, 15, .72); font-size: 12px; }
.open-call a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  text-underline-offset: 4px;
  white-space: nowrap;
}
.open-call a svg, .coach-showcase-note a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  max-width: var(--wide);
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(540px, 1.12fr);
  align-items: center;
  gap: 42px;
  margin: 0 auto;
  padding: 42px 32px 38px;
  background: var(--paper);
}
.hero-copy {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 18px 0 max(0px, calc((var(--wide) - var(--container)) / 2));
}
.eyebrow, .section-label {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero .eyebrow { margin-bottom: 15px; }
.hero h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(45px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.05em;
}
.hero h1 em { display: block; margin-top: 4px; }
.hero-lead {
  max-width: 500px;
  margin-bottom: 21px;
  color: #4f554d;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.48;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary, .button-next, .button-submit {
  background: var(--cta);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(24, 201, 128, .3);
}
.button-primary:hover, .button-next:hover, .button-submit:hover { background: var(--cta-dark); color: #fff; }
.button svg, .text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 5px;
}
.hero-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 2.04 / 1;
  align-self: center;
  justify-self: stretch;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #d8ddd4;
  border-radius: 10px 10px 42px 10px;
  box-shadow: 0 18px 44px rgba(16, 18, 15, .12);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }

@media (min-width: 901px) {
  .hero { min-height: 0; }
  .hero-copy { padding-left: max(0px, calc((var(--wide) - var(--container)) / 2)); }
}

.facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: -18px auto 0;
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(16, 18, 15, .1);
}
.facts div { min-height: 96px; display: flex; align-items: center; gap: 16px; padding: 20px 26px; border-right: 1px solid var(--line); transition: background 220ms var(--ease); }
.facts div:last-child { border-right: 0; }
.facts div:hover { background: var(--mint); }
.facts strong {
  color: var(--accent);
  font-family: "Unbounded", "Onest", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
}
.facts span { max-width: 150px; color: #3f493f; font-size: 13px; font-weight: 650; line-height: 1.38; }

.school-proof {
  max-width: var(--container);
  margin: 24px auto 0;
  padding: 34px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px rgba(16, 18, 15, .14);
}
.school-proof-head { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(250px, .72fr); align-items: end; gap: 36px; margin-bottom: 28px; }
.school-proof .section-label { margin-bottom: 10px; color: var(--signal); }
.school-proof h2 { max-width: 720px; margin: 0; color: #fff; font-size: clamp(30px, 3vw, 46px); line-height: .98; letter-spacing: -.055em; }
.school-proof h2 em { color: var(--signal); font-style: normal; }
.school-proof-head > p { margin: 0; color: #c7d0c8; font-size: 15px; line-height: 1.52; }
.school-proof-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255, 255, 255, .18); border-bottom: 1px solid rgba(255, 255, 255, .18); }
.school-proof-stats div { min-height: 98px; display: flex; align-items: center; gap: 15px; padding: 18px 20px; border-right: 1px solid rgba(255, 255, 255, .18); }
.school-proof-stats div:last-child { border-right: 0; }
.school-proof-stats strong { color: var(--signal); font-family: "Unbounded", "Onest", sans-serif; font-size: 31px; font-weight: 700; line-height: 1; letter-spacing: -.055em; }
.school-proof-stats span { max-width: 130px; color: #eef4ee; font-size: 12px; font-weight: 650; line-height: 1.38; }
.school-proof-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 17px; color: var(--signal); font-size: 13px; font-weight: 750; text-underline-offset: 4px; }
.school-proof-link span { font-size: 18px; line-height: .8; transition: transform 180ms var(--ease); }
.school-proof-link:hover { color: #fff; }
.school-proof-link:hover span { transform: translateX(4px); }

.section { max-width: var(--container); margin: 0 auto; padding: 78px 24px; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .6fr);
  align-items: end;
  gap: 38px;
  margin-bottom: 30px;
}
.section-heading h2, .scholars-intro h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading h2 em, .scholars-intro h2 em { display: block; margin-top: 6px; }
.section-heading > p { margin-bottom: 4px; color: var(--muted); font-size: 16px; line-height: 1.55; }
.section-label { margin-bottom: 12px; }
.section-label-light { color: var(--signal); }

.groups { padding-top: 70px; padding-bottom: 72px; }
.groups .section-heading {
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .7fr);
  align-items: center;
  gap: 36px;
  margin-bottom: 28px;
}
.groups .section-heading > p {
  max-width: 390px;
  margin: 0;
  color: #536055;
  font-size: 17px;
  line-height: 1.48;
}

.groups-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2.7 / 1;
  background: var(--ink-2);
  border-radius: 10px 10px 32px 10px;
  box-shadow: 0 16px 38px rgba(16, 18, 15, .12);
}
.groups-media:before {
  content: "ТРЕНИРОВОЧНАЯ СРЕДА";
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 8px 10px;
  background: var(--surface);
  color: var(--ink);
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}
.groups-media img { width: 100%; height: 100%; object-fit: cover; }
.group-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.group-benefits article { min-height: 166px; padding: 22px 26px 20px 0; border-right: 1px solid var(--line); }
.group-benefits article + article { padding-left: 26px; }
.group-benefits article:last-child { padding-right: 0; border-right: 0; }
.group-benefits article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  margin-bottom: 13px;
  background: var(--mint);
  color: var(--accent-dark);
  border-radius: 999px;
  font-family: "Unbounded", "Onest", sans-serif;
  font-size: 10px;
  font-weight: 700;
}
.group-benefits h3 { margin-bottom: 7px; font-size: 20px; letter-spacing: -.025em; }
.group-benefits p { max-width: 330px; margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.48; }

.coach-showcase {
  position: relative;
  overflow: hidden;
  margin-top: 38px;
  padding: 36px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(16, 18, 15, .2);
}
.coach-showcase:before {
  content: "";
  position: absolute;
  top: -140px;
  right: -80px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(191, 241, 207, .24);
  border-radius: 50%;
  pointer-events: none;
}
.coach-showcase-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .6fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 26px;
}
.coach-showcase-head h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 3.1vw, 40px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.coach-showcase-head h3 em { display: block; }
.coach-showcase-head > p { margin-bottom: 4px; color: rgba(255, 255, 255, .74); font-size: 14px; }
.coach-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 1.05fr) repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(220px, auto));
  gap: 12px;
}
.coach-card {
  position: relative;
  min-width: 0;
  min-height: 220px;
  display: grid;
  grid-template-columns: minmax(148px, .78fr) minmax(0, 1.22fr);
  overflow: hidden;
  background: #f7f8f4;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 14px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.coach-card:hover { transform: translateY(-3px); border-color: rgba(191, 241, 207, .58); box-shadow: 0 18px 42px rgba(0, 0, 0, .24); }
.coach-card figure {
  position: relative;
  height: 100%;
  min-height: 220px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #0b0c17;
  border-right: 1px solid rgba(16, 18, 15, .12);
}
.coach-card figure:after { content: ""; position: absolute; z-index: 2; top: 0; right: 0; width: 6px; height: 54px; background: var(--accent); }
.coach-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.1);
  transform-origin: center;
}
.coach-role {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-bottom: 12px;
  padding: 4px 8px;
  background: #dceee6;
  color: #0d5547;
  border-radius: 4px;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.coach-card > div { min-width: 0; display: flex; flex-direction: column; padding: 20px 18px 18px; }
.coach-card h4 { margin: 0 0 10px; font-size: 19px; line-height: 1.13; letter-spacing: -.035em; }
.coach-card p { margin-bottom: 16px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.coach-card small { display: block; margin-top: auto; padding-top: 12px; color: #4f6d60; border-top: 1px solid var(--line); font-size: 9.5px; line-height: 1.4; }
.coach-card-lead {
  grid-row: 1 / span 2;
  grid-template-columns: 1fr;
  min-height: 500px;
  background: var(--accent-dark);
  color: #fff;
  border-color: rgba(255, 255, 255, .12);
}
.coach-card-lead:hover { border-color: rgba(255, 255, 255, .25); }
.coach-card-lead figure {
  height: 306px;
  min-height: 306px;
  padding: 0;
  background: #0b0c17;
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}
.coach-card-lead figure:after { width: 54px; height: 7px; background: var(--signal); }
.coach-card-lead figure img { object-position: center 38%; transform: scale(1.08); }
.coach-card-lead .coach-role {
  background: var(--signal);
  color: var(--ink);
  font-size: 8px;
}
.coach-card-lead > div { padding: 26px 26px 24px; }
.coach-card-lead h4 { margin-bottom: 10px; font-size: 29px; }
.coach-card-lead p { color: rgba(255, 255, 255, .8); font-size: 13px; }
.coach-card-lead small { color: #fff; border-color: rgba(255, 255, 255, .24); font-size: 10px; }
.coach-showcase-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}
.coach-showcase-note > span { max-width: 600px; color: rgba(255, 255, 255, .52); font-size: 11px; }
.coach-showcase-note a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  background: var(--signal);
  color: var(--ink);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease;
}
.coach-showcase-note a:hover { background: #ddfae8; transform: translateY(-2px); }

.grandmaster-schedule { padding-top: 76px; padding-bottom: 78px; background: #edf0e9; }
.grandmaster-schedule-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(270px, .56fr); align-items: end; gap: 64px; margin-bottom: 34px; }
.grandmaster-schedule-head h2 { margin: 0; font-size: clamp(38px, 4.15vw, 54px); line-height: 1.08; letter-spacing: -.045em; }
.grandmaster-schedule-head h2 em { display: block; margin-top: 6px; }
.grandmaster-schedule-head > p { max-width: 420px; margin: 0 0 4px; color: var(--muted); font-size: 15px; line-height: 1.58; }
.grandmaster-schedule-toggle { min-height: 54px; display: inline-flex; align-items: center; gap: 13px; padding: 0 20px; background: var(--cta); color: var(--ink); border: 0; border-radius: 10px; box-shadow: 0 12px 24px rgba(19, 195, 125, .18); font-size: 13px; font-weight: 800; transition: background 180ms ease, transform 180ms ease; }
.grandmaster-schedule-toggle:hover { background: var(--cta-dark); color: #fff; transform: translateY(-2px); }
.grandmaster-schedule-toggle i { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 180ms ease; }
.grandmaster-schedule-toggle[aria-expanded="true"] i { transform: rotate(225deg) translate(-2px, -2px); }
.grandmaster-schedule-panel { margin-top: 18px; scroll-margin-top: calc(var(--header) + 16px); }
.grandmaster-schedule-panel[hidden] { display: none; }
.grandmaster-schedule-embed { overflow: hidden; min-height: 440px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 14px 38px rgba(16, 18, 15, .06); }
.grandmaster-schedule-embed iframe { display: block; width: 100%; max-width: 100%; border: 0; }

.criteria-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.criteria-grid article { min-height: 144px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 22px 24px; border-right: 1px solid var(--line); }
.criteria-grid article:last-child { border-right: 0; }
.criteria-icon { width: 44px; height: 44px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.criteria-grid svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.criteria-grid article div > span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.criteria-grid strong { display: block; font-size: 14px; line-height: 1.4; }
.scholarship-rules { margin-top: 30px; padding: 32px; background: var(--mint); border: 1px solid rgba(7, 141, 88, .16); border-radius: var(--radius); }
.scholarship-rules-head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .62fr); align-items: end; gap: 36px; margin-bottom: 24px; }
.scholarship-rules-head .section-label { margin-bottom: 9px; }
.scholarship-rules h3 { margin: 0; font-family: "Unbounded", "Onest", sans-serif; font-size: clamp(26px, 2.65vw, 37px); line-height: 1.05; letter-spacing: -.045em; }
.scholarship-rules h3 em { color: var(--accent-dark); font-style: normal; }
.scholarship-rules-head > p { max-width: 410px; margin: 0; color: #3e5145; font-size: 14px; line-height: 1.5; }
.scholarship-rules ol { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.scholarship-rules li { min-height: 138px; display: grid; grid-template-columns: 34px minmax(0, 1fr); align-items: start; gap: 13px; padding: 18px; background: rgba(255, 255, 255, .78); border: 1px solid rgba(7, 141, 88, .13); border-radius: 12px; }
.scholarship-rules li b { color: var(--accent); font-family: "Unbounded", "Onest", sans-serif; font-size: 11px; line-height: 1.35; }
.scholarship-rules li strong { display: block; margin-bottom: 6px; font-size: 15px; line-height: 1.2; }
.scholarship-rules li p { margin: 0; color: #4d5d52; font-size: 12px; line-height: 1.43; }
.scholarship-rules-note { margin: 16px 0 0; color: #355142; font-size: 13px; line-height: 1.46; }
.selection-process {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  padding: 44px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(16, 18, 15, .16);
}
.selection-process:after { content: ""; position: absolute; right: -130px; bottom: -210px; width: 420px; height: 420px; border: 1px solid rgba(191, 241, 207, .2); border-radius: 50%; pointer-events: none; }
.selection-process > header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .5fr) minmax(0, 1fr) minmax(240px, .58fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 38px;
}
.section-label-gold { color: var(--signal); }
.selection-process > header .section-label { align-self: start; }
.selection-process > header h3 { margin: 0; font-size: clamp(30px, 3.1vw, 42px); line-height: 1.08; letter-spacing: -.045em; }
.selection-process > header > span { color: rgba(255, 255, 255, .74); font-size: 11px; line-height: 1.5; }
.selection-flow { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.selection-flow article { position: relative; min-width: 0; display: flex; align-items: flex-start; gap: 15px; padding-right: 16px; }
.selection-flow article:not(:last-child):after { content: ""; position: absolute; top: 19px; right: -15px; left: 48px; height: 1px; background: linear-gradient(90deg, rgba(191, 241, 207, .72), rgba(255, 255, 255, .12)); }
.selection-flow b { position: relative; z-index: 1; width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; background: var(--signal); color: var(--ink); border: 5px solid var(--ink); border-radius: 50%; box-shadow: 0 0 0 1px rgba(191, 241, 207, .6); font-size: 11px; }
.selection-flow div { position: relative; z-index: 1; min-width: 0; display: flex; flex-direction: column; }
.selection-flow small { margin-bottom: 7px; color: var(--signal); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.selection-flow strong { margin-bottom: 7px; font-size: 18px; }
.selection-flow p { min-height: 60px; margin-bottom: 12px; color: rgba(255, 255, 255, .74); font-size: 12px; line-height: 1.5; }
.selection-flow span { color: var(--mint); font-size: 10px; line-height: 1.4; }
.selection-action {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 38px;
  padding: 25px 27px;
  background: var(--accent);
  border-radius: 12px;
}
.selection-action > div { min-width: 0; }
.selection-action span { display: flex; align-items: center; gap: 9px; margin-bottom: 6px; color: var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.selection-action strong { display: block; margin-bottom: 3px; font-size: 19px; }
.selection-action p { margin: 0; color: rgba(16, 18, 15, .68); font-size: 10px; }
.selection-action .button { flex: 0 0 auto; background: var(--cta); color: var(--ink); box-shadow: 0 10px 24px rgba(0, 0, 0, .15); }
.selection-action .button:hover { background: var(--cta-dark); color: #fff; }

.future {
  padding: 30px 24px 18px;
  background: var(--signal);
  color: var(--ink);
}
.future-shell { max-width: var(--container); display: grid; grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr); column-gap: clamp(32px, 5vw, 70px); row-gap: 28px; margin: 0 auto; padding: 42px; background: var(--ink); color: #fff; border-radius: 22px; box-shadow: 0 18px 0 rgba(16, 18, 15, .16); }
.future-intro { grid-row: 1 / span 2; align-self: center; }
.future-intro .section-label { color: var(--signal); }
.future-intro h2 { max-width: 360px; margin: 0; font-size: clamp(34px, 3.35vw, 45px); line-height: 1.08; letter-spacing: -.05em; }
.future-intro h2 em { display: block; margin-top: 8px; color: var(--signal); }
.future-intro > p { max-width: 360px; margin: 18px 0 24px; color: #e0e8e1; font-size: 15px; line-height: 1.52; }
.button-signal { background: var(--cta); color: var(--ink); box-shadow: 0 10px 24px rgba(0, 0, 0, .16); }
.button-signal:hover { background: var(--cta-dark); color: #fff; }
.future-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.future-steps li { min-height: 192px; padding: 22px 19px; background: #1b201b; border: 1px solid rgba(191, 241, 207, .32); border-radius: 12px; transition: background 220ms var(--ease), transform 220ms var(--ease); }
.future-steps li:hover { transform: translateY(-3px); background: #252a24; }
.future-steps > li > span { display: block; margin-bottom: 18px; color: var(--signal); font-family: "Unbounded", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: -.05em; }
.future-steps small { display: block; margin-bottom: 8px; color: var(--signal); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.future-steps h3 { margin: 0 0 9px; color: #fff; font-size: clamp(18px, 1.58vw, 22px); line-height: 1.12; letter-spacing: -.04em; }
.future-steps p { margin: 0; color: #e0e8e1; font-size: 12px; line-height: 1.5; }
.future-stories { grid-column: 2; max-width: none; margin: 0; padding: 20px 0 0; border-top: 1px solid rgba(255, 255, 255, .16); }
.future-stories-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 14px; }
.future-stories-head .section-label { color: var(--signal); }
.future-stories-head .section-label { margin-bottom: 7px; font-size: 10px; }
.future-stories-head h3 { max-width: 500px; margin: 0; font-family: "Unbounded", "Onest", sans-serif; font-size: clamp(21px, 1.9vw, 27px); line-height: 1.12; letter-spacing: -.045em; }
.future-stories-head > p { max-width: 300px; margin: 0; color: #c7d1c8; font-size: 12px; line-height: 1.45; }
.future-stories .alumni-grid { gap: 10px; }
.future-stories .alumni-card { grid-template-columns: 70px minmax(0, 1fr); gap: 15px; min-height: 190px; padding: 18px; background: #f6f8f4; color: var(--ink); border-color: rgba(191, 241, 207, .48); box-shadow: none; }
.future-stories .alumni-card:hover { transform: none; box-shadow: none; }
.future-stories .alumni-card figure { width: 70px; height: 70px; }
.future-stories .alumni-copy { min-height: 154px; }
.future-stories .alumni-kicker { margin-bottom: 7px; color: var(--accent-dark); font-size: 8px; }
.future-stories .alumni-copy h3 { margin-bottom: 7px; color: var(--ink); font-size: 20px; }
.future-stories .alumni-copy > p { display: block; margin: 0; color: #536056; font-size: 11px; line-height: 1.42; }
.future-stories .alumni-timeline { gap: 6px; margin-top: auto; padding-top: 10px; border-color: #d5ddd5; }
.future-stories .alumni-timeline li { grid-template-columns: 70px 1fr; gap: 7px; }
.future-stories .alumni-timeline small { color: var(--accent-dark); font-size: 7px; }
.future-stories .alumni-timeline span { color: #263027; font-size: 9px; line-height: 1.35; }
.future-stories .alumni-card-dark { background: #f6f8f4; color: var(--ink); border-color: rgba(191, 241, 207, .48); }
.future-stories .alumni-card-dark .alumni-copy > p { color: #536056; }
.future-stories .alumni-card-dark .alumni-timeline { border-color: #d5ddd5; }
.future-stories .alumni-card-dark .alumni-timeline small { color: var(--accent-dark); }
.future-disclaimer { max-width: var(--container); margin: 0 auto; padding: 16px 8px 0; color: #314431; font-size: 11px; font-weight: 650; line-height: 1.45; }

.next-step {
  padding: 44px;
  background: var(--mint);
  border: 1px solid rgba(7, 141, 88, .16);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(16, 18, 15, .07);
}
.next-step-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 28px;
}
.next-step-intro .section-label { margin-bottom: 10px; }
.next-step-intro h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(32px, 3.35vw, 44px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.next-step-intro h2 em { display: block; margin-top: 5px; color: var(--accent-dark); }
.next-step-intro > p { max-width: 430px; margin: 0; color: #3e5145; font-size: 15px; line-height: 1.5; }
.next-step-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.next-step-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.next-step-grid article { min-height: 150px; padding: 20px; background: rgba(255, 255, 255, .72); border: 1px solid rgba(7, 141, 88, .14); border-radius: 12px; }
.next-step-grid span { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 24px; margin-bottom: 14px; background: var(--cta); color: var(--ink); border-radius: 999px; font-family: "Unbounded", "Onest", sans-serif; font-size: 9px; font-weight: 700; }
.next-step-grid h3 { margin: 0 0 7px; font-size: 18px; line-height: 1.12; letter-spacing: -.03em; }
.next-step-grid p { max-width: 280px; margin: 0; color: #4d5d52; font-size: 12px; line-height: 1.48; }
.next-step-action { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 12px; padding: 22px 24px; background: var(--ink); color: #fff; border-radius: 12px; }
.next-step-action strong { display: block; margin-bottom: 4px; font-size: 17px; line-height: 1.2; }
.next-step-action p { max-width: 680px; margin: 0; color: rgba(255, 255, 255, .78); font-size: 11px; line-height: 1.45; }
.next-step-action .button { flex: 0 0 auto; }

.stories { padding-top: 76px; padding-bottom: 78px; background: var(--surface); }
.stories-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(270px, .56fr); align-items: end; gap: 64px; margin-bottom: 38px; }
.stories-heading h2 { margin: 0; font-size: clamp(38px, 4.15vw, 54px); line-height: 1.08; letter-spacing: -.045em; }
.stories-heading h2 em { display: block; margin-top: 6px; }
.stories-heading > p { max-width: 420px; margin: 0 0 4px; color: var(--muted); font-size: 15px; line-height: 1.58; }
.alumni-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.stories .alumni-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.alumni-card { display: grid; grid-template-columns: 112px minmax(0, 1fr); align-items: start; gap: 24px; min-height: 326px; padding: 28px; overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 10px 28px rgba(16, 18, 15, .04); transition: transform 220ms var(--ease), box-shadow 220ms var(--ease); }
.alumni-card:hover { transform: translateY(-4px); box-shadow: 0 20px 38px rgba(16, 18, 15, .1); }
.alumni-card figure { width: 112px; height: 112px; margin: 0; overflow: hidden; background: #d6dbd2; border-radius: 50%; }
.alumni-card .alumni-monogram { display: grid; place-items: center; background: var(--accent); color: var(--ink); font-family: "Unbounded", "Onest", sans-serif; font-size: 23px; font-weight: 700; letter-spacing: -.08em; }
.alumni-card figure img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform 500ms ease; }
.alumni-card:hover figure img { transform: scale(1.035); }
.alumni-copy { min-height: 270px; display: flex; flex-direction: column; align-items: flex-start; }
.alumni-kicker { margin-bottom: 18px; color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.alumni-copy h3 { margin: 0 0 13px; font-size: clamp(25px, 2.3vw, 31px); line-height: 1.04; letter-spacing: -.045em; }
.alumni-copy > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.alumni-regalia { display: grid; gap: 8px; width: 100%; margin: 3px 0 0; padding: 0; list-style: none; }
.alumni-regalia li { position: relative; padding: 0 0 8px 15px; color: var(--ink); border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 700; line-height: 1.42; }
.alumni-regalia li:before { content: ""; position: absolute; top: .52em; left: 0; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.alumni-regalia li:last-child { padding-bottom: 0; border-bottom: 0; }
.alumni-timeline { display: grid; gap: 9px; width: 100%; margin: auto 0 0; padding: 19px 0 0; list-style: none; border-top: 1px solid var(--line); }
.alumni-timeline li { display: grid; grid-template-columns: 84px 1fr; gap: 9px; align-items: baseline; }
.alumni-timeline small { color: var(--accent); font-size: 8px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.alumni-timeline span { font-size: 10px; font-weight: 700; line-height: 1.4; }
.alumni-card-dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.alumni-card-dark .alumni-copy > p { color: rgba(255, 255, 255, .62); }
.alumni-card-dark .alumni-timeline { border-color: rgba(255, 255, 255, .16); }
.alumni-card-dark .alumni-timeline small { color: var(--signal); }
.stories-foot { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 18px; padding: 25px 28px; background: #d7f1e2; border-radius: 12px; }
.stories-foot p { max-width: 720px; margin: 0; color: #274838; font-size: 14px; line-height: 1.5; }
.stories-foot a { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; color: var(--ink); font-size: 12px; font-weight: 800; text-decoration: none; }
.stories-foot svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.scholars { padding-top: 54px; padding-bottom: 80px; }
.scholars-intro { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .62fr); align-items: end; gap: 48px; margin-bottom: 24px; }
.scholars-intro .section-label { margin-bottom: 10px; }
.scholars-intro > p:last-child { max-width: 400px; margin: 0 0 5px; color: var(--muted); font-size: 15px; line-height: 1.52; }
.scholar-empty {
  position: relative;
  min-height: 142px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 27px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(16, 18, 15, .045);
}
.scholar-empty:after { content: "БУДУЩИЕ ИСТОРИИ"; position: absolute; top: 13px; right: 18px; color: var(--accent-dark); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.scholar-empty > span { color: var(--accent); font-family: "Unbounded", sans-serif; font-size: 31px; font-weight: 700; letter-spacing: -.06em; }
.scholar-empty strong { display: block; margin-bottom: 6px; font-size: 20px; line-height: 1.16; letter-spacing: -.025em; }
.scholar-empty p { max-width: 690px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.scholar-empty a { min-height: 48px; display: inline-flex; align-items: center; padding: 0 18px; background: var(--cta); color: var(--ink); border-radius: var(--radius-sm); font-size: 12px; font-weight: 800; text-decoration: none; transition: background 180ms ease, color 180ms ease; }
.scholar-empty a:hover { background: var(--cta-dark); color: #fff; }
.scholar-card { display: grid; grid-template-columns: 240px 1fr; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
.scholar-card img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.scholar-card > div { padding: 30px; }
.scholar-meta { color: var(--accent); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.scholar-card h3 { margin: 8px 0 12px; font-size: 27px; }
.scholar-card p, .scholar-card li { color: var(--muted); font-size: 13px; }

.application {
  scroll-margin-top: calc(var(--header) + 16px);
  padding: 100px 24px;
  background: var(--ink);
  color: #fff;
  border-top: 1px solid var(--line-dark);
}
.application-shell { max-width: var(--container); margin: 0 auto; }
.application-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 34px; }
.application-head h2 { max-width: 900px; margin: 0; font-size: clamp(37px, 4vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
.application-head > p { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; margin-bottom: 5px; color: rgba(255, 255, 255, .56); font-size: 11px; }
.application-head > p strong { color: var(--signal); font-size: 17px; }
.form-card {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  overflow: hidden;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .3);
}
.form-aside { padding: 34px 27px; background: var(--paper-2); border-right: 1px solid var(--line); }
.form-aside > p { margin-bottom: 24px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.form-progress { display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; list-style: none; }
.form-progress li { color: #858c83; border-radius: 10px; transition: background 180ms ease, color 180ms ease; }
.form-progress button { width: 100%; display: flex; align-items: center; gap: 12px; padding: 13px; background: transparent; color: inherit; border: 0; border-radius: inherit; font: inherit; text-align: left; cursor: pointer; }
.form-progress button > span { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid currentColor; border-radius: 50%; font-size: 11px; font-weight: 800; }
.form-progress button div { display: flex; flex-direction: column; }
.form-progress button:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.form-progress button:hover { background: rgba(16, 18, 15, .05); }
.form-progress strong { font-size: 12px; }
.form-progress small { font-size: 9px; }
.form-progress li.is-active { background: var(--ink); color: #fff; box-shadow: 0 8px 22px rgba(16, 18, 15, .11); }
.form-progress li.is-active button:hover { background: transparent; }
.form-progress li.is-active button > span { background: var(--signal); color: var(--ink); border-color: var(--signal); }
.form-progress li.is-complete { color: #3c6456; }
.form-progress li.is-complete button > span { background: var(--mint); border-color: #6fa78f; }
.privacy-note { display: flex; align-items: flex-start; gap: 9px; margin-top: 36px; color: var(--muted); font-size: 10px; }
.privacy-note svg { width: 19px; height: 19px; flex: 0 0 auto; fill: #4d806d; }
.application-form-wrap { min-width: 0; padding: 46px clamp(30px, 5vw, 68px) 50px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-step[hidden] { display: none !important; }
.form-step { max-width: 780px; }
.form-step-head { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.form-step-head > span { display: block; margin-bottom: 8px; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.form-step-head h3 { margin-bottom: 5px; font-size: 31px; line-height: 1.1; letter-spacing: -.035em; }
.form-step-head p { margin: 0; color: var(--muted); font-size: 12px; }
.field { min-width: 0; margin: 0 0 23px; padding: 0; border: 0; }
.field label, .field legend { display: block; margin-bottom: 8px; color: #252925; font-size: 12px; font-weight: 800; }
.field i, .consent i { color: var(--accent); font-style: normal; }
.field input:not([type=radio]):not([type=checkbox]), .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  background: #f3f5f1;
  color: var(--ink);
  border: 1px solid #cfd5cc;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8b9188; }
.field input:focus, .field textarea:focus { background: #fff; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(16, 18, 15, .1); }
.field-hint, .field-meta, .legend-hint { color: #7f867d; font-size: 10px; }
.field-hint { display: block; margin-top: 6px; }
.field-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 6px; }
.legend-hint { margin: -4px 0 8px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-row-year { grid-template-columns: .42fr 1fr; }
.choice-grid { display: grid; gap: 8px; }
.choice-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choice { position: relative; min-height: 50px; display: flex; cursor: pointer; }
.choice input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.choice span { width: 100%; display: flex; align-items: center; justify-content: center; padding: 10px 12px; background: #f3f5f1; border: 1px solid #cfd5cc; border-radius: var(--radius-sm); color: #50574f; font-size: 11px; font-weight: 700; text-align: center; transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease; }
.choice:hover span { border-color: #7d877c; }
.choice input:checked + span { background: var(--signal); color: var(--ink); border-color: #78bc96; box-shadow: inset 0 0 0 1px #78bc96; }
.choice input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 2px; }
.contact-box { margin-top: 8px; padding: 22px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; }
.contact-box .field { margin-bottom: 12px; }
.contact-box-head { margin-bottom: 17px; }
.contact-box-head strong { font-size: 13px; }
.contact-box-head p { max-width: 590px; margin: 4px 0 0; color: var(--muted); font-size: 10px; }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin-top: 6px; color: #555c54; font-size: 10px; line-height: 1.55; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--accent); }
.consent a { color: var(--ink); text-underline-offset: 3px; }
.consent-marketing { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.field-error { display: none; margin-top: 6px; color: #ad2a20; font-size: 10px; font-weight: 700; }
.has-error .field-error, .consent-error.is-visible { display: block; }
.has-error input:not([type=radio]):not([type=checkbox]), .has-error textarea { border-color: #d4493d; box-shadow: 0 0 0 3px rgba(212, 73, 61, .1); }
.form-buttons { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 30px; }
.button-back { background: var(--paper-2); color: #3f453e; }
.button-back:hover { background: #d9ddd6; }
.button-next { margin-left: auto; }
.button-submit:disabled { cursor: wait; opacity: .68; transform: none; }
.submit-loader { display: none; width: 16px; height: 16px; border: 2px solid rgba(255, 255, 255, .4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.button-submit.is-loading .submit-loader { display: block; }
.form-status { display: none; margin-top: 16px; padding: 13px 14px; border-radius: var(--radius-sm); font-size: 11px; }
.form-status.is-visible { display: block; }
.form-status.is-error { background: #fff0ee; color: #9f2b22; border: 1px solid #f2c4bf; }
.form-success { padding: 56px 20px; text-align: center; }
.success-mark { width: 60px; height: 60px; display: grid; place-items: center; margin: 0 auto 18px; background: var(--signal); color: var(--ink); border-radius: 50%; }
.success-mark svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { margin-bottom: 10px; font-size: 31px; }
.form-success p { max-width: 560px; margin: 0 auto; color: var(--muted); }
@keyframes spin { to { transform: rotate(360deg); } }

.mobile-apply { display: none; }
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  padding: 34px max(24px, calc((100vw - var(--container)) / 2));
  background: #080a08;
  color: #fff;
  border-top: 1px solid var(--line-dark);
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand span { display: flex; flex-direction: column; }
.footer-brand strong { font-size: 14px; }
.footer-brand small { color: rgba(255, 255, 255, .46); font-size: 9px; }
.site-footer nav { display: flex; gap: 20px; }
.site-footer nav a { min-height: 44px; display: inline-flex; align-items: center; color: rgba(255, 255, 255, .55); font-size: 10px; text-underline-offset: 4px; }
.site-footer > span { color: rgba(255, 255, 255, .42); font-size: 10px; }

@media (max-width: 1120px) {
  .site-header, .open-call { padding-inline: 22px; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr); padding-inline: 22px; }
  .hero-copy { padding-left: 14px; }
  .facts { margin-inline: 22px; }
  .coach-showcase { padding: 38px; }
  .coach-showcase-head { gap: 34px; }
  .coach-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto; }
  .coach-card-lead { grid-row: auto; grid-column: 1 / -1; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); min-height: 250px; }
  .coach-card-lead figure { height: 250px; min-height: 250px; border-right: 1px solid var(--line-dark); border-bottom: 0; }
  .form-card { grid-template-columns: 238px minmax(0, 1fr); }
  .application-form-wrap { padding: 38px 32px 44px; }
  .alumni-card { grid-template-columns: 96px minmax(0, 1fr); gap: 20px; padding: 22px; }
  .alumni-card figure { width: 96px; height: 96px; }
  .stories .alumni-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --header: 66px; }
  .site-header { height: var(--header); }
  .main-nav, .header-cta { display: none; }
  .open-call p { display: none; }
  .hero { min-height: 0; grid-template-columns: 1fr; gap: 22px; padding: 36px 24px 58px; }
  .hero-copy { padding: 0; }
  .hero h1 { max-width: 780px; font-size: clamp(42px, 7vw, 58px); }
  .hero-media { min-height: 0; aspect-ratio: 1.8 / 1; }
  .facts { grid-template-columns: repeat(2, 1fr); margin-top: -46px; }
  .facts div:nth-child(2) { border-right: 0; }
  .facts div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .school-proof { margin-inline: 22px; padding: 30px; }
  .school-proof-head { grid-template-columns: 1fr; gap: 14px; }
  .school-proof-stats { grid-template-columns: repeat(2, 1fr); }
  .school-proof-stats div:nth-child(2) { border-right: 0; }
  .school-proof-stats div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .section { padding-block: 64px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .groups { padding-top: 62px; padding-bottom: 64px; }
  .groups .section-heading { grid-template-columns: 1fr; gap: 14px; margin-bottom: 24px; }
  .groups .section-heading > p { max-width: 560px; font-size: 16px; }
  .groups-media { aspect-ratio: 1.7 / 1; }
  .coach-showcase-head { grid-template-columns: 1fr; gap: 16px; }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .criteria-grid article:nth-child(2) { border-right: 0; }
  .criteria-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .scholarship-rules-head { grid-template-columns: 1fr; gap: 14px; }
  .scholarship-rules ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .selection-process { padding: 34px 28px; }
  .selection-process > header { grid-template-columns: 1fr; gap: 9px; }
  .selection-process > header .section-label { margin-bottom: 3px; }
  .selection-flow { grid-template-columns: 1fr; gap: 24px; }
  .selection-flow article { padding-right: 0; }
  .selection-flow article:not(:last-child):after { top: 42px; right: auto; bottom: -24px; left: 19px; width: 1px; height: auto; background: linear-gradient(180deg, rgba(191, 241, 207, .72), rgba(255, 255, 255, .12)); }
  .selection-flow p { min-height: 0; }
  .selection-action { align-items: stretch; flex-direction: column; gap: 18px; }
  .selection-action .button { width: 100%; }
  .future { padding: 24px 22px 16px; }
  .future-shell { grid-template-columns: 1fr; gap: 26px; padding: 32px; }
  .future-intro { grid-row: auto; }
  .future-intro h2 { max-width: 660px; }
  .future-stories { grid-column: auto; padding-top: 22px; }
  .future-stories-head { gap: 16px; }
  .next-step { padding: 32px; }
  .next-step-intro { grid-template-columns: 1fr; gap: 14px; margin-bottom: 22px; }
  .next-step-intro > p { max-width: 610px; }
  .stories { padding-block: 62px; }
  .stories-heading { grid-template-columns: 1fr; gap: 16px; }
  .grandmaster-schedule { padding-block: 62px; }
  .grandmaster-schedule-head { grid-template-columns: 1fr; gap: 16px; }
  .alumni-grid { grid-template-columns: 1fr; }
  .stories .alumni-grid { grid-template-columns: 1fr; gap: 14px; }
  .stories-foot { align-items: flex-start; flex-direction: column; gap: 15px; }
  .scholars-intro { grid-template-columns: 1fr; gap: 10px; }
  .application { padding: 76px 18px; }
  .application-head { align-items: flex-start; flex-direction: column; }
  .application-head > p { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 2px 12px; }
  .application-head > p strong { width: 100%; }
  .form-card { grid-template-columns: 1fr; }
  .form-aside { padding: 18px 18px 14px; border-right: 0; border-bottom: 1px solid var(--line); }
  .form-aside > p, .privacy-note { display: none; }
  .form-progress { flex-direction: row; }
  .form-progress li { flex: 1; }
  .form-progress button { justify-content: center; padding: 8px; }
  .form-progress button div { display: none; }
  .application-form-wrap { padding: 32px 24px 38px; }
  .site-footer { grid-template-columns: 1fr; gap: 14px; padding: 28px 22px; }
  .site-footer nav { flex-wrap: wrap; gap: 6px 18px; }
}

@media (max-width: 768px) {
  body { padding-bottom: 68px; }
  .brand img:first-child { width: 104px; }
  .brand .chessopen-logo { width: 86px; }
  .open-call { min-height: 44px; padding: 7px 18px; }
  .open-call a { margin-left: auto; font-size: 10px; }
  .hero { padding-inline: 20px; }
  .hero-media { min-height: 0; }
  .facts { margin-inline: 14px; }
  .school-proof { margin-inline: 14px; }
  .section { padding: 56px 20px; }
  .group-benefits { grid-template-columns: 1fr; }
  .group-benefits article, .group-benefits article + article { min-height: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .group-benefits article:last-child { border-bottom: 0; }
  .group-benefits article > span { margin-bottom: 12px; }
  .coach-showcase { margin-top: 46px; padding: 30px 22px; }
  .coach-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .coach-card { grid-column: auto; }
  .coach-card-lead { grid-column: 1 / -1; }
  .coach-showcase-note { align-items: flex-start; flex-direction: column; gap: 10px; }
  .scholar-empty { grid-template-columns: 76px 1fr; gap: 18px; padding: 24px; }
  .scholar-empty a { grid-column: 2; justify-self: start; }
  .mobile-apply {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: 10px;
    left: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cta);
    color: var(--ink);
    border-radius: 10px;
    box-shadow: 0 14px 36px rgba(16, 18, 15, .3);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .mobile-apply.is-hidden { opacity: 0; transform: translateY(18px); pointer-events: none; }
}

@media (max-width: 540px) {
  .brand { gap: 9px; }
  .brand img:first-child { width: 94px; }
  .brand .chessopen-logo { width: 72px; }
  .open-call { gap: 10px; padding-inline: 12px; }
  .open-call-status { font-size: 9px; letter-spacing: .06em; }
  .open-call a { gap: 3px; font-size: 9px; }
  .hero { padding: 32px 16px 52px; }
  .eyebrow { font-size: 9px; }
  .hero h1 { font-size: clamp(34px, 8.8vw, 42px); line-height: 1.04; letter-spacing: -.045em; }
  .hero h1 em { margin-top: 8px; }
  .hero-lead { margin-bottom: 18px; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button-primary, .text-link { width: 100%; }
  .text-link { justify-content: center; }
  .hero-media { min-height: 0; aspect-ratio: 1.45 / 1; border-radius: 8px 8px 30px 8px; }
  .hero-media img { object-position: 63% center; }
  .facts div { min-height: 98px; align-items: flex-start; flex-direction: column; gap: 7px; padding: 17px; }
  .facts strong { font-size: 24px; }
  .facts span { font-size: 10.5px; }
  .school-proof { padding: 25px 20px; }
  .school-proof h2 { font-size: clamp(29px, 8.6vw, 37px); }
  .school-proof-head > p { font-size: 13px; }
  .school-proof-stats { grid-template-columns: 1fr; }
  .school-proof-stats div, .school-proof-stats div:nth-child(2) { min-height: 0; flex-direction: row; justify-content: space-between; gap: 18px; padding: 16px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .school-proof-stats div:last-child { border-bottom: 0; }
  .school-proof-stats strong { font-size: 27px; }
  .school-proof-stats span { max-width: 180px; font-size: 11px; text-align: right; }
  .section-heading h2, .scholars-intro h2 { font-size: clamp(31px, 8.8vw, 39px); }
  .groups-media { aspect-ratio: 1.28 / 1; border-radius: 8px 8px 32px 8px; }
  .groups-media img { object-position: center; }
  .groups-media:before { top: 11px; left: 11px; font-size: 7px; }
  .coach-showcase { margin-inline: -4px; padding: 27px 16px; border-radius: 20px; }
  .coach-showcase-head h3 { font-size: 31px; }
  .coach-grid { grid-template-columns: 1fr; }
  .coach-card { grid-column: auto; grid-template-columns: 112px minmax(0, 1fr); min-height: 168px; }
  .coach-card figure { height: 100%; min-height: 168px; padding: 0; }
  .coach-card-lead { grid-column: auto; grid-template-columns: 1fr; min-height: 0; }
  .coach-card-lead figure { height: 180px; min-height: 180px; padding: 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .coach-card > div { padding: 15px 14px; }
  .coach-card-lead > div { padding: 22px 20px 20px; }
  .coach-role { min-height: 20px; margin-bottom: 9px; padding: 4px 6px; font-size: 6.8px; }
  .coach-card h4 { font-size: 16px; }
  .coach-card-lead h4 { font-size: 26px; }
  .coach-card p { margin-bottom: 10px; font-size: 11.5px; }
  .coach-card-lead p { font-size: 12px; }
  .coach-card small { padding-top: 9px; font-size: 9px; }
  .coach-showcase-note a { width: 100%; justify-content: center; white-space: normal; }
  .future { padding: 16px 14px 13px; }
  .future-shell { gap: 24px; padding: 24px 20px; border-radius: 16px; }
  .future-intro h2 { font-size: clamp(31px, 8.8vw, 39px); }
  .future-intro > p { margin: 18px 0 23px; font-size: 14px; }
  .future-intro .button { width: 100%; }
  .future-steps { grid-template-columns: 1fr; }
  .future-steps li { min-height: 0; padding: 20px 18px; }
  .future-steps li:hover { transform: none; }
  .future-steps h3 { font-size: 20px; }
  .future-steps p { font-size: 11.5px; }
  .future-stories { padding: 28px 0 0; }
  .future-stories-head { margin-bottom: 21px; }
  .future-stories-head h3 { font-size: 27px; }
  .future-stories-head > p { display: none; }
  .future-stories .alumni-card { grid-template-columns: 58px minmax(0, 1fr); }
  .future-disclaimer { padding: 15px 0 20px; font-size: 9px; }
  .next-step { margin-inline: -4px; padding: 26px 18px; border-radius: 20px; }
  .next-step-intro h2 { font-size: clamp(30px, 8.1vw, 38px); }
  .next-step-intro > p { font-size: 14px; }
  .next-step-grid { grid-template-columns: 1fr; gap: 8px; }
  .next-step-grid article { min-height: 0; padding: 18px; }
  .next-step-action { align-items: stretch; flex-direction: column; gap: 16px; padding: 20px 18px; }
  .next-step-action .button { width: 100%; }
  .criteria-grid { grid-template-columns: 1fr; }
  .criteria-grid article { min-height: 110px; flex-direction: row; align-items: center; justify-content: flex-start; border-right: 0; border-bottom: 1px solid var(--line); }
  .criteria-grid article:last-child { border-bottom: 0; }
  .scholarship-rules { margin-inline: -4px; padding: 26px 18px; border-radius: 20px; }
  .scholarship-rules ol { grid-template-columns: 1fr; }
  .scholarship-rules li { min-height: 0; }
  .selection-process { margin-inline: -4px; padding: 28px 18px; border-radius: 20px; }
  .selection-process > header h3 { font-size: 28px; }
  .selection-action { padding: 21px 18px; }
  .scholar-empty { grid-template-columns: 1fr; gap: 14px; padding: 28px 22px; }
  .scholar-empty a { grid-column: auto; }
  .scholar-card { grid-template-columns: 1fr; }
  .application { padding: 64px 10px; }
  .application-head { padding-inline: 8px; }
  .application-head h2 { font-size: clamp(31px, 8.7vw, 40px); }
  .form-card { border-radius: 18px; }
  .application-form-wrap { padding: 28px 16px 32px; }
  .form-row, .form-row-year, .choice-grid-2, .choice-grid-3 { grid-template-columns: 1fr; }
  .stories { padding-block: 46px; }
  .stories-heading { margin-bottom: 24px; }
  .grandmaster-schedule { padding-block: 46px; }
  .grandmaster-schedule-head { margin-bottom: 24px; }
  .grandmaster-schedule-toggle { width: 100%; justify-content: center; }
  .grandmaster-schedule-embed { min-height: 360px; border-radius: 18px; }
  .alumni-card { grid-template-columns: 78px minmax(0, 1fr); gap: 16px; min-height: 0; padding: 20px; }
  .alumni-card figure { width: 78px; height: 78px; }
  .alumni-copy { min-height: 0; }
  .alumni-timeline li { grid-template-columns: 72px 1fr; }
  .choice { min-height: 48px; }
  .form-buttons { align-items: stretch; flex-direction: column-reverse; }
  .form-buttons .button { width: 100%; }
  .button-next { width: 100%; }
}

/* Visual polish: restrained chess cues, shared interaction states and no new palette. */
.groups, .selection { position: relative; isolation: isolate; }
.groups:before, .selection:before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: linear-gradient(90deg, var(--accent) 1px, transparent 1px), linear-gradient(var(--accent) 1px, transparent 1px);
  background-size: 112px 112px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 34%, transparent 74%);
  mask-image: radial-gradient(ellipse at center, #000 0 34%, transparent 74%);
}
.groups > *, .selection > * { position: relative; z-index: 1; }
.knight-trajectory {
  position: absolute !important;
  z-index: 0 !important;
  top: 42px;
  right: -12px;
  width: min(31vw, 360px);
  height: auto;
  color: var(--accent);
  opacity: .28;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 26%, #000 74%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 26%, #000 74%, transparent);
}
.knight-trajectory path { stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-dasharray: 3 7; }
.knight-trajectory circle { fill: var(--surface); stroke: currentColor; stroke-width: 1.4; }

.hero-media, .groups-media, .coach-card figure { box-shadow: var(--shadow-soft); }
.hero-media:after, .groups-media:after, .coach-card figure:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(191, 241, 207, .08), transparent 46%, rgba(16, 18, 15, .12));
}
.hero-media img, .groups-media img, .coach-card figure img { transition: transform 360ms var(--ease), filter 360ms var(--ease); }
.hero-media:hover img, .groups-media:hover img { transform: scale(1.018); filter: saturate(.96) contrast(1.015); }
.coach-card:hover figure img { transform: scale(1.045); filter: saturate(.94) contrast(1.02); }

.group-benefits article, .criteria-grid article, .scholarship-rules li, .next-step-grid article, .alumni-card {
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease), border-color 360ms var(--ease), background 360ms var(--ease);
}
.group-benefits article:hover { transform: translateY(-3px); background: rgba(255, 255, 255, .54); }
.criteria-grid article:hover {
  transform: translateY(-3px);
  background: #121813;
  border-color: rgba(191, 241, 207, .32);
}
.criteria-icon,
.criteria-grid svg { transition: background 220ms var(--ease), border-color 220ms var(--ease), stroke 220ms var(--ease); }
.criteria-grid article:hover .criteria-icon {
  background: rgba(191, 241, 207, .05);
  border-color: rgba(191, 241, 207, .22);
}
.criteria-grid article:hover svg { stroke: var(--accent); }
.scholarship-rules li:hover, .next-step-grid article:hover, .alumni-card:hover { transform: translateY(-4px); border-color: rgba(7, 141, 88, .34); box-shadow: var(--shadow-soft); }
.coach-grid { counter-reset: coach; }
.coach-card { counter-increment: coach; overflow: hidden; border-color: rgba(207, 212, 203, .92); transition: transform 360ms var(--ease), border-color 360ms var(--ease), box-shadow 360ms var(--ease); }
.coach-card:after {
  content: "GM / 0" counter(coach);
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 13px;
  padding: 5px 7px;
  background: rgba(255, 255, 255, .88);
  color: var(--accent-dark);
  border: 1px solid rgba(7, 141, 88, .18);
  border-radius: 999px;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .08em;
}
.coach-card-lead:after { background: rgba(191, 241, 207, .94); color: var(--ink); border-color: transparent; }

.criteria-grid article { position: relative; }
.criteria-grid article:not(:last-child):after, .criteria-grid article:not(:last-child):before { position: absolute; z-index: 3; pointer-events: none; opacity: 0; }
.criteria-grid article:not(:last-child):after { content: ""; top: 50%; right: -14px; width: 28px; height: 1px; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--accent), rgba(29, 185, 117, .2)); }
.criteria-grid article:not(:last-child):before { content: ""; top: calc(50% - 3px); right: -13px; width: 6px; height: 6px; border-top: 1px solid var(--accent); border-right: 1px solid var(--accent); transform: rotate(45deg); }
.selection.is-revealed .criteria-grid article:not(:last-child):after { opacity: .62; animation: selection-link 720ms var(--ease) forwards; }
.selection.is-revealed .criteria-grid article:nth-child(2):after { animation-delay: 110ms; }
.selection.is-revealed .criteria-grid article:nth-child(3):after { animation-delay: 220ms; }
.selection.is-revealed .criteria-grid article:not(:last-child):before { opacity: .62; animation: selection-arrow 240ms var(--ease) forwards; }
.selection.is-revealed .criteria-grid article:nth-child(2):before { animation-delay: 760ms; }
.selection.is-revealed .criteria-grid article:nth-child(3):before { animation-delay: 870ms; }
@keyframes selection-link { to { transform: scaleX(1); } }
@keyframes selection-arrow { from { opacity: 0; } to { opacity: .62; } }

.form-progress li { position: relative; overflow: hidden; border: 1px solid transparent; }
.form-progress li.is-active { border-color: rgba(191, 241, 207, .38); }
.form-progress li.is-complete { background: rgba(29, 185, 117, .10); border-color: rgba(7, 141, 88, .16); }
.form-progress li.is-complete button > span { font-size: 0; }
.form-progress li.is-complete button > span:after { content: "✓"; font-size: 12px; }
.form-progress li:not(.is-active):not(.is-complete) button > span { border-style: dashed; opacity: .76; }
.field.is-valid input:not([type=radio]):not([type=checkbox]), .field.is-valid textarea { border-color: rgba(7, 141, 88, .55); background: rgba(217, 243, 228, .34); box-shadow: inset 0 0 0 1px rgba(7, 141, 88, .12); }
.field.is-valid > label:after { content: "✓"; display: inline-grid; place-items: center; width: 15px; height: 15px; margin-left: 7px; background: var(--accent); color: var(--ink); border-radius: 50%; font-size: 9px; line-height: 1; vertical-align: -1px; }
.field.is-valid .choice input:checked + span { box-shadow: inset 0 0 0 1px #78bc96, 0 5px 12px rgba(7, 141, 88, .08); }

.button svg, .coach-showcase-note a svg, .open-call a svg { transition: transform 220ms var(--ease); }
.button:hover svg, .coach-showcase-note a:hover svg, .open-call a:hover svg { transform: translateX(3px); }

@media (max-width: 900px) {
  .knight-trajectory { width: 190px; top: 94px; right: -58px; opacity: .2; }
  .criteria-grid article:not(:last-child):after { top: auto; right: auto; bottom: -14px; left: 50%; width: 1px; height: 28px; transform: scaleY(0); transform-origin: top; }
  .criteria-grid article:not(:last-child):before { top: auto; right: auto; bottom: -13px; left: calc(50% - 3px); transform: rotate(135deg); }
  .selection.is-revealed .criteria-grid article:not(:last-child):after { animation-name: selection-link-vertical; }
  @keyframes selection-link-vertical { to { transform: scaleY(1); } }
}
@media (max-width: 540px) {
  body:after { opacity: .012; }
  .groups .knight-trajectory, .selection .knight-trajectory { display: none; }
  .groups:before, .selection:before { background-size: 84px 84px; opacity: .026; }
  .grandmaster-schedule-head > * { min-width: 0; }
  .grandmaster-schedule-head h2 { font-size: clamp(30px, 8.3vw, 36px); overflow-wrap: anywhere; }
  .coach-card:after { top: 10px; right: 10px; font-size: 6px; }
  .field.is-valid > label:after { width: 13px; height: 13px; font-size: 8px; }
}

/* Champions edition: a bolder, editorial chess arena without altering copy. */
body {
  background: #0a0d0b;
  color: #f4f7f1;
}
body:before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background:
    radial-gradient(circle at 74% 9%, rgba(29, 185, 117, .18), transparent 23rem),
    radial-gradient(circle at 8% 46%, rgba(191, 241, 207, .07), transparent 20rem),
    linear-gradient(90deg, rgba(191, 241, 207, .025) 1px, transparent 1px),
    linear-gradient(rgba(191, 241, 207, .025) 1px, transparent 1px);
  background-size: auto, auto, 86px 86px, 86px 86px;
}
body > * { position: relative; z-index: 1; }
body:after { opacity: .013; mix-blend-mode: screen; }

.site-header {
  height: 82px;
  background: rgba(8, 11, 9, .86);
  border-top: 0;
  border-bottom-color: rgba(191, 241, 207, .16);
}
.brand-divider { background: rgba(191, 241, 207, .24); }
.main-nav { gap: 28px; }
.main-nav a { color: rgba(244, 247, 241, .68); letter-spacing: .015em; }
.header-cta {
  min-height: 50px;
  padding-inline: 23px;
  background: #bff1cf;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(191, 241, 207, .18);
}
.header-cta:hover { background: #fff; color: #0a0d0b; transform: translateY(-2px); }

.open-call {
  min-height: 48px;
  background: #101611;
  color: #eaf6ed;
  border-bottom: 1px solid rgba(191, 241, 207, .13);
}
.open-call-status { color: #bff1cf; }
.open-call-status i { background: #1db975; box-shadow: 0 0 0 5px rgba(29, 185, 117, .14); }
.open-call p { color: rgba(234, 246, 237, .62); }
.open-call a { color: #bff1cf; }

.hero {
  max-width: none;
  min-height: min(760px, calc(100svh - 130px));
  grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
  gap: clamp(28px, 4vw, 76px);
  padding: clamp(52px, 8vw, 110px) max(24px, calc((100vw - var(--container)) / 2)) clamp(58px, 7vw, 96px);
  overflow: hidden;
  background: #0a0d0b;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .7;
  background:
    linear-gradient(90deg, rgba(191, 241, 207, .06) 1px, transparent 1px),
    linear-gradient(rgba(191, 241, 207, .06) 1px, transparent 1px);
  background-position: right -16px top -14px;
  background-size: 116px 116px;
  -webkit-mask-image: linear-gradient(90deg, transparent 2%, #000 42%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 2%, #000 42%, #000 100%);
}
.hero:after {
  content: "";
  position: absolute;
  right: 3.5%;
  bottom: 10%;
  width: min(31vw, 430px);
  aspect-ratio: 1;
  pointer-events: none;
  border: 1px solid rgba(191, 241, 207, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(191, 241, 207, .025), 0 0 0 77px rgba(191, 241, 207, .018);
}
.hero-copy { z-index: 1; padding: 0; }
.hero .eyebrow { color: #bff1cf; }
.hero h1 { max-width: 650px; margin-bottom: 24px; color: #f5f8f2; font-size: clamp(48px, 5.15vw, 78px); line-height: .98; }
.hero h1 em { color: #34d58e; }
.hero-lead { max-width: 470px; color: rgba(244, 247, 241, .7); font-size: clamp(16px, 1.22vw, 19px); line-height: 1.55; }
.text-link { color: #eaf6ed; }
.text-link:hover { color: #bff1cf; }
.button-primary, .button-next, .button-submit { border-radius: 999px; background: #bff1cf; box-shadow: 0 16px 40px rgba(29, 185, 117, .18); }
.button-primary:hover, .button-next:hover, .button-submit:hover { background: #fff; color: #0a0d0b; }
.hero-media {
  z-index: 1;
  align-self: stretch;
  aspect-ratio: auto;
  min-height: 470px;
  border: 1px solid rgba(191, 241, 207, .28);
  border-radius: 26px 26px 100px 26px;
  box-shadow: 28px 32px 0 rgba(29, 185, 117, .14), 0 34px 90px rgba(0, 0, 0, .42);
}
.hero-media:after { background: linear-gradient(135deg, rgba(9, 14, 10, .08), transparent 44%, rgba(6, 9, 7, .56)); }
.hero-media img { object-position: 56% center; }

.facts {
  z-index: 4;
  max-width: min(1320px, calc(100% - 48px));
  margin: -32px auto 0;
  padding: 8px;
  background: rgba(18, 24, 19, .94);
  color: #f4f7f1;
  border: 1px solid rgba(191, 241, 207, .24);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}
.facts div { min-height: 108px; padding: 20px 24px; border-color: rgba(191, 241, 207, .15); border-radius: 10px; }
.facts div:hover { background: rgba(29, 185, 117, .12); }
.facts strong { color: #bff1cf; font-size: clamp(25px, 2.35vw, 38px); }
.facts span { color: rgba(244, 247, 241, .74); }

.school-proof {
  max-width: min(1320px, calc(100% - 48px));
  margin-top: 26px;
  padding: clamp(34px, 5vw, 62px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 241, 207, .18);
  border-radius: 26px;
  background: linear-gradient(135deg, #121914, #0c110e 65%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .24);
}
.school-proof:before {
  content: "";
  position: absolute;
  inset: auto -12% -58% auto;
  width: 440px;
  aspect-ratio: 1;
  border: 1px solid rgba(191, 241, 207, .17);
  transform: rotate(45deg);
  box-shadow: 0 0 0 62px rgba(191, 241, 207, .025), 0 0 0 124px rgba(191, 241, 207, .02);
}
.school-proof-head, .school-proof-stats, .school-proof-link { position: relative; z-index: 1; }
.school-proof-head { gap: 82px; }
.school-proof h2 { font-size: clamp(34px, 4vw, 58px); }
.school-proof-stats { margin-top: 10px; border-color: rgba(191, 241, 207, .18); }
.school-proof-stats div { min-height: 115px; border-color: rgba(191, 241, 207, .18); }
.school-proof-stats strong { color: #bff1cf; font-size: clamp(28px, 2.8vw, 43px); }
.school-proof-link { color: #bff1cf; }

.section { color: #f4f7f1; }
.section-label { color: #bff1cf; }
.section-heading > p, .groups .section-heading > p, .grandmaster-schedule-head > p, .stories-heading > p { color: rgba(244, 247, 241, .64); }
.groups { padding-top: 110px; padding-bottom: 104px; }
.groups .section-heading { margin-bottom: 42px; }
.groups .section-heading h2, .grandmaster-schedule h2, .stories h2, .selection h2 { color: #f4f7f1; font-size: clamp(39px, 4.4vw, 63px); line-height: 1; }
.groups-media { border: 1px solid rgba(191, 241, 207, .23); border-radius: 24px 24px 78px 24px; box-shadow: 24px 24px 0 rgba(29, 185, 117, .12), 0 30px 80px rgba(0, 0, 0, .28); }
.groups-media:after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 50%, rgba(6, 10, 7, .7)); }
.groups-media:before { z-index: 2; background: #bff1cf; }
.group-benefits { gap: 12px; margin-top: 44px; border: 0; }
.group-benefits article, .group-benefits article + article, .group-benefits article:last-child {
  min-height: 206px;
  padding: 26px;
  background: #121813;
  border: 1px solid rgba(191, 241, 207, .18);
  border-radius: 16px;
}
.group-benefits article > span { color: #bff1cf; border-color: rgba(191, 241, 207, .24); }
.group-benefits h3 { color: #fff; font-size: 22px; }
.group-benefits p { color: rgba(244, 247, 241, .62); }
.group-benefits article:hover { background: #172218; transform: translateY(-5px); }

.coach-showcase { margin-top: 70px; border: 1px solid rgba(191, 241, 207, .2); border-radius: 26px; background: #101510; box-shadow: 0 34px 90px rgba(0, 0, 0, .3); }
.coach-showcase:before { opacity: .8; background: linear-gradient(135deg, rgba(29, 185, 117, .22), transparent 38%); }
.coach-showcase-head { gap: 70px; }
.coach-card { border-color: rgba(191, 241, 207, .15); background: rgba(255, 255, 255, .025); }
.coach-card:hover { border-color: rgba(191, 241, 207, .4); transform: translateY(-5px); box-shadow: 0 18px 38px rgba(0, 0, 0, .24); }
.coach-card:after { background: rgba(191, 241, 207, .94); color: #0a0d0b; }
.coach-card { color: #f4f7f1; }
.coach-card h4 { color: #fff; }
.coach-card p { color: rgba(244, 247, 241, .76); font-size: 12.5px; line-height: 1.55; }
.coach-card small { color: #bff1cf; border-color: rgba(191, 241, 207, .25); font-size: 10px; }
.coach-card-lead { border-color: rgba(191, 241, 207, .35); }
.coach-card-lead:after { background: #1db975; }
.coach-showcase-note { border-color: rgba(191, 241, 207, .15); }
.coach-showcase-note a { border-radius: 999px; }

.grandmaster-schedule, .stories, .selection { background: transparent; }
.grandmaster-schedule { padding-top: 104px; padding-bottom: 104px; }
.grandmaster-schedule-head, .stories-heading { gap: 82px; margin-bottom: 42px; }
.grandmaster-schedule-toggle { border-radius: 999px; background: #bff1cf; box-shadow: 0 16px 40px rgba(29, 185, 117, .15); }
.grandmaster-schedule-toggle:hover { background: #fff; color: #0a0d0b; }
.grandmaster-schedule-embed { border-color: rgba(191, 241, 207, .22); border-radius: 22px; box-shadow: 0 24px 70px rgba(0, 0, 0, .28); }
.grandmaster-schedule:not(.is-open) { padding-top: 46px; padding-bottom: 24px; }
.grandmaster-schedule:not(.is-open) .grandmaster-schedule-head {
  grid-template-columns: minmax(0, 1.45fr) minmax(230px, .55fr);
  align-items: center;
  gap: 44px;
  margin-bottom: 26px;
}
.grandmaster-schedule:not(.is-open) .grandmaster-schedule-head h2 { font-size: clamp(36px, 3.9vw, 52px); }
.grandmaster-schedule:not(.is-open) + .stories { padding-top: 52px; }

.stories { padding-top: 78px; padding-bottom: 86px; }
.stories-heading { grid-template-columns: minmax(0, 1.16fr) minmax(250px, .84fr); gap: 54px; margin-bottom: 30px; }
.stories h2 { max-width: 720px; font-size: clamp(38px, 3.9vw, 54px); }
.stories .alumni-grid { gap: 14px; }
.alumni-card { grid-template-columns: 96px minmax(0, 1fr); gap: 18px; min-height: 264px; padding: 24px; background: linear-gradient(145deg, #151d16, #101510); border-color: rgba(191, 241, 207, .2); border-radius: 18px; box-shadow: none; }
.alumni-card figure { width: 96px; height: 96px; border: 1px solid rgba(191, 241, 207, .26); background: #1db975; }
.alumni-copy { min-height: 0; }
.alumni-card h3 { margin-bottom: 9px; color: #fff; font-size: clamp(23px, 2vw, 28px); line-height: 1.08; }
.alumni-regalia { gap: 5px; margin-top: 0; }
.alumni-regalia li { padding: 0 0 9px 15px; color: rgba(244, 247, 241, .86); border-color: rgba(191, 241, 207, .13); font-size: 12px; line-height: 1.38; }
.alumni-regalia li:before { background: #bff1cf; }
.alumni-card:hover { border-color: rgba(191, 241, 207, .52); background: #18241a; }

.selection { padding-top: 104px; padding-bottom: 112px; }
.selection:before { opacity: .09; }
.criteria-grid { gap: 12px; margin-top: 42px; border: 0; }
.criteria-grid article, .criteria-grid article:last-child { min-height: 210px; padding: 26px; background: #121813; border: 1px solid rgba(191, 241, 207, .18); border-radius: 16px; }
.criteria-icon { background: rgba(191, 241, 207, .05); border-color: rgba(191, 241, 207, .22); }
.criteria-grid article div > span { color: #bff1cf; }
.criteria-grid strong { color: #f4f7f1; font-size: 15px; }
.criteria-grid article:not(:last-child):after, .criteria-grid article:not(:last-child):before { display: none; }
.scholarship-rules { margin-top: 42px; padding: clamp(28px, 4vw, 48px); background: linear-gradient(135deg, #1db975, #08784d); border-color: rgba(191, 241, 207, .5); border-radius: 24px; box-shadow: 0 30px 72px rgba(0, 0, 0, .22); }
.scholarship-rules .section-label, .scholarship-rules h3 em { color: #dff9e8; }
.scholarship-rules h3, .scholarship-rules-head > p, .scholarship-rules-note { color: #fff; }
.scholarship-rules li { background: rgba(8, 30, 18, .26); border-color: rgba(255, 255, 255, .24); }
.scholarship-rules li b { color: #dff9e8; }
.scholarship-rules li strong, .scholarship-rules li p { color: #fff; }

.next-step {
  margin: 0 auto 104px;
  padding: clamp(32px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  background: #e0f5e7;
  color: #10120f;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .3);
}
.next-step:before { content: ""; position: absolute; inset: auto -8% -110px auto; width: 330px; aspect-ratio: 1; border: 1px solid rgba(7, 120, 77, .23); transform: rotate(45deg); }
.next-step > * { position: relative; z-index: 1; }
.next-step .section-label { color: #08784d; }
.next-step-grid { gap: 12px; }
.next-step-grid article { background: rgba(255, 255, 255, .74); border-color: rgba(7, 120, 77, .16); border-radius: 16px; }
.next-step-grid article:hover { background: #fff; }
.next-step-action { border-radius: 16px; background: #101510; }

.application { position: relative; padding-top: 120px; overflow: hidden; background: #080b09; border-color: rgba(191, 241, 207, .16); }
.application:before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .13; background: linear-gradient(90deg, rgba(191, 241, 207, .08) 1px, transparent 1px), linear-gradient(rgba(191, 241, 207, .08) 1px, transparent 1px); background-size: 96px 96px; -webkit-mask-image: linear-gradient(#000, transparent 75%); mask-image: linear-gradient(#000, transparent 75%); }
.application-shell { position: relative; z-index: 1; }
.form-card { border-color: rgba(191, 241, 207, .3); border-radius: 24px; }
.form-aside { background: #e6eee7; }
.site-footer { background: #060806; border-color: rgba(191, 241, 207, .16); }

/* Refined contrast pass: cooler emerald, compact first screen and clearer programme flow. */
body {
  --accent: #18b98a;
  --accent-dark: #0b7054;
  --cta: #18b98a;
  --signal: #cef6e3;
  --mint: #e3f6ed;
}
.hero h1 em, .school-proof-link, .section-label, .group-benefits article > span { color: #2ad29b; }
.hero .eyebrow, .open-call-status, .facts strong { color: #cef6e3; }
.hero-media { border-color: rgba(206, 246, 227, .28); box-shadow: 22px 24px 0 rgba(24, 185, 138, .12), 0 28px 72px rgba(0, 0, 0, .38); }
.facts { background: rgba(14, 23, 18, .97); border-color: rgba(206, 246, 227, .26); }
.facts div { min-height: 92px; }
.facts strong { font-size: clamp(27px, 2.2vw, 35px); }
.facts span { color: rgba(244, 247, 241, .82); }

.group-benefits article, .group-benefits article + article, .group-benefits article:last-child { min-height: 184px; background: #111a15; border-color: rgba(206, 246, 227, .2); }
.group-benefits article > span { min-width: 40px; min-height: 28px; background: rgba(206, 246, 227, .12); border-color: rgba(206, 246, 227, .34); }
.group-benefits h3 { margin-top: 12px; font-size: 22px; }
.group-benefits p { color: rgba(244, 247, 241, .8); font-size: 14px; line-height: 1.52; }
.group-benefits article:hover,
.group-benefits article:last-child:hover { background: #172218; transform: translateY(-5px); }

.coach-card figure { background: #101713; }
.coach-card figure img { filter: saturate(.72) contrast(1.06) brightness(.98); }
.coach-card:hover figure img { filter: saturate(.84) contrast(1.08) brightness(1.02); }
.coach-card figure:before { background: linear-gradient(180deg, transparent 55%, rgba(5, 12, 8, .38)); }
.coach-card, .coach-card-lead { border-color: rgba(206, 246, 227, .23); }

.scholarship-rules {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 52px);
  background: linear-gradient(135deg, #103d30, #0a2e24 72%);
  border-color: rgba(206, 246, 227, .3);
}
.scholarship-rules:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background: linear-gradient(90deg, rgba(206, 246, 227, .075) 1px, transparent 1px), linear-gradient(rgba(206, 246, 227, .075) 1px, transparent 1px);
  background-size: 86px 86px;
  -webkit-mask-image: linear-gradient(135deg, #000, transparent 72%);
  mask-image: linear-gradient(135deg, #000, transparent 72%);
}
.scholarship-rules > * { position: relative; z-index: 1; }
.scholarship-rules .section-label, .scholarship-rules h3 em, .scholarship-rules li b { color: #89e8be; }
.scholarship-rules h3 { font-size: clamp(30px, 3.15vw, 43px); }
.scholarship-rules-head > p, .scholarship-rules-note { color: rgba(244, 247, 241, .82); font-size: 14px; }
.scholarship-rules ol { position: relative; gap: 12px; }
.scholarship-rules li { position: relative; min-height: 148px; padding: 20px; background: rgba(3, 18, 13, .44); border-color: rgba(206, 246, 227, .22); border-radius: 15px; }
.scholarship-rules li strong { color: #fff; font-size: 16px; line-height: 1.24; }
.scholarship-rules li p { color: rgba(244, 247, 241, .82); font-size: 13px; line-height: 1.48; }
.scholarship-rules li:nth-child(1):after, .scholarship-rules li:nth-child(2):after, .scholarship-rules li:nth-child(4):after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -20px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #d8fae9;
  background: #0d3529;
  border: 1px solid rgba(206, 246, 227, .36);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  transform: translateY(-50%);
}
.scholarship-rules li:nth-child(3):after {
  content: "↓";
  position: absolute;
  z-index: 2;
  bottom: -22px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #d8fae9;
  background: #0d3529;
  border: 1px solid rgba(206, 246, 227, .36);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  transform: translateX(-50%);
}

.next-step { background: linear-gradient(135deg, #eaf8f0, #d6f1e2); box-shadow: 0 26px 72px rgba(0, 0, 0, .25); }
.next-step:before { inset: -126px -20px auto auto; width: 360px; border-color: rgba(11, 112, 84, .22); box-shadow: 0 0 0 46px rgba(24, 185, 138, .06), 0 0 0 92px rgba(24, 185, 138, .035); }
.next-step:after {
  content: "";
  position: absolute;
  top: 42px;
  right: 46px;
  width: 224px;
  height: 126px;
  pointer-events: none;
  opacity: .55;
  background: linear-gradient(90deg, rgba(11, 112, 84, .16) 1px, transparent 1px), linear-gradient(rgba(11, 112, 84, .16) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(135deg, transparent, #000 38%, #000 70%, transparent);
  mask-image: linear-gradient(135deg, transparent, #000 38%, #000 70%, transparent);
}
.next-step-grid article { background: rgba(255, 255, 255, .86); border-color: rgba(11, 112, 84, .18); }
.next-step-grid span { background: #18b98a; }
.next-step-action { background: #0b1912; }

/* Compact, high-contrast decision block. */
.next-step { padding: clamp(34px, 3.7vw, 48px); }
.next-step-intro { align-items: start; gap: 52px; margin-bottom: 24px; }
.next-step-intro > p { padding-top: 10px; color: #365e4d; font-size: 17px; line-height: 1.5; }
.next-step-grid { gap: 14px; }
.next-step-grid article { min-height: 148px; padding: 22px 20px; border-color: rgba(11, 112, 84, .24); }
.next-step-grid span { width: 42px; height: 28px; margin-bottom: 16px; color: #062b20; font-size: 10px; }
.next-step-grid h3 { margin-bottom: 9px; font-size: 20px; }
.next-step-grid p { max-width: 310px; color: #466c5b; font-size: 14px; line-height: 1.48; }
.next-step-action { gap: 34px; margin-top: 14px; padding: 22px 26px; border: 1px solid rgba(206, 246, 227, .18); }
.next-step-action strong { margin-bottom: 6px; font-size: 19px; line-height: 1.22; }
.next-step-action p { color: rgba(244, 247, 241, .88); font-size: 13px; line-height: 1.5; }
.next-step-action .button {
  min-height: 56px;
  padding-inline: 30px;
  background: #19c88f;
  color: #062b20;
  border: 1px solid #75e4bb;
  box-shadow: 0 12px 28px rgba(25, 200, 143, .34);
}
.next-step-action .button:hover { background: #dfffee; color: #062b20; transform: translateY(-2px); }

/* Scholarship requirements: large, scannable route map instead of dense text cards. */
.scholarship-rules-head { gap: 54px; margin-bottom: 28px; }
.scholarship-rules-head > p { max-width: 455px; font-size: 16px; line-height: 1.48; }
.scholarship-rules ol { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.scholarship-rules li {
  min-height: 154px;
  display: block;
  padding: 22px 24px 20px 86px;
  background: rgba(4, 22, 16, .72);
  border-color: rgba(206, 246, 227, .28);
}
.scholarship-rules li b {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #093226;
  background: #9cf0ca;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
}
.scholarship-rules li strong { margin-bottom: 8px; font-size: 18px; line-height: 1.18; }
.scholarship-rules li p { font-size: 14px; line-height: 1.48; }
.scholarship-rules li:after { display: none !important; }
.scholarship-rules li:nth-child(1):before, .scholarship-rules li:nth-child(2):before, .scholarship-rules li:nth-child(3):before {
  content: "↓";
  position: absolute;
  z-index: 3;
  bottom: -22px;
  left: 42px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #d8fae9;
  background: #0b3428;
  border: 1px solid rgba(206, 246, 227, .42);
  border-radius: 50%;
  font-size: 15px;
  line-height: 1;
}
.scholarship-rules-note { margin-top: 22px; font-size: 14px; }

@media (min-width: 901px) {
  .hero {
    min-height: 0;
    height: clamp(470px, calc(100svh - 230px), 650px);
    align-items: center;
    padding-top: 52px;
    padding-bottom: 48px;
  }
  .hero-media { min-height: 0; height: 100%; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(48px, 5vw, 72px); }
  .hero-lead { margin-bottom: 20px; }
}

@media (max-width: 900px) {
  .site-header { height: 68px; }
  .hero { min-height: 0; grid-template-columns: 1fr; padding: 46px 24px 70px; }
  .hero:before { background-size: 74px 74px; }
  .hero:after { right: 7%; bottom: 12%; width: 180px; }
  .hero h1 { font-size: clamp(45px, 11vw, 64px); }
  .hero-media { min-height: 0; height: auto; aspect-ratio: 1.22 / 1; margin-top: 4px; border-radius: 20px 20px 64px 20px; box-shadow: 14px 16px 0 rgba(29, 185, 117, .12), 0 24px 60px rgba(0, 0, 0, .34); }
  .facts, .school-proof { max-width: calc(100% - 32px); }
  .facts { margin-top: -26px; padding: 5px; }
  .facts div { min-height: 98px; padding: 16px; }
  .school-proof, .next-step { border-radius: 20px; }
  .school-proof { padding: 30px 22px; }
  .school-proof:before { width: 250px; }
  .groups, .grandmaster-schedule, .stories, .selection { padding-top: 74px; padding-bottom: 74px; }
  .groups .section-heading, .grandmaster-schedule-head, .stories-heading { gap: 20px; margin-bottom: 30px; }
  .alumni-card { grid-template-columns: 86px minmax(0, 1fr); gap: 16px; min-height: 0; padding: 20px; }
  .alumni-card figure { width: 86px; height: 86px; }
  .alumni-regalia li { font-size: 11.5px; }
  .groups-media { border-radius: 18px 18px 50px 18px; box-shadow: 12px 14px 0 rgba(29, 185, 117, .1), 0 24px 60px rgba(0, 0, 0, .24); }
  .group-benefits { margin-top: 32px; }
  .coach-showcase { margin-top: 52px; border-radius: 20px; }
  .criteria-grid { margin-top: 28px; }
  .criteria-grid article, .criteria-grid article:last-child { min-height: 164px; }
  .next-step { margin-bottom: 74px; }
  .application { padding-top: 82px; }
  .scholarship-rules li:after { display: none; }
  .scholarship-rules li:nth-child(1):before, .scholarship-rules li:nth-child(2):before, .scholarship-rules li:nth-child(3):before { display: none; }
  .grandmaster-schedule:not(.is-open) .grandmaster-schedule-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
  .next-step-intro > p { padding-top: 0; }
}

@media (max-width: 540px) {
  .coach-showcase, .next-step, .scholarship-rules, .selection-process { margin-inline: 0; }
  .open-call { min-height: 42px; padding-inline: 16px; }
  .open-call a { font-size: 11px; }
  .hero { padding: 38px 16px 56px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { gap: 10px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { min-height: 40px; }
  .facts, .school-proof { max-width: calc(100% - 20px); }
  .facts { border-radius: 14px; }
  .facts strong { font-size: 24px; }
  .facts span { font-size: 11px; }
  .school-proof h2, .groups .section-heading h2, .grandmaster-schedule h2, .stories h2, .selection h2 { font-size: clamp(31px, 9.3vw, 43px); }
  .group-benefits article, .group-benefits article + article, .group-benefits article:last-child { min-height: 0; padding: 22px; }
  .coach-showcase { margin-inline: -10px; }
  .stories .alumni-grid { grid-template-columns: 1fr; }
  .alumni-card { grid-template-columns: 78px minmax(0, 1fr); gap: 14px; min-height: 0; padding: 18px; }
  .alumni-card figure { width: 78px; height: 78px; }
  .alumni-card h3 { font-size: 21px; }
  .alumni-regalia li { font-size: 11.5px; }
  .criteria-grid article, .criteria-grid article:last-child { min-height: 0; padding: 22px; }
  .scholarship-rules { padding: 24px 18px; border-radius: 18px; }
  .next-step { margin-inline: -4px; padding: 28px 18px; }
  .next-step:after { top: 24px; right: -32px; opacity: .32; }
  .grandmaster-schedule:not(.is-open) { padding-top: 40px; padding-bottom: 20px; }
  .scholarship-rules li { padding: 20px 18px 18px 76px; }
  .scholarship-rules li strong { font-size: 16px; }
  .scholarship-rules li p { font-size: 13px; }
  .next-step-intro > p { font-size: 15px; }
  .next-step-grid article { min-height: 0; padding: 20px 18px; }
  .next-step-action { gap: 16px; padding: 20px 18px; }
  .next-step-action strong { font-size: 18px; }
  .coach-showcase, .next-step, .scholarship-rules, .selection-process { margin-inline: 0; }
}

@media (max-width: 360px) {
  .open-call { justify-content: center; padding-inline: 12px; }
  .open-call a { display: none; }
}

/* Final mobile layout guardrails: keep each information unit on its own line. */
@media (max-width: 600px) {
  .stories-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 26px;
  }
  .stories-heading h2 {
    max-width: 100%;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.03;
  }
  .stories-heading > p {
    position: static;
    max-width: none;
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.5;
  }
  .stories .alumni-grid { grid-template-columns: 1fr; gap: 12px; }
  .alumni-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }
  .alumni-card figure { width: 82px; height: 82px; }
  .alumni-card h3 { font-size: 22px; }
  .alumni-regalia li { padding-bottom: 10px; font-size: 13px; line-height: 1.42; }

  .school-proof { padding: 26px 20px; }
  .school-proof-head { gap: 18px; margin-bottom: 22px; }
  .school-proof-head > p { font-size: 15px; line-height: 1.5; }
  .school-proof-stats div, .school-proof-stats div:nth-child(2) {
    min-height: 78px;
    padding: 17px 0;
  }
  .school-proof-stats strong { font-size: 32px; }
  .school-proof-stats span { max-width: 205px; font-size: 13px; line-height: 1.34; }

  .scholarship-rules { padding: 28px 20px; }
  .scholarship-rules-head { gap: 18px; margin-bottom: 24px; }
  .scholarship-rules h3 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 33px);
    line-height: 1.06;
    letter-spacing: -.055em;
    overflow-wrap: anywhere;
  }
  .scholarship-rules-head > p { font-size: 16px; line-height: 1.48; }
  .scholarship-rules ol { grid-template-columns: 1fr; gap: 12px; }
  .scholarship-rules li {
    min-height: 0;
    padding: 22px 20px 20px 88px;
  }
  .scholarship-rules li b { top: 20px; left: 20px; }
  .scholarship-rules li strong { font-size: 18px; line-height: 1.2; }
  .scholarship-rules li p { font-size: 15px; line-height: 1.45; }
  .scholarship-rules-note { font-size: 15px; line-height: 1.45; }
}

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

/* Student portraits: clean, consistent framing without the former laurel artwork. */
.alumni-card figure {
  background: #082018;
  border: 2px solid rgba(191, 241, 207, .68);
  box-shadow: 0 0 0 4px rgba(29, 185, 117, .12), 0 10px 24px rgba(0, 0, 0, .2);
}
.alumni-card figure img {
  object-position: center 38%;
  filter: none;
}

/* Coach portraits retain the complete supplied frame instead of being cropped. */
.coach-card figure {
  background: radial-gradient(circle at 50% 42%, #123c31 0, #0d1a15 54%, #09100d 100%);
}
.coach-card figure img,
.coach-card-lead figure img,
.coach-card:hover figure img {
  object-fit: contain;
  object-position: center;
  transform: none;
}
@media (max-width: 760px) {
  .coach-card-lead figure {
    height: 260px;
    min-height: 260px;
  }
}

/* Mobile readability: content copy stays comfortably legible without widening cards. */
@media (max-width: 600px) {
  .eyebrow, .section-label { font-size: 12px; letter-spacing: .11em; }
  .coach-card p, .coach-card-lead p { font-size: 13px; line-height: 1.46; }
  .coach-card small { font-size: 11px; line-height: 1.4; }
}

/* Keep the collapsed schedule visually attached to the preceding coach block. */
@media (max-width: 540px) {
  .groups { padding-bottom: 28px; }
  .grandmaster-schedule:not(.is-open) { padding-top: 24px; padding-bottom: 28px; }
  .grandmaster-schedule:not(.is-open) + .stories { padding-top: 40px; }
  .stories { padding-bottom: 28px; }
  .selection { padding-top: 28px; }
  .next-step-intro { gap: 16px; }
  .next-step { margin-bottom: 32px; }
  .application { padding-top: 42px; }
}

/* Keep primary calls to action green through hover and press states. */
.button-primary:hover, .button-next:hover, .button-submit:hover, .next-step-action .button:hover {
  background: #2ad29b;
  color: #062b20;
}
.button-primary:active, .button-next:active, .button-submit:active, .next-step-action .button:active {
  background: #12b982;
  color: #041c14;
  transform: translateY(0);
  box-shadow: 0 7px 18px rgba(25, 200, 143, .34);
}

/* Desktop: remove the compounded spacing around a collapsed schedule. */
/* Keep student stories as a distinct block without changing the following section. */
.stories {
  background: linear-gradient(135deg, rgba(15, 39, 29, .92), rgba(8, 16, 12, .96));
  border: 1px solid rgba(191, 241, 207, .2);
  border-radius: 28px;
  box-shadow: 0 24px 62px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .025);
}
@media (min-width: 901px) {
  .groups { padding-bottom: 30px; }
  .grandmaster-schedule:not(.is-open) { padding: 32px 44px 36px; }
  .grandmaster-schedule:not(.is-open) + .stories { padding-top: 34px; }
  .stories { padding-top: 44px; padding-bottom: 44px; }
  .selection { padding-top: 44px; }
  .next-step { margin-bottom: 32px; }
  .application { padding-top: 48px; }
  .scholarship-rules li { min-height: 176px; padding: 28px 30px 26px 100px; }
  .scholarship-rules li b { top: 28px; left: 28px; font-size: 13px; }
  .scholarship-rules li strong { font-size: 20px; line-height: 1.2; }
  .scholarship-rules li p { font-size: 16px; line-height: 1.48; }
  .scholarship-rules li:nth-child(5) { grid-column: 1 / -1; }
  .scholarship-rules-note { font-size: 16px; }
}
@media (max-width: 900px) {
  .grandmaster-schedule:not(.is-open) { padding-inline: 24px; }
}

/* The legal footer follows the approved RSH trainers/schedule layout. */
.site-footer.site-footer-rsh {
  display: block;
  margin: 0;
  border: 0;
  border-bottom: 4px solid #e5e5e5;
  padding: 0;
  color: #fff;
  background: #000;
}
.site-footer-rsh .footer-legal {
  box-sizing: border-box;
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 248px 270px 390px 158px;
  align-items: start;
  justify-content: space-between;
  margin: 0 auto;
  border-top: 1px solid rgba(217, 217, 217, .25);
  padding: 40px 0 60px;
  background: #000;
}
.site-footer-rsh .footer-legal > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  color: rgba(255, 255, 255, .8);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
}
.site-footer-rsh .footer-legal b {
  min-height: 0;
  padding-bottom: 16px;
  color: #fff;
  font-size: 16px;
  line-height: 18px;
}
.site-footer-rsh .footer-legal a { color: rgba(255, 255, 255, .8); text-decoration: none; }
.site-footer-rsh .footer-legal a:hover { color: #d2a24e; }
.site-footer-rsh .footer-primary-links { display: flex; justify-content: space-between; }
.site-footer-rsh .footer-primary-links > span { flex: 0 0 52%; display: flex; flex-direction: column; }
.site-footer-rsh .footer-primary-links > span:last-child { flex-basis: 108px; }
.site-footer-rsh .footer-socials {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 24px;
}
.site-footer-rsh .footer-socials a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #111;
  background: #fff;
}
.site-footer-rsh .footer-socials svg { width: 20px; height: 20px; fill: currentColor; }
.site-footer-rsh .footer-socials a:hover { color: #fff; background: #d2a24e; }
.site-footer-rsh .footer-skolkovo { width: 130px; display: block; margin-top: 20px; }
.site-footer-rsh .footer-skolkovo img { width: 130px; height: auto; display: block; }
.site-footer-rsh .footer-payment { text-align: center; }
.site-footer-rsh .payment-marks { display: grid; justify-content: center; gap: 16px; }
.site-footer-rsh .payment-marks > div {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.site-footer-rsh .payment-marks span {
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  font-style: italic;
}
.site-footer-rsh .payment-marks .mir-mark { color: #43ae62; font-style: normal; }
.site-footer-rsh .payment-marks .sberpay-mark {
  border-radius: 13px;
  padding: 1px 8px;
  color: #fff;
  background: #27c937;
  font-size: 12px;
  font-style: normal;
}
.site-footer-rsh .mastercard-mark,
.site-footer-rsh .maestro-mark { position: relative; width: 33px; height: 20px; display: inline-block; }
.site-footer-rsh .mastercard-mark::before,
.site-footer-rsh .mastercard-mark::after,
.site-footer-rsh .maestro-mark::before,
.site-footer-rsh .maestro-mark::after {
  position: absolute;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "";
  opacity: .96;
}
.site-footer-rsh .mastercard-mark::before,
.site-footer-rsh .maestro-mark::before { left: 1px; background: #e33128; }
.site-footer-rsh .mastercard-mark::after { right: 1px; background: #f4a31c; }
.site-footer-rsh .maestro-mark::after { right: 1px; background: #159bd7; }
.site-footer-rsh .footer-supplier { width: 128px; display: block; margin: 2px auto 0; }
.site-footer-rsh .footer-supplier img { width: 128px; height: auto; display: block; }

@media (max-width: 1240px) {
  .site-footer-rsh .footer-legal {
    width: 380px;
    max-width: calc(100% - 40px);
    display: block;
    padding: 40px 0 60px;
  }
  .site-footer-rsh .footer-legal > div {
    width: 100%;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    line-height: 22px;
  }
  .site-footer-rsh .footer-legal > div:first-child { width: 244px; }
  .site-footer-rsh .footer-legal > div:nth-child(2) { width: 235px; margin-top: 24px; }
  .site-footer-rsh .footer-legal > div:nth-child(3) { width: 340px; max-width: 100%; margin-top: 24px; }
  .site-footer-rsh .footer-legal > .footer-payment { width: 156px; margin-top: 24px; }
  .site-footer-rsh .footer-primary-links { width: 100%; }
  .site-footer-rsh .footer-socials,
  .site-footer-rsh .payment-marks { justify-content: center; }
}
