/* ===== 01-settings.css ===== */
/* Локальные шрифты: сайт не зависит от внешней загрузки Google Fonts. */
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 500 900; font-display: swap; src: url("../fonts/manrope-cyrillic.woff2") format("woff2"); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 500 900; font-display: swap; src: url("../fonts/manrope-latin.woff2") format("woff2"); 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: "Oswald"; font-style: normal; font-weight: 600 700; font-display: swap; src: url("../fonts/oswald-cyrillic.woff2") format("woff2"); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: "Oswald"; font-style: normal; font-weight: 600 700; font-display: swap; src: url("../fonts/oswald-latin.woff2") format("woff2"); 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"; font-style: normal; font-weight: 800 900; font-display: swap; src: url("../fonts/unbounded-cyrillic.woff2") format("woff2"); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: "Unbounded"; font-style: normal; font-weight: 800 900; font-display: swap; src: url("../fonts/unbounded-latin.woff2") format("woff2"); 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 {
      --bg: #08090d;
      --ink: #f7f4ec;
      --muted: rgba(247, 244, 236, 0.68);
      --soft: rgba(247, 244, 236, 0.1);
      --line: rgba(247, 244, 236, 0.16);
      --red: #ef2f2d;
      --red-deep: #7d1014;
      --green: #174f43;
      --gold: #d2b15f;
      --paper: #f3eee3;
      --paper-ink: #111318;
      --display: "Oswald", "Arial Narrow", sans-serif;
      --body: "Manrope", system-ui, sans-serif;
      --brand: "Unbounded", system-ui, sans-serif;
    }


/* ===== 02-base.css ===== */
/* Базовые правила страницы: сброс, тело, ссылки, изображения. */
* {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      color: var(--ink);
      background:
        radial-gradient(circle at 78% 0%, rgba(239, 47, 45, 0.22), transparent 26%),
        radial-gradient(circle at 6% 24%, rgba(210, 177, 95, 0.12), transparent 28%),
        linear-gradient(145deg, #050609 0%, #11151c 44%, #07080b 100%);
      font-family: var(--body);
      overflow-x: hidden;
    }

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

    img {
      display: block;
      width: 100%;
    }


/* ===== 03-site.css ===== */
/* Основной дизайн лендинга: сетки, блоки, карточки, модальные окна. */
    :root {
      --offer-hero-size: clamp(52px, 5.2vw, 82px);
      --offer-section-size: clamp(48px, 4.7vw, 72px);
      --offer-compact-size: clamp(42px, 4.1vw, 64px);
      --offer-line-height: 0.94;
    }

    .shell {
      width: min(1240px, calc(100vw - 32px));
      margin: 0 auto;
    }

    body.menu-open {
      overflow: hidden;
    }

    .top {
      position: sticky;
      top: 0;
      z-index: 30;
      border-bottom: 1px solid rgba(247, 244, 236, 0.08);
      background: linear-gradient(180deg, rgba(8, 9, 13, 0.96), rgba(8, 9, 13, 0.76));
      backdrop-filter: blur(18px);
    }

    .top-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 68px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      width: 148px;
      white-space: nowrap;
    }

    .logo img {
      display: block;
      width: 100%;
      height: auto;
    }

    .nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px;
    }

    .nav a {
      border: 1px solid var(--line);
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.05);
      padding: 8px 10px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .nav a:hover {
      border-color: rgba(239, 47, 45, 0.62);
      color: var(--ink);
    }

    .nav a[aria-current="page"] {
      border-color: rgba(239, 47, 45, 0.5);
      color: var(--ink);
      background: rgba(239, 47, 45, 0.1);
    }
    .mobile-nav {
      display: none;
    }

    section {
      padding: 76px 0;
    }

    .hero {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
      gap: 46px;
      align-items: center;
      min-height: calc(100vh - 68px);
      padding-top: 46px;
    }

    .hero-cover {
      display: block;
      width: 100%;
      max-width: none;
      min-height: calc(100vh - 68px);
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(8, 9, 13, 0.94) 0%, rgba(33, 9, 12, 0.82) 25%, rgba(8, 9, 13, 0.18) 58%, rgba(8, 9, 13, 0.05) 100%),
        linear-gradient(180deg, rgba(8, 9, 13, 0.08) 0%, rgba(8, 9, 13, 0.48) 100%),
        url("../images/hero-future-manager-v3.png?v=20260702-01") center right / cover no-repeat;
    }

    .hero-cover::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 180px;
      background: linear-gradient(180deg, transparent, rgba(8, 9, 13, 0.92));
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: min(1240px, calc(100vw - 32px));
      margin: 0 auto;
      padding-top: 34px;
      padding-bottom: 62px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      border-left: 3px solid var(--red);
      padding: 4px 0 4px 12px;
      color: rgba(247, 244, 236, 0.78);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .hero .eyebrow {
      font-size: 15px;
      letter-spacing: 0.12em;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      font-family: var(--display);
      font-weight: 700;
      line-height: 0.92;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    h1 {
      max-width: 620px;
      margin-top: 20px;
      font-size: 92px;
    }

    .hero h1 {
      max-width: 760px;
      font-size: var(--offer-hero-size);
      line-height: var(--offer-line-height);
      overflow-wrap: normal;
      word-break: normal;
    }

    .hero-cover h1 {
      max-width: 780px;
      text-shadow: 0 18px 54px rgba(0, 0, 0, 0.48);
    }

    .hero-cover .lead {
      max-width: 620px;
      text-shadow: 0 12px 36px rgba(0, 0, 0, 0.44);
    }

    .hero-cover .copy {
      max-width: 600px;
      color: rgba(247, 244, 236, 0.78);
      font-size: 19px;
      font-weight: 850;
      line-height: 1.45;
      text-shadow: 0 10px 30px rgba(0, 0, 0, 0.42);
    }

    .hero-mobile-break {
      display: none;
    }

    .hero-desktop-prefix {
      display: inline;
    }

    h2 {
      max-width: 980px;
      font-size: 76px;
    }

    .section-head .program-foundation-title {
      max-width: 1120px;
      font-size: clamp(36px, 3.35vw, 54px);
      line-height: 0.98;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .section-head .program-foundation-title span {
      display: block;
    }

    .audience-offer {
      max-width: 900px;
      font-size: var(--offer-section-size);
      line-height: var(--offer-line-height);
    }

    .responsibility-offer {
      max-width: 1180px;
      font-size: var(--offer-section-size);
      line-height: var(--offer-line-height);
    }

    h3 {
      font-size: 34px;
    }

    p {
      margin: 0;
    }

    .lead {
      max-width: 700px;
      margin-top: 22px;
      color: var(--ink);
      font-size: 26px;
      font-weight: 900;
      line-height: 1.15;
    }

    .copy {
      max-width: 680px;
      margin-top: 18px;
      color: var(--muted);
      font-size: 17px;
      font-weight: 700;
      line-height: 1.68;
    }

    .page-hero {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
      gap: 42px;
      align-items: end;
      min-height: 560px;
      padding-top: 92px;
      border-bottom: 1px solid rgba(247, 244, 236, 0.08);
    }

    .page-hero h1 {
      max-width: 860px;
      font-size: var(--offer-hero-size);
      line-height: var(--offer-line-height);
    }

    .page-hero-panel {
      border: 1px solid rgba(247, 244, 236, 0.16);
      background:
        radial-gradient(circle at 100% 0%, rgba(239, 47, 45, 0.18), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.026));
      padding: 26px;
    }

    .page-hero-panel h3 {
      font-size: 34px;
    }

    .page-hero-panel p {
      margin-top: 12px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 800;
      line-height: 1.55;
    }

    .page-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 28px;
    }

    .page-card {
      min-height: 250px;
      border: 1px solid rgba(247, 244, 236, 0.14);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
      padding: 24px;
    }

    .page-card h3 {
      margin-top: 16px;
      font-size: 31px;
    }

    .page-card p,
    .page-card li {
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      line-height: 1.55;
    }

    .page-card p {
      margin-top: 12px;
    }

    .page-card ul {
      margin: 14px 0 0;
      padding-left: 18px;
    }

    .admin-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
      gap: 18px;
      align-items: start;
      margin-top: 28px;
    }

    .admin-editor {
      display: grid;
      gap: 12px;
    }

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

    .admin-field label {
      color: var(--red);
      font-size: 11px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .admin-field textarea,
    .admin-field input {
      width: 100%;
      border: 1px solid rgba(247, 244, 236, 0.16);
      background: rgba(255, 255, 255, 0.045);
      padding: 13px 14px;
      color: var(--ink);
      font: inherit;
      font-size: 14px;
      font-weight: 800;
      line-height: 1.45;
      resize: vertical;
    }

    .admin-output {
      min-height: 360px;
      white-space: pre-wrap;
      border: 1px solid rgba(247, 244, 236, 0.14);
      background: rgba(255, 255, 255, 0.035);
      padding: 18px;
      color: rgba(247, 244, 236, 0.74);
      font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
      font-size: 12px;
      line-height: 1.5;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      cursor: pointer;
      border-radius: 4px;
      padding: 13px 18px;
      font-family: var(--body);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .button.primary {
      border: 1px solid var(--red);
      background: var(--red);
      color: white;
      box-shadow: 0 18px 50px rgba(239, 47, 45, 0.22);
    }

    .button.secondary {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.05);
      color: var(--ink);
    }

    .hero-media,
    .banner-frame {
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 0;
      background: rgba(255, 255, 255, 0.04);
      box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
    }

    .hero-media img,
    .banner-frame img {
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 12px;
    }

    .hero-point {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.06);
      padding: 14px;
    }

    .hero-point b {
      display: block;
      color: var(--red);
      font-family: var(--display);
      font-size: 34px;
      line-height: 1;
    }

    .hero-point span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.5fr);
      gap: 34px;
      align-items: end;
      margin-bottom: 28px;
    }

    .section-head .copy {
      margin-top: 0;
    }

    #audience .section-head .copy {
      border-left: 1px solid rgba(247, 244, 236, 0.18);
      padding-left: clamp(24px, 3vw, 48px);
    }

    #why .section-head .copy {
      border-left: 1px solid rgba(17, 19, 24, 0.16);
      padding-left: clamp(24px, 3vw, 48px);
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .panel {
      min-height: 220px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.06);
      padding: 22px;
    }

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

    .panel.red {
      border-color: rgba(239, 47, 45, 0.38);
      background: linear-gradient(145deg, rgba(239, 47, 45, 0.92), rgba(125, 16, 20, 0.92));
    }

    .panel .num {
      display: block;
      margin-bottom: 16px;
      color: var(--red);
      font-family: var(--display);
      font-size: 44px;
      font-weight: 700;
      line-height: 1;
    }

    .panel.red .num,
    .panel.red p {
      color: rgba(255, 255, 255, 0.8);
    }

    .panel h3 {
      font-size: 31px;
    }

    .panel p,
    .panel li {
      margin-top: 14px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.55;
    }

    .panel.light p,
    .panel.light li {
      color: rgba(17, 19, 24, 0.72);
    }

    .panel ul {
      margin: 14px 0 0;
      padding-left: 18px;
    }

    .statement {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 46px 0;
    }

    .statement p {
      max-width: 1040px;
      color: var(--ink);
      font-size: 36px;
      font-weight: 900;
      line-height: 1.12;
    }

    .contrast {
      background:
        radial-gradient(circle at 16% 20%, rgba(23, 79, 67, 0.22), transparent 24%),
        linear-gradient(145deg, #f2ede2, #dcd5c8);
      color: var(--paper-ink);
    }

    .contrast .eyebrow {
      color: rgba(17, 19, 24, 0.66);
    }

    .contrast .copy,
    .contrast .panel p,
    .contrast .panel li {
      color: rgba(17, 19, 24, 0.72);
    }

    .contrast .panel {
      border-color: rgba(17, 19, 24, 0.14);
      background: rgba(255, 255, 255, 0.48);
    }

    .program {
      display: grid;
      gap: 54px;
    }

    .module {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
      gap: 24px;
      align-items: center;
      scroll-margin-top: 92px;
    }

    .module:nth-child(even) {
      grid-template-columns: minmax(340px, 0.72fr) minmax(0, 0.98fr);
    }

    .module:nth-child(even) .module-copy {
      order: -1;
    }

    .module-visual {
      display: grid;
      min-width: 0;
      gap: 13px;
    }

    .module-chapter {
      display: flex;
      align-items: center;
      gap: 14px;
      min-height: 18px;
      color: var(--red);
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .module-chapter::after {
      content: "";
      width: clamp(50px, 7vw, 110px);
      height: 1px;
      background: linear-gradient(90deg, var(--red), rgba(245, 50, 47, 0));
    }

    .program .module-copy {
      align-self: start;
      margin-top: 31px;
    }

    .module.module-foundation {
      position: relative;
      grid-template-columns: minmax(320px, 0.74fr) minmax(420px, 1fr);
      gap: clamp(28px, 4vw, 62px);
      align-items: center;
      margin-bottom: clamp(52px, 6vw, 92px);
      padding: clamp(24px, 3.4vw, 48px);
      border: 1px solid rgba(255, 255, 255, 0.14);
      background:
        radial-gradient(circle at 76% 18%, rgba(245, 50, 47, 0.14), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012) 58%, rgba(245, 50, 47, 0.08));
      box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
    }

    .module.module-foundation::after {
      content: none;
      display: none;
    }

    .module:not(.module-foundation) + .module:not(.module-foundation)::before {
      content: "";
      position: absolute;
      top: -27px;
      left: 50%;
      width: min(300px, 28vw);
      height: 1px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, transparent, rgba(247, 244, 236, 0.74), transparent);
    }

    .module.module-foundation:nth-child(even) {
      grid-template-columns: minmax(320px, 0.74fr) minmax(420px, 1fr);
    }

    .module.module-foundation .banner-frame {
      width: 100%;
      max-width: 760px;
      margin: 0 0 0 auto;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
    }

    .module.module-foundation .module-copy {
      order: -1;
      max-width: 720px;
      border-left: 0;
      padding-left: 0;
    }

    .module.module-foundation .module-copy h3 {
      max-width: 620px;
    }

    .module.module-foundation p {
      max-width: 610px;
    }

    .module.module-foundation ul {
      max-width: 620px;
    }

    .module-copy {
      border-left: 3px solid var(--red);
      padding-left: 24px;
    }

    .module-kicker {
      color: var(--red);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .module h3 {
      margin-top: 12px;
      font-size: 52px;
    }

    .module p {
      max-width: 560px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 17px;
      font-weight: 700;
      line-height: 1.62;
    }

    .module ul {
      display: grid;
      gap: 9px;
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
    }

    .module li {
      border-top: 1px solid rgba(247, 244, 236, 0.12);
      padding-top: 9px;
      color: rgba(247, 244, 236, 0.78);
      font-size: 14px;
      font-weight: 800;
      line-height: 1.42;
    }

    .format-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .curriculum {
      margin-top: 56px;
      padding-top: 38px;
      border-top: 1px solid var(--line);
    }

    .curriculum-head {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 18px;
    }

    .curriculum-head h3 {
      max-width: 920px;
      margin-top: 12px;
      font-size: clamp(44px, 4.7vw, 54px);
    }

    .curriculum-head p {
      color: var(--muted);
      font-size: 16px;
      font-weight: 800;
      line-height: 1.6;
    }

    .program-overview {
      display: grid;
      gap: 18px;
      margin-bottom: 26px;
    }

    .program-page-hero {
      display: block;
      padding-top: 42px;
    }

    .program-video-preview {
      position: relative;
      display: grid;
      align-items: stretch;
      min-height: min(680px, calc(100vh - 104px));
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border: 1px solid rgba(247, 244, 236, 0.13);
      background:
        radial-gradient(circle at 78% 12%, rgba(239, 47, 45, 0.24), transparent 36%),
        linear-gradient(135deg, rgba(8, 9, 13, 0.98), rgba(66, 12, 17, 0.92));
      box-shadow: 0 32px 110px rgba(0, 0, 0, 0.42);
    }

    .program-video-preview::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(8, 9, 13, 0.88) 0%, rgba(8, 9, 13, 0.64) 37%, rgba(8, 9, 13, 0.08) 68%, rgba(8, 9, 13, 0.12) 100%),
        linear-gradient(180deg, rgba(8, 9, 13, 0.1), rgba(8, 9, 13, 0.68) 100%);
    }

    .program-video-preview::after {
      content: "";
      position: absolute;
      inset: 18px;
      z-index: 3;
      border: 1px solid rgba(247, 244, 236, 0.12);
      pointer-events: none;
    }

    .program-video-copy {
      position: relative;
      z-index: 4;
      display: grid;
      align-content: center;
      max-width: 720px;
      padding: 72px 58px 104px;
    }

    .program-video-image {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .program-video-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: contrast(1.04) saturate(0.9);
    }

    .program-page-hero h1 {
      max-width: 980px;
      margin: 0;
      font-family: var(--display);
      font-size: var(--offer-hero-size);
      font-weight: 700;
      line-height: var(--offer-line-height);
      text-transform: uppercase;
    }

    .program-page-hero .lead {
      max-width: 760px;
      margin-top: 18px;
    }

    .program-video-controls {
      position: absolute;
      right: 38px;
      bottom: 30px;
      left: 38px;
      z-index: 5;
      display: grid;
      grid-template-columns: 46px minmax(0, 1fr) auto;
      gap: 14px;
      align-items: center;
      min-height: 46px;
      padding: 10px 14px;
      border: 1px solid rgba(247, 244, 236, 0.14);
      background: rgba(8, 9, 13, 0.56);
      backdrop-filter: blur(14px);
    }

    .program-play {
      display: grid;
      width: 34px;
      height: 34px;
      place-items: center;
      border-radius: 50%;
      background: var(--red);
      color: var(--ink);
      font-size: 13px;
      line-height: 1;
      box-shadow: 0 0 30px rgba(239, 47, 45, 0.48);
    }

    .program-progress {
      position: relative;
      display: block;
      height: 3px;
      overflow: hidden;
      background: rgba(247, 244, 236, 0.18);
    }

    .program-progress i {
      display: block;
      width: 34%;
      height: 100%;
      background: linear-gradient(90deg, var(--red), rgba(247, 244, 236, 0.82));
    }

    .program-time {
      color: rgba(247, 244, 236, 0.68);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .program-page-map {
      padding-top: 42px;
      padding-bottom: 28px;
      perspective: 1400px;
    }

    .program-page-map .program-hero-map {
      max-width: 900px;
      margin: 0 auto;
    }

    .program-page-note,
    .program-entry-card {
      border: 1px solid var(--line);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    }

    .program-hero-map {
      position: relative;
      align-self: center;
      overflow: hidden;
      border: 1px solid rgba(247, 244, 236, 0.12);
      background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.018) 34%, rgba(255, 255, 255, 0.055)),
        radial-gradient(circle at 78% 18%, rgba(255, 169, 42, 0.22), transparent 38%),
        radial-gradient(circle at 16% 96%, rgba(239, 47, 45, 0.18), transparent 42%),
        linear-gradient(145deg, rgba(12, 13, 17, 0.94), rgba(59, 14, 18, 0.8));
      padding: 28px;
      box-shadow:
        0 34px 120px rgba(0, 0, 0, 0.42),
        inset 0 0 0 1px rgba(255, 255, 255, 0.055),
        inset 0 28px 70px rgba(255, 255, 255, 0.035);
      transform-style: preserve-3d;
    }

    .program-hero-map::before,
    .program-hero-map::after {
      content: "";
      position: absolute;
      pointer-events: none;
    }

    .program-hero-map::before {
      inset: 0 auto 0 64%;
      width: 1px;
      background: linear-gradient(180deg, transparent, rgba(247, 244, 236, 0.34), transparent);
      box-shadow:
        -360px 0 0 rgba(247, 244, 236, 0.045),
        0 0 42px rgba(247, 244, 236, 0.18),
        96px 0 0 rgba(247, 244, 236, 0.035);
      opacity: 0.7;
    }

    .program-hero-map::after {
      right: 24px;
      bottom: -18px;
      left: 24px;
      height: 58px;
      background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 166, 24, 0.35), transparent 64%),
        linear-gradient(90deg, transparent, rgba(255, 166, 24, 0.3), transparent);
      filter: blur(2px);
      opacity: 0.8;
    }

    .map-steps {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 16px;
      list-style: none;
      border: 1px solid rgba(247, 244, 236, 0.12);
      background:
        linear-gradient(100deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
        rgba(6, 7, 10, 0.38);
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.035),
        inset 0 0 70px rgba(255, 255, 255, 0.028);
      backdrop-filter: blur(16px);
    }

    .map-steps::before {
      content: "";
      position: absolute;
      top: 42px;
      bottom: 42px;
      left: 57px;
      width: 1px;
      background: linear-gradient(180deg, rgba(239, 47, 45, 0.52), rgba(247, 244, 236, 0.14), rgba(72, 210, 140, 0.34));
      box-shadow: 0 0 20px rgba(239, 47, 45, 0.26);
    }

    .map-steps li {
      position: relative;
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      column-gap: 18px;
      align-items: start;
      min-height: 112px;
      border: 1px solid rgba(247, 244, 236, 0.16);
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.016)),
        rgba(8, 9, 13, 0.34);
      padding: 18px 22px;
      box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
    }

    .map-steps li::after {
      content: "";
      position: absolute;
      inset: -1px;
      border: 1px solid transparent;
      pointer-events: none;
    }

    .map-steps li:nth-child(2),
    .map-steps li.map-school {
      grid-template-columns: 58px minmax(0, 1fr);
      min-height: 196px;
      border-color: rgba(255, 176, 50, 0.36);
      background:
        radial-gradient(circle at 86% 40%, rgba(255, 166, 24, 0.22), transparent 36%),
        linear-gradient(135deg, rgba(210, 168, 85, 0.22), rgba(239, 47, 45, 0.08)),
        rgba(8, 9, 13, 0.34);
      padding: 24px;
      box-shadow:
        0 20px 60px rgba(255, 122, 24, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 0 52px rgba(255, 166, 24, 0.055);
    }

    .map-steps li:nth-child(3) {
      border-color: rgba(72, 210, 140, 0.22);
      background:
        linear-gradient(135deg, rgba(72, 210, 140, 0.11), rgba(255, 255, 255, 0.02)),
        rgba(8, 9, 13, 0.34);
    }

    .map-steps li span {
      position: relative;
      z-index: 1;
      display: grid;
      width: 52px;
      height: 52px;
      place-items: center;
      border: 1px solid rgba(239, 47, 45, 0.36);
      background:
        linear-gradient(145deg, rgba(239, 47, 45, 0.16), rgba(239, 47, 45, 0.045));
      color: var(--red);
      font-family: var(--display);
      font-size: 24px;
      line-height: 1;
      box-shadow:
        0 0 24px rgba(239, 47, 45, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
    }

    .map-steps li.map-school span {
      width: 58px;
      height: 58px;
      font-size: 28px;
    }

    .map-steps li strong,
    .map-steps li p {
      grid-column: 2;
    }

    .map-steps li strong {
      color: var(--ink);
      font-family: var(--display);
      font-size: 30px;
      font-weight: 700;
      line-height: 0.98;
      text-transform: uppercase;
    }

    .map-steps li.map-school strong {
      max-width: 520px;
      font-size: 42px;
    }

    .map-steps li p {
      max-width: 650px;
      margin-top: 12px;
      color: var(--muted);
      font-size: 17px;
      font-weight: 850;
      line-height: 1.42;
    }

    .map-steps li.map-school p {
      max-width: 560px;
      font-size: 18px;
    }

    .program-volume-map {
      max-width: 980px;
      overflow: visible;
      padding: 34px 42px 46px;
      border-color: rgba(247, 244, 236, 0.16);
      background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.015) 36%, rgba(255, 255, 255, 0.055)),
        radial-gradient(circle at 82% 12%, rgba(255, 164, 24, 0.24), transparent 34%),
        radial-gradient(circle at 14% 96%, rgba(239, 47, 45, 0.18), transparent 42%),
        linear-gradient(145deg, rgba(8, 9, 13, 0.96), rgba(62, 14, 18, 0.82));
    }

    .program-volume-map::before {
      inset: 18px 28px 18px auto;
      width: 34%;
      border-left: 1px solid rgba(247, 244, 236, 0.12);
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
        repeating-linear-gradient(180deg, rgba(247, 244, 236, 0.07) 0 1px, transparent 1px 58px);
      transform: skewY(-4deg);
      transform-origin: right center;
      opacity: 0.55;
    }

    .program-volume-map::after {
      right: 46px;
      bottom: -24px;
      left: 46px;
      height: 82px;
      background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 164, 24, 0.38), transparent 64%),
        linear-gradient(90deg, transparent, rgba(255, 164, 24, 0.28), transparent);
      filter: blur(3px);
      opacity: 0.78;
    }

    .school-volume {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 20px;
      padding: 18px;
      border: 1px solid rgba(247, 244, 236, 0.1);
      background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
        rgba(5, 6, 9, 0.36);
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.035),
        inset 0 0 90px rgba(255, 255, 255, 0.025),
        0 26px 70px rgba(0, 0, 0, 0.28);
      backdrop-filter: blur(16px);
    }

    .school-volume::before {
      content: "";
      position: absolute;
      top: 48px;
      bottom: 48px;
      left: 58px;
      width: 1px;
      background: linear-gradient(180deg, rgba(239, 47, 45, 0.62), rgba(255, 170, 30, 0.5), rgba(72, 210, 140, 0.42));
      box-shadow: 0 0 24px rgba(255, 145, 24, 0.26);
      pointer-events: none;
    }

    .school-volume::after {
      content: "";
      position: absolute;
      right: 22px;
      bottom: -18px;
      left: 86px;
      height: 18px;
      border: 1px solid rgba(255, 166, 24, 0.15);
      border-top: 0;
      background: linear-gradient(90deg, rgba(255, 166, 24, 0.08), rgba(255, 166, 24, 0.22), rgba(239, 47, 45, 0.08));
      transform: skewX(-42deg);
      transform-origin: top left;
      filter: blur(0.2px);
      pointer-events: none;
    }

    .volume-node,
    .volume-school {
      position: relative;
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr);
      column-gap: 22px;
      align-items: center;
      min-height: 118px;
      border: 1px solid rgba(247, 244, 236, 0.16);
      background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.016)),
        rgba(10, 11, 15, 0.38);
      padding: 20px 26px;
      box-shadow:
        0 16px 46px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.075);
      backdrop-filter: blur(12px);
    }

    .volume-node {
      margin: 0 38px;
    }

    .volume-node::after,
    .volume-school::after {
      content: "";
      position: absolute;
      inset: 10px;
      border: 1px solid rgba(247, 244, 236, 0.06);
      pointer-events: none;
    }

    .volume-node-in {
      background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.014)),
        rgba(28, 20, 20, 0.38);
    }

    .volume-node-out {
      border-color: rgba(72, 210, 140, 0.24);
      background:
        linear-gradient(118deg, rgba(72, 210, 140, 0.1), rgba(255, 255, 255, 0.014)),
        rgba(10, 14, 13, 0.42);
    }

    .volume-school {
      min-height: 266px;
      align-items: stretch;
      grid-template-columns: 1fr;
      border-color: rgba(255, 176, 50, 0.38);
      background:
        radial-gradient(circle at 82% 34%, rgba(255, 166, 24, 0.22), transparent 35%),
        linear-gradient(135deg, rgba(210, 168, 85, 0.22), rgba(239, 47, 45, 0.08)),
        rgba(10, 11, 15, 0.44);
      padding: 28px 30px 30px;
      box-shadow:
        26px 28px 0 rgba(255, 166, 24, 0.06),
        0 26px 74px rgba(255, 124, 24, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        inset 0 0 72px rgba(255, 166, 24, 0.07);
      transform-style: preserve-3d;
    }

    .volume-school::before {
      content: "";
      position: absolute;
      top: 22px;
      right: -28px;
      bottom: -26px;
      width: 28px;
      border: 1px solid rgba(255, 166, 24, 0.16);
      border-left: 0;
      background:
        linear-gradient(180deg, rgba(255, 166, 24, 0.16), rgba(239, 47, 45, 0.08)),
        rgba(9, 10, 13, 0.5);
      transform: skewY(42deg);
      transform-origin: left top;
      pointer-events: none;
    }

    .school-top {
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr);
      column-gap: 22px;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .volume-number {
      display: grid;
      width: 58px;
      height: 58px;
      place-items: center;
      border: 1px solid rgba(239, 47, 45, 0.46);
      background:
        linear-gradient(145deg, rgba(239, 47, 45, 0.18), rgba(239, 47, 45, 0.055));
      color: var(--red);
      font-family: var(--display);
      font-size: 27px;
      line-height: 1;
      box-shadow:
        0 0 26px rgba(239, 47, 45, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
    }

    .volume-node strong,
    .volume-school strong {
      display: block;
      color: var(--ink);
      font-family: var(--display);
      font-weight: 700;
      line-height: 0.98;
      text-transform: uppercase;
    }

    .volume-node strong {
      font-size: 34px;
    }

    .volume-school strong {
      max-width: 610px;
      font-size: 48px;
    }

    .volume-node p,
    .volume-school p {
      max-width: 680px;
      margin-top: 12px;
      color: var(--muted);
      font-size: 17px;
      font-weight: 850;
      line-height: 1.42;
    }

    .school-regalia {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
      margin-left: 86px;
    }

    .school-regalia span {
      border: 1px solid rgba(247, 244, 236, 0.18);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
        rgba(7, 8, 10, 0.24);
      color: rgba(247, 244, 236, 0.78);
      padding: 9px 13px;
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .school-tools {
      position: relative;
      z-index: 1;
      margin-left: 86px;
    }

    .program-page-map .program-building-map {
      max-width: 1120px;
    }

    .program-building-map {
      overflow: visible;
      padding: 42px 56px 66px;
      border-color: rgba(247, 244, 236, 0.15);
      background:
        radial-gradient(circle at 82% 18%, rgba(255, 166, 24, 0.2), transparent 34%),
        radial-gradient(circle at 16% 92%, rgba(239, 47, 45, 0.18), transparent 42%),
        linear-gradient(145deg, rgba(8, 9, 13, 0.97), rgba(51, 12, 17, 0.86));
    }

    .program-building-map::before {
      inset: 24px;
      width: auto;
      border: 1px solid rgba(247, 244, 236, 0.08);
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent 38%, rgba(255, 255, 255, 0.028)),
        repeating-linear-gradient(90deg, rgba(255, 166, 24, 0.07) 0 1px, transparent 1px 78px),
        repeating-linear-gradient(180deg, rgba(247, 244, 236, 0.055) 0 1px, transparent 1px 72px);
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.025),
        inset 0 0 110px rgba(255, 255, 255, 0.028);
      opacity: 0.72;
      transform: none;
    }

    .program-building-map::after {
      right: 72px;
      bottom: -28px;
      left: 72px;
      height: 100px;
      background:
        radial-gradient(ellipse at 50% 42%, rgba(255, 166, 24, 0.34), transparent 62%),
        linear-gradient(90deg, transparent, rgba(255, 166, 24, 0.28), transparent);
      filter: blur(4px);
      opacity: 0.86;
    }

    .school-building {
      position: relative;
      z-index: 1;
      min-height: 720px;
      perspective: 1400px;
    }

    .school-building::before {
      content: "";
      position: absolute;
      inset: 40px 0 0;
      background:
        linear-gradient(90deg, transparent 0 49%, rgba(255, 166, 24, 0.12) 49% 50%, transparent 50%),
        linear-gradient(180deg, transparent 0 48%, rgba(247, 244, 236, 0.1) 48% 49%, transparent 49%);
      opacity: 0.56;
      pointer-events: none;
    }

    .school-building::after {
      content: "";
      position: absolute;
      right: 9%;
      bottom: 24px;
      left: 5%;
      height: 80px;
      border: 1px solid rgba(255, 166, 24, 0.16);
      background:
        linear-gradient(90deg, rgba(255, 166, 24, 0.08), rgba(255, 166, 24, 0.24), rgba(239, 47, 45, 0.08)),
        rgba(8, 9, 13, 0.38);
      transform: skewX(-28deg);
      box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
      pointer-events: none;
    }

    .building-frame {
      position: absolute;
      top: 88px;
      right: 8%;
      left: 6%;
      min-height: 570px;
      border: 1px solid rgba(247, 244, 236, 0.2);
      background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.016) 40%, rgba(255, 255, 255, 0.055)),
        repeating-linear-gradient(90deg, transparent 0 92px, rgba(247, 244, 236, 0.09) 92px 93px),
        repeating-linear-gradient(180deg, transparent 0 112px, rgba(247, 244, 236, 0.08) 112px 113px),
        rgba(7, 8, 11, 0.42);
      box-shadow:
        36px 34px 0 rgba(255, 166, 24, 0.06),
        72px 56px 0 rgba(255, 255, 255, 0.025),
        0 34px 110px rgba(0, 0, 0, 0.42),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 0 96px rgba(255, 255, 255, 0.028);
      transform: none;
      transform-style: preserve-3d;
    }

    .building-frame::before {
      content: "";
      position: absolute;
      top: 30px;
      right: -74px;
      bottom: -34px;
      width: 74px;
      border: 1px solid rgba(247, 244, 236, 0.14);
      border-left: 0;
      background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.055), rgba(255, 166, 24, 0.085)),
        repeating-linear-gradient(180deg, rgba(247, 244, 236, 0.08) 0 1px, transparent 1px 88px),
        rgba(7, 8, 11, 0.44);
      transform: skewY(32deg);
      transform-origin: left top;
      box-shadow: inset 0 0 54px rgba(255, 255, 255, 0.03);
      pointer-events: none;
    }

    .building-frame::after {
      content: "";
      position: absolute;
      right: -16px;
      bottom: -48px;
      left: 64px;
      height: 48px;
      border: 1px solid rgba(255, 166, 24, 0.16);
      border-top: 0;
      background:
        linear-gradient(90deg, rgba(255, 166, 24, 0.12), rgba(255, 166, 24, 0.28), rgba(239, 47, 45, 0.1)),
        rgba(10, 11, 13, 0.42);
      transform: skewX(-36deg);
      transform-origin: top left;
      pointer-events: none;
    }

    .building-roof {
      position: absolute;
      top: -58px;
      right: 4%;
      left: 10%;
      height: 88px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(247, 244, 236, 0.18);
      background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
        rgba(8, 9, 13, 0.45);
      clip-path: polygon(7% 0, 100% 0, 92% 100%, 0 100%);
      box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .building-roof span {
      color: rgba(247, 244, 236, 0.76);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .building-sign {
      position: absolute;
      top: 72px;
      right: 9%;
      left: 12%;
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr);
      column-gap: 20px;
      align-items: start;
      border: 1px solid rgba(255, 166, 24, 0.32);
      background:
        radial-gradient(circle at 88% 24%, rgba(255, 166, 24, 0.24), transparent 38%),
        linear-gradient(135deg, rgba(210, 168, 85, 0.22), rgba(239, 47, 45, 0.08)),
        rgba(8, 9, 13, 0.44);
      padding: 22px;
      box-shadow:
        0 20px 64px rgba(255, 124, 24, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
    }

    .building-sign span,
    .building-entrance span,
    .building-exit span {
      display: grid;
      width: 52px;
      height: 52px;
      place-items: center;
      border: 1px solid rgba(239, 47, 45, 0.46);
      background: linear-gradient(145deg, rgba(239, 47, 45, 0.18), rgba(239, 47, 45, 0.055));
      color: var(--red);
      font-family: var(--display);
      font-size: 24px;
      line-height: 1;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
    }

    .building-sign strong,
    .building-entrance strong,
    .building-exit strong {
      color: var(--ink);
      font-family: var(--display);
      font-weight: 700;
      line-height: 0.98;
      text-transform: uppercase;
    }

    .building-sign strong {
      max-width: 590px;
      font-size: 42px;
    }

    .building-sign p,
    .building-entrance p,
    .building-exit p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 16px;
      font-weight: 850;
      line-height: 1.42;
    }

    .building-regalia {
      position: absolute;
      top: 278px;
      right: 10%;
      left: 14%;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .building-regalia span,
    .building-tools span {
      border: 1px solid rgba(247, 244, 236, 0.18);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
        rgba(7, 8, 10, 0.26);
      color: rgba(247, 244, 236, 0.8);
      padding: 10px 12px;
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.06em;
      text-align: center;
      text-transform: uppercase;
      box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .building-tools {
      position: absolute;
      right: 15%;
      bottom: 154px;
      left: 18%;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .building-tools span {
      padding: 8px 10px;
      font-size: 11px;
      color: rgba(247, 244, 236, 0.72);
    }

    .building-entrance,
    .building-exit {
      position: absolute;
      display: grid;
      grid-template-columns: 52px minmax(0, 1fr);
      column-gap: 16px;
      align-items: start;
      border: 1px solid rgba(247, 244, 236, 0.15);
      background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.016)),
        rgba(8, 9, 13, 0.5);
      padding: 18px;
      box-shadow:
        0 16px 42px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .building-entrance {
      bottom: 34px;
      left: 32px;
      width: 360px;
    }

    .building-exit {
      right: 32px;
      bottom: 34px;
      width: 430px;
      border-color: rgba(72, 210, 140, 0.26);
      background:
        linear-gradient(125deg, rgba(72, 210, 140, 0.1), rgba(255, 255, 255, 0.018)),
        rgba(8, 12, 11, 0.52);
    }

    .program-page-map .program-layer-school {
      max-width: 1160px;
      margin: 0 auto;
    }

    .program-layer-school {
      position: relative;
      overflow: hidden;
      padding: 42px 48px 58px;
      border: 1px solid rgba(247, 244, 236, 0.13);
      background:
        radial-gradient(circle at 82% 14%, rgba(255, 166, 24, 0.17), transparent 36%),
        radial-gradient(circle at 12% 92%, rgba(239, 47, 45, 0.16), transparent 44%),
        linear-gradient(145deg, rgba(8, 9, 13, 0.97), rgba(48, 12, 17, 0.84));
      box-shadow:
        0 34px 120px rgba(0, 0, 0, 0.42),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    .program-layer-school::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(247, 244, 236, 0.07);
      background:
        repeating-linear-gradient(90deg, rgba(255, 166, 24, 0.06) 0 1px, transparent 1px 78px),
        repeating-linear-gradient(180deg, rgba(247, 244, 236, 0.045) 0 1px, transparent 1px 74px);
      opacity: 0.68;
      pointer-events: none;
    }

    .program-layer-school::after {
      content: "";
      position: absolute;
      right: 70px;
      bottom: -34px;
      left: 70px;
      height: 110px;
      background:
        radial-gradient(ellipse at 50% 42%, rgba(255, 166, 24, 0.35), transparent 62%),
        linear-gradient(90deg, transparent, rgba(255, 166, 24, 0.28), transparent);
      filter: blur(5px);
      opacity: 0.86;
      pointer-events: none;
    }

    .layer-school-head {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 22px;
      border-bottom: 1px solid rgba(247, 244, 236, 0.12);
      padding-bottom: 18px;
    }

    .layer-school-head span {
      color: var(--red);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .layer-school-head strong {
      color: var(--ink);
      font-family: var(--display);
      font-size: clamp(36px, 5vw, 68px);
      font-weight: 700;
      line-height: 0.92;
      text-align: right;
      text-transform: uppercase;
    }

    .exploded-school {
      position: relative;
      z-index: 2;
      min-height: 940px;
      margin-top: 34px;
      perspective: 1500px;
    }

    .exploded-school::before {
      content: "";
      position: absolute;
      top: 42px;
      bottom: 62px;
      left: 50%;
      width: 1px;
      background: linear-gradient(180deg, rgba(239, 47, 45, 0.42), rgba(255, 166, 24, 0.42), rgba(72, 210, 140, 0.26));
      box-shadow: 0 0 28px rgba(255, 166, 24, 0.22);
      opacity: 0.72;
      pointer-events: none;
    }

    .exploded-school::after {
      content: "";
      position: absolute;
      right: 8%;
      bottom: 28px;
      left: 11%;
      height: 86px;
      border: 1px solid rgba(255, 166, 24, 0.18);
      background:
        linear-gradient(90deg, rgba(255, 166, 24, 0.1), rgba(255, 166, 24, 0.26), rgba(239, 47, 45, 0.08)),
        rgba(8, 9, 13, 0.38);
      transform: skewX(-28deg);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
      pointer-events: none;
    }

    .school-layer {
      position: absolute;
      left: calc(50% + var(--shift, 0px));
      width: var(--w, 760px);
      min-height: 132px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 245px;
      gap: 22px;
      align-items: center;
      padding: 22px 26px;
      border: 1px solid rgba(247, 244, 236, 0.19);
      background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.018) 42%, rgba(255, 255, 255, 0.055)),
        rgba(8, 9, 13, 0.42);
      box-shadow:
        30px 30px 0 rgba(255, 166, 24, 0.035),
        0 22px 70px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
      transform: translateX(-50%);
      backdrop-filter: blur(12px);
    }

    .school-layer::before {
      content: "";
      position: absolute;
      right: 18px;
      bottom: -26px;
      left: 48px;
      height: 26px;
      border: 1px solid rgba(255, 166, 24, 0.14);
      border-top: 0;
      background:
        linear-gradient(90deg, rgba(255, 166, 24, 0.08), rgba(255, 166, 24, 0.22), rgba(239, 47, 45, 0.07)),
        rgba(8, 9, 13, 0.44);
      transform: skewX(-34deg);
      transform-origin: top left;
      pointer-events: none;
    }

    .school-layer::after {
      content: "";
      position: absolute;
      top: 18px;
      right: -34px;
      bottom: -24px;
      width: 34px;
      border: 1px solid rgba(247, 244, 236, 0.12);
      border-left: 0;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 166, 24, 0.09)),
        rgba(8, 9, 13, 0.44);
      transform: skewY(34deg);
      transform-origin: left top;
      pointer-events: none;
    }

    .layer-ideology {
      --w: 660px;
      --shift: -26px;
      top: 38px;
      border-color: rgba(255, 166, 24, 0.2);
    }

    .layer-culture {
      --w: 780px;
      --shift: 18px;
      top: 206px;
      border-color: rgba(255, 166, 24, 0.28);
      background:
        radial-gradient(circle at 82% 24%, rgba(255, 166, 24, 0.16), transparent 40%),
        linear-gradient(115deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.018)),
        rgba(8, 9, 13, 0.42);
    }

    .layer-system {
      --w: 860px;
      --shift: -18px;
      top: 374px;
      border-color: rgba(247, 244, 236, 0.22);
    }

    .layer-personality {
      --w: 800px;
      --shift: 34px;
      top: 542px;
      border-color: rgba(72, 210, 140, 0.22);
    }

    .layer-professional {
      --w: 900px;
      --shift: -12px;
      top: 710px;
      border-color: rgba(239, 47, 45, 0.24);
    }

    .layer-copy span {
      display: inline-grid;
      width: 42px;
      height: 42px;
      margin-bottom: 12px;
      place-items: center;
      border: 1px solid rgba(239, 47, 45, 0.46);
      color: var(--red);
      font-family: var(--display);
      font-size: 20px;
      line-height: 1;
    }

    .layer-copy strong {
      display: block;
      color: var(--ink);
      font-family: var(--display);
      font-size: 31px;
      font-weight: 700;
      line-height: 0.96;
      text-transform: uppercase;
    }

    .layer-copy p {
      max-width: 520px;
      margin-top: 10px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 850;
      line-height: 1.42;
    }

    .layer-scene {
      position: relative;
      min-height: 108px;
      border: 1px solid rgba(247, 244, 236, 0.12);
      background:
        repeating-linear-gradient(90deg, transparent 0 30px, rgba(247, 244, 236, 0.05) 30px 31px),
        repeating-linear-gradient(180deg, transparent 0 28px, rgba(247, 244, 236, 0.045) 28px 29px),
        rgba(6, 7, 9, 0.28);
      overflow: hidden;
    }

    .layer-scene::before,
    .layer-scene::after {
      content: "";
      position: absolute;
      pointer-events: none;
    }

    .ideology-scene::before {
      width: 62px;
      height: 62px;
      top: 22px;
      left: 34px;
      border: 1px solid rgba(255, 166, 24, 0.42);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 166, 24, 0.26), transparent 64%);
      box-shadow: 0 0 34px rgba(255, 166, 24, 0.18);
    }

    .ideology-scene::after {
      width: 118px;
      height: 1px;
      right: 22px;
      top: 52px;
      background: linear-gradient(90deg, rgba(255, 166, 24, 0.65), transparent);
      transform: rotate(-18deg);
    }

    .ideology-scene i {
      position: absolute;
      bottom: 24px;
      width: 14px;
      height: 28px;
      border-radius: 12px 12px 2px 2px;
      background: rgba(247, 244, 236, 0.68);
    }

    .ideology-scene i:nth-child(1) { right: 74px; }
    .ideology-scene i:nth-child(2) { right: 48px; height: 34px; }
    .ideology-scene i:nth-child(3) { right: 22px; }

    .culture-scene::before {
      right: 32px;
      bottom: 25px;
      width: 120px;
      height: 48px;
      border-radius: 54px 54px 10px 10px;
      background: linear-gradient(135deg, rgba(247, 244, 236, 0.72), rgba(247, 244, 236, 0.16));
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    }

    .culture-scene::after {
      right: 40px;
      bottom: 18px;
      width: 112px;
      height: 8px;
      background: repeating-linear-gradient(90deg, #f7f4ec 0 8px, #111 8px 14px);
    }

    .culture-scene i {
      position: absolute;
      left: calc(22px + var(--n, 0) * 30px);
      bottom: 24px;
      width: 12px;
      height: 28px;
      border-radius: 12px 12px 2px 2px;
      background: rgba(255, 166, 24, 0.72);
    }

    .culture-scene i:nth-child(1) { --n: 0; }
    .culture-scene i:nth-child(2) { --n: 1; height: 34px; }
    .culture-scene i:nth-child(3) { --n: 2; }
    .culture-scene i:nth-child(4) { --n: 3; height: 32px; }

    .system-scene::before {
      inset: 18px 22px auto 22px;
      height: 1px;
      background: linear-gradient(90deg, rgba(255, 166, 24, 0.72), rgba(247, 244, 236, 0.28), rgba(72, 210, 140, 0.5));
      box-shadow: 0 34px 0 rgba(247, 244, 236, 0.12), 0 68px 0 rgba(247, 244, 236, 0.09);
    }

    .system-scene i {
      position: absolute;
      width: 48px;
      height: 30px;
      border: 1px solid rgba(247, 244, 236, 0.22);
      background: rgba(255, 255, 255, 0.05);
    }

    .system-scene i:nth-child(1) { top: 34px; left: 24px; }
    .system-scene i:nth-child(2) { top: 62px; left: 92px; }
    .system-scene i:nth-child(3) { top: 30px; right: 82px; }
    .system-scene i:nth-child(4) { top: 64px; right: 22px; }

    .personality-scene i {
      position: absolute;
      bottom: 24px;
      width: 15px;
      height: 42px;
      border-radius: 14px 14px 4px 4px;
      background: linear-gradient(180deg, rgba(72, 210, 140, 0.9), rgba(247, 244, 236, 0.22));
    }

    .personality-scene i::before {
      content: "";
      position: absolute;
      top: -17px;
      left: -2px;
      width: 19px;
      height: 19px;
      border-radius: 50%;
      background: rgba(247, 244, 236, 0.78);
    }

    .personality-scene i:nth-child(1) { left: 36px; transform: rotate(-10deg); }
    .personality-scene i:nth-child(2) { left: 86px; height: 52px; }
    .personality-scene i:nth-child(3) { right: 88px; transform: rotate(10deg); }
    .personality-scene i:nth-child(4) { right: 38px; height: 48px; }

    .professional-scene::before,
    .professional-scene::after {
      top: 24px;
      width: 54px;
      height: 54px;
      border: 8px solid rgba(247, 244, 236, 0.35);
      border-radius: 50%;
      box-shadow: 0 0 0 1px rgba(255, 166, 24, 0.25), inset 0 0 0 12px rgba(255, 166, 24, 0.08);
    }

    .professional-scene::before { left: 34px; }
    .professional-scene::after { right: 34px; }

    .professional-scene i {
      position: absolute;
      bottom: 24px;
      left: 50%;
      width: 96px;
      height: 44px;
      border: 1px solid rgba(247, 244, 236, 0.18);
      background: linear-gradient(145deg, rgba(247, 244, 236, 0.16), rgba(255, 255, 255, 0.035));
      transform: translateX(-50%);
    }

    .professional-scene i:nth-child(2) {
      bottom: 72px;
      width: 72px;
      height: 14px;
      background: rgba(255, 166, 24, 0.22);
    }

    .school-gate {
      position: absolute;
      z-index: 4;
      width: 300px;
      border: 1px solid rgba(247, 244, 236, 0.16);
      background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.016)),
        rgba(8, 9, 13, 0.52);
      padding: 16px 18px;
      box-shadow:
        0 16px 42px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .school-gate span {
      color: var(--red);
      font-family: var(--display);
      font-size: 26px;
      line-height: 1;
      text-transform: uppercase;
    }

    .school-gate p {
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 850;
      line-height: 1.35;
    }

    .school-gate-in {
      top: 168px;
      left: 0;
    }

    .school-gate-out {
      right: 0;
      bottom: 116px;
      border-color: rgba(72, 210, 140, 0.25);
      background:
        linear-gradient(125deg, rgba(72, 210, 140, 0.1), rgba(255, 255, 255, 0.016)),
        rgba(8, 12, 11, 0.54);
    }

    .school-render-stage {
      position: relative;
      z-index: 2;
      margin-top: 28px;
      border: 1px solid rgba(247, 244, 236, 0.12);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
        rgba(6, 7, 10, 0.28);
      box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.32),
        inset 0 0 0 1px rgba(255, 255, 255, 0.035);
      overflow: hidden;
    }

    .school-render-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(8, 9, 13, 0.36), transparent 24%, transparent 74%, rgba(8, 9, 13, 0.16)),
        radial-gradient(circle at 80% 24%, rgba(255, 166, 24, 0.14), transparent 36%);
      pointer-events: none;
      z-index: 1;
    }

    .school-render-stage img {
      display: block;
      width: 100%;
      height: auto;
      min-height: 520px;
      object-fit: cover;
    }

    .school-render-label,
    .school-render-gate {
      position: absolute;
      z-index: 2;
      border: 1px solid rgba(247, 244, 236, 0.18);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(8, 9, 13, 0.54);
      box-shadow:
        0 12px 34px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
    }

    .school-render-label {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      max-width: 270px;
    }

    .school-render-label span {
      color: var(--red);
      font-family: var(--display);
      font-size: 21px;
      line-height: 1;
    }

    .school-render-label strong {
      color: var(--ink);
      font-family: var(--display);
      font-size: 17px;
      font-weight: 700;
      line-height: 0.98;
      text-transform: uppercase;
    }

    .label-ideology {
      top: 8%;
      left: 8%;
    }

    .label-culture {
      top: 24%;
      left: 6%;
    }

    .label-system {
      top: 42%;
      left: 5%;
    }

    .label-personality {
      top: 58%;
      left: 6%;
    }

    .label-professional {
      top: 75%;
      left: 7%;
    }

    .school-render-gate {
      width: 270px;
      padding: 14px 16px;
    }

    .school-render-gate span {
      color: var(--red);
      font-family: var(--display);
      font-size: 28px;
      line-height: 1;
      text-transform: uppercase;
    }

    .school-render-gate p {
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 850;
      line-height: 1.35;
    }

    .gate-in {
      left: 7%;
      right: auto;
      bottom: 4%;
      width: 220px;
    }

    .gate-out {
      right: 6%;
      bottom: 4%;
      border-color: rgba(72, 210, 140, 0.26);
      background:
        linear-gradient(145deg, rgba(72, 210, 140, 0.1), rgba(255, 255, 255, 0.025)),
        rgba(8, 12, 11, 0.56);
    }

    .program-page-note {
      position: relative;
      align-self: center;
      padding: 24px;
      background:
        radial-gradient(circle at 90% 0%, rgba(239, 47, 45, 0.22), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    }

    .program-page-note::before {
      content: "✓";
      position: absolute;
      top: 25px;
      left: 24px;
      display: grid;
      width: 36px;
      height: 36px;
      place-items: center;
      border: 1px solid rgba(72, 210, 140, 0.46);
      background: rgba(72, 210, 140, 0.14);
      color: #57dd98;
      font-size: 22px;
      font-weight: 900;
      line-height: 1;
    }

    .program-page-note .track-label,
    .program-page-note p {
      margin-left: 52px;
    }

    .program-page-note p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 16px;
      font-weight: 850;
      line-height: 1.55;
    }

    .program-page-honest {
      padding-top: 0;
    }

    .program-page-honest .program-page-note {
      max-width: 920px;
      margin: 0 auto;
    }

    .program-page-curriculum {
      padding-top: 0;
    }

    .program-page-curriculum .curriculum {
      margin-top: 0;
      padding-top: 48px;
    }

    .program-entry-card {
      display: grid;
      grid-template-columns: minmax(0, 0.72fr) minmax(220px, 0.28fr);
      gap: 28px;
      align-items: center;
      padding: 24px;
    }

    .program-entry .curriculum-head p {
      max-width: 760px;
      margin-top: 12px;
    }

    .program-entry-card h4 {
      margin: 14px 0 0;
      color: var(--ink);
      font-family: var(--display);
      font-size: clamp(32px, 3.1vw, 40px);
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
    }

    .program-entry-card p {
      max-width: 780px;
      margin-top: 14px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 850;
      line-height: 1.55;
    }

    .program-entry-card .artifact-list {
      margin-top: 18px;
    }

    .program-entry-actions {
      display: grid;
      gap: 12px;
      justify-items: stretch;
    }

    .program-entry-actions .button {
      width: 100%;
      max-width: 240px;
      min-height: 50px;
      padding: 14px 18px;
      font-size: 13px;
    }

    .program-intro {
      display: grid;
      grid-template-columns: minmax(0, 0.64fr) minmax(320px, 0.36fr);
      gap: 16px;
      align-items: stretch;
    }

    .program-promise,
    .program-stat,
    .program-block,
    .week-card,
    .artifact-strip {
      border: 1px solid var(--line);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    }

    .program-promise {
      position: relative;
      overflow: hidden;
      display: grid;
      align-content: start;
      min-height: 100%;
      padding: 26px 28px 14px;
      background:
        radial-gradient(circle at 12% 14%, rgba(247, 244, 236, 0.08), transparent 34%),
        radial-gradient(circle at 86% 84%, rgba(239, 47, 45, 0.11), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022));
    }

    .program-promise.with-visual {
      grid-template-rows: auto auto 1fr;
      gap: 0;
    }

    .program-promise.with-visual::after {
      display: none;
    }

    .program-promise::after {
      content: "";
      position: absolute;
      right: 28px;
      bottom: 28px;
      width: min(280px, 34%);
      height: 1px;
      background: linear-gradient(90deg, rgba(247, 244, 236, 0), rgba(247, 244, 236, 0.28));
      opacity: 0.7;
    }

    .program-promise p {
      max-width: 1040px;
      color: var(--muted);
      font-size: 17px;
      font-weight: 850;
      line-height: 1.58;
    }

    .program-school-house {
      position: relative;
      z-index: 1;
      display: grid;
      align-items: end;
      justify-items: center;
      min-height: 300px;
      margin: 20px -22px -8px;
      overflow: hidden;
      background: transparent;
    }

    .program-school-house img {
      display: block;
      width: min(118%, 900px);
      max-width: none;
      height: 100%;
      max-height: 390px;
      object-fit: contain;
      object-position: center bottom;
      filter:
        drop-shadow(0 28px 44px rgba(0, 0, 0, 0.42))
        saturate(1.04)
        contrast(1.03);
    }

    .program-stat {
      display: grid;
      align-content: center;
      padding: 24px;
      background:
        radial-gradient(circle at 90% 0%, rgba(239, 47, 45, 0.28), transparent 36%),
        linear-gradient(145deg, rgba(239, 47, 45, 0.16), rgba(255, 255, 255, 0.035));
    }

    .program-stat strong {
      display: block;
      color: var(--ink);
      font-family: var(--display);
      font-size: 52px;
      font-weight: 700;
      line-height: 0.9;
      text-transform: uppercase;
    }

    .program-stat span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 900;
      line-height: 1.35;
      text-transform: uppercase;
    }

    .program-block-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .program-block {
      min-height: 0;
      padding: 14px 16px;
    }

    .program-block b,
    .week-card b {
      display: block;
      color: var(--red);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .program-block h4 {
      margin: 9px 0 0;
      color: var(--ink);
      font-family: var(--display);
      font-size: 21px;
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
    }

    .program-block p,
    .week-card p,
    .artifact-strip p {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.48;
    }

    .program-block p {
      margin-top: 8px;
    }

    .program-flow-figure {
      display: grid;
      grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
      gap: 18px;
      align-items: center;
      margin: 0;
      border: 1px solid rgba(239, 47, 45, 0.28);
      background:
        radial-gradient(circle at 88% 16%, rgba(239, 47, 45, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
      padding: 18px;
      box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
    }

    .program-flow-figure figcaption {
      padding: 10px 4px 10px 8px;
    }

    .program-flow-figure h4 {
      margin: 14px 0 0;
      color: var(--ink);
      font-family: var(--display);
      font-size: 42px;
      font-weight: 700;
      line-height: 0.96;
      text-transform: uppercase;
    }

    .program-flow-figure p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 850;
      line-height: 1.55;
    }

    .program-flow-link {
      display: block;
      overflow: hidden;
      border: 1px solid rgba(247, 244, 236, 0.16);
      background: rgba(255, 255, 255, 0.035);
      box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
    }

    .program-flow-link img {
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .week-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .week-card {
      min-height: 128px;
      padding: 16px;
    }

    .week-card h5 {
      margin: 10px 0 0;
      color: var(--ink);
      font-size: 15px;
      font-weight: 900;
      line-height: 1.18;
      text-transform: uppercase;
    }

    .week-card p {
      margin-top: 8px;
    }

    .artifact-strip {
      display: grid;
      grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
      gap: 18px;
      align-items: start;
      padding: 22px;
      border-color: rgba(239, 47, 45, 0.32);
    }

    .artifact-strip h4 {
      margin: 0;
      color: var(--ink);
      font-family: var(--display);
      font-size: 34px;
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
    }

    .artifact-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .artifact-list li {
      border: 1px solid rgba(247, 244, 236, 0.12);
      background: rgba(255, 255, 255, 0.045);
      padding: 8px 10px;
      color: rgba(247, 244, 236, 0.78);
      font-size: 12px;
      font-weight: 900;
      line-height: 1.15;
      text-transform: uppercase;
    }

    .result-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
    }

    .result-card {
      display: grid;
      min-height: 520px;
      align-content: start;
      gap: 28px;
      padding: 30px;
      border: 1px solid rgba(247, 244, 236, 0.16);
      background:
        radial-gradient(circle at 15% 0%, rgba(239, 47, 45, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .result-card-accent {
      border-color: rgba(239, 47, 45, 0.34);
      background:
        radial-gradient(circle at 88% 0%, rgba(239, 47, 45, 0.22), transparent 38%),
        linear-gradient(145deg, rgba(86, 18, 22, 0.56), rgba(255, 255, 255, 0.03));
    }

    .result-card h4 {
      max-width: 560px;
      margin: 0;
      color: var(--ink);
      font-family: var(--display);
      font-size: clamp(38px, 3.35vw, 58px);
      font-weight: 700;
      line-height: 0.92;
      text-transform: uppercase;
    }

    .result-card p {
      max-width: 640px;
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 15px;
      font-weight: 850;
      line-height: 1.55;
    }

    .result-chip-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-content: start;
    }

    .result-chip {
      border: 1px solid rgba(247, 244, 236, 0.14);
      background: rgba(255, 255, 255, 0.045);
      padding: 10px 12px;
      color: rgba(247, 244, 236, 0.78);
      font: inherit;
      font-size: 12px;
      font-weight: 950;
      line-height: 1.1;
      text-align: left;
      text-transform: uppercase;
      cursor: pointer;
      transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
    }

    .result-chip:hover,
    .result-chip:focus-visible,
    .result-chip.is-active {
      outline: none;
      transform: translateY(-1px);
      border-color: rgba(239, 47, 45, 0.72);
      background: rgba(239, 47, 45, 0.14);
      color: var(--ink);
      box-shadow: 0 14px 36px rgba(239, 47, 45, 0.12);
    }

    .result-popover {
      position: fixed;
      z-index: 150;
      width: min(380px, calc(100vw - 32px));
      padding: 20px 46px 22px 20px;
      border: 1px solid rgba(247, 244, 236, 0.18);
      background:
        radial-gradient(circle at 100% 0%, rgba(239, 47, 45, 0.24), transparent 42%),
        linear-gradient(145deg, rgba(28, 30, 36, 0.98), rgba(20, 8, 10, 0.98));
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(8px);
      transition:
        opacity 160ms ease,
        transform 160ms ease,
        visibility 160ms ease;
    }

    .result-popover.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .result-popover h4 {
      margin: 10px 0 0;
      color: var(--ink);
      font-family: var(--display);
      font-size: 26px;
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
    }

    .result-popover p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 14px;
      font-weight: 850;
      line-height: 1.45;
    }

    .result-popover-close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 28px;
      height: 28px;
      border: 1px solid rgba(247, 244, 236, 0.14);
      background: rgba(255, 255, 255, 0.05);
      color: var(--ink);
      font-size: 18px;
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
    }

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

    .track-card,
    .cycle-card {
      border: 1px solid var(--line);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
      padding: 22px;
    }

    .track-card {
      display: flex;
      min-height: 430px;
      flex-direction: column;
      transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
    }

    .program-card {
      position: relative;
      cursor: pointer;
    }

    .program-card:hover,
    .program-card:focus-within {
      transform: translateY(-4px);
      border-color: rgba(239, 47, 45, 0.62);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    }

    .track-card.featured {
      border-color: rgba(239, 47, 45, 0.42);
      background:
        radial-gradient(circle at 80% 0%, rgba(239, 47, 45, 0.28), transparent 36%),
        linear-gradient(145deg, rgba(239, 47, 45, 0.16), rgba(255, 255, 255, 0.035));
    }

    .track-label {
      color: var(--red);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .track-card h4,
    .cycle-card h4 {
      margin: 16px 0 0;
      font-family: var(--display);
      font-size: 34px;
      font-weight: 700;
      line-height: 0.98;
      text-transform: uppercase;
    }

    .track-card p,
    .track-card li,
    .cycle-card p {
      color: var(--muted);
      font-size: 14px;
      font-weight: 750;
      line-height: 1.52;
    }

    .track-card p {
      margin-top: 16px;
    }

    .track-card ul {
      display: grid;
      gap: 8px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .track-card li {
      border-top: 1px solid rgba(247, 244, 236, 0.11);
      padding-top: 8px;
    }

    .track-result {
      margin-top: auto;
      padding-top: 18px;
      border-top: 1px solid rgba(239, 47, 45, 0.24);
    }

    .track-result b {
      display: block;
      color: var(--ink);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .track-result span {
      display: block;
      margin-top: 8px;
      color: rgba(247, 244, 236, 0.8);
      font-size: 14px;
      font-weight: 800;
      line-height: 1.42;
    }

    .track-actions {
      margin-top: 18px;
    }

    .track-actions .button {
      width: 100%;
      min-height: 46px;
    }

    .program-modal {
      position: fixed;
      inset: 0;
      z-index: 120;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(3, 4, 7, 0.72);
      backdrop-filter: blur(18px);
    }

    .program-modal.is-open {
      display: flex;
    }

    .program-dialog {
      position: relative;
      width: min(960px, calc(100vw - 32px));
      max-height: min(86vh, 860px);
      overflow: auto;
      border: 1px solid rgba(239, 47, 45, 0.36);
      background:
        radial-gradient(circle at 90% 0%, rgba(239, 47, 45, 0.22), transparent 30%),
        linear-gradient(145deg, rgba(22, 24, 30, 0.98), rgba(8, 9, 13, 0.98));
      box-shadow: 0 36px 120px rgba(0, 0, 0, 0.62);
      padding: 34px;
    }

    .program-close {
      position: absolute;
      top: 18px;
      right: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      cursor: pointer;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      color: var(--ink);
      font-size: 24px;
      line-height: 1;
    }

    .program-dialog h3 {
      max-width: 760px;
      margin-top: 14px;
      padding-right: 54px;
      font-size: 58px;
    }

    .program-dialog .copy {
      max-width: 760px;
    }

    .program-detail-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 26px;
    }

    .program-detail {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.045);
      padding: 18px;
    }

    .program-detail h4 {
      margin: 0;
      color: var(--ink);
      font-family: var(--display);
      font-size: 28px;
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
    }

    .program-detail p,
    .program-detail li {
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      line-height: 1.52;
    }

    .program-detail p {
      margin-top: 12px;
    }

    .program-detail ul {
      display: grid;
      gap: 8px;
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
    }

    .program-detail li {
      border-top: 1px solid rgba(247, 244, 236, 0.11);
      padding-top: 8px;
    }

    .program-modal-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .learning-cycle {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 12px;
    }

    .cycle-card {
      min-height: 190px;
    }

    .cycle-card h4 {
      font-size: 30px;
    }

    .cycle-card p {
      margin-top: 14px;
    }

    .corporate-note {
      display: grid;
      grid-template-columns: 1fr;
      gap: 26px;
      align-items: start;
      max-width: 760px;
      min-height: 360px;
      margin: 30px auto 0;
      border: 1px solid rgba(239, 47, 45, 0.34);
      background:
        radial-gradient(circle at 88% 12%, rgba(239, 47, 45, 0.25), transparent 34%),
        linear-gradient(145deg, rgba(239, 47, 45, 0.13), rgba(255, 255, 255, 0.04));
      padding: 34px;
    }

    .corporate-note h4 {
      margin: 0;
      font-family: var(--display);
      font-size: 42px;
      font-weight: 700;
      line-height: 0.98;
      text-transform: uppercase;
    }

    .corporate-note p {
      max-width: 620px;
      margin-top: 14px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 800;
      line-height: 1.52;
    }

    .mentor-points {
      display: grid;
      gap: 9px;
      max-width: 620px;
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
    }

    .mentor-points li {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 9px;
      color: rgba(249, 245, 237, 0.84);
      font-size: 14px;
      font-weight: 850;
      line-height: 1.35;
    }

    .corporate-note .button {
      width: 100%;
      max-width: 380px;
    }

    .price {
      border: 1px solid rgba(239, 47, 45, 0.26);
      background:
        linear-gradient(145deg, rgba(239, 47, 45, 0.12), rgba(255, 255, 255, 0.05));
    }

    .price strong {
      display: block;
      margin-top: 18px;
      color: var(--ink);
      font-family: var(--display);
      font-size: 38px;
      line-height: 1;
    }

    .cta {
      padding-bottom: 88px;
    }

    .cta-box {
      display: grid;
      grid-template-columns: minmax(0, 0.78fr) minmax(430px, 0.62fr);
      gap: 24px;
      align-items: stretch;
      border: 1px solid rgba(239, 47, 45, 0.28);
      background:
        radial-gradient(circle at 88% 0%, rgba(239, 47, 45, 0.32), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
      padding: 28px;
    }

    .cta-box > * {
      min-width: 0;
    }

    .cta-box h2 {
      max-width: 820px;
      font-size: 74px;
    }

    .mobile-only {
      display: none;
    }

    .cta-side {
      display: grid;
      align-content: space-between;
      border-left: 1px solid var(--line);
      padding-left: 22px;
    }

    .cta-author {
      position: relative;
      min-height: 430px;
      overflow: hidden;
      padding: 30px 28px;
      border-left-color: rgba(239, 47, 45, 0.32);
      background:
        radial-gradient(circle at 72% 16%, rgba(239, 47, 45, 0.28), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
      isolation: isolate;
    }

    .cta-author::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(8, 9, 13, 0.98) 0%, rgba(8, 9, 13, 0.9) 42%, rgba(8, 9, 13, 0.24) 66%, rgba(8, 9, 13, 0.02) 100%),
        linear-gradient(0deg, rgba(8, 9, 13, 0.72), transparent 30%, transparent 76%, rgba(8, 9, 13, 0.42));
      pointer-events: none;
    }

    .cta-author::after {
      content: "";
      position: absolute;
      top: 22px;
      right: 22px;
      bottom: 22px;
      width: 1px;
      z-index: 2;
      background: linear-gradient(180deg, transparent, rgba(239, 47, 45, 0.72), transparent);
      opacity: 0.8;
      pointer-events: none;
    }

    .cta-author-photo {
      position: absolute;
      right: -18px;
      bottom: -96px;
      z-index: 0;
      width: min(58%, 350px);
      height: calc(100% + 130px);
      object-fit: cover;
      object-position: 53% 49%;
      opacity: 1;
      filter: saturate(0.92) contrast(1.05) brightness(1.04);
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 18%, #000 34%, #000 100%);
      mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 18%, #000 34%, #000 100%);
    }

    .cta-author-content,
    .cta-author-note {
      position: relative;
      z-index: 3;
      max-width: 55%;
    }

    .cta-side strong {
      display: block;
      font-family: var(--display);
      font-size: 36px;
      line-height: 0.96;
      text-transform: uppercase;
    }

    .cta-side span {
      display: block;
      margin-top: 14px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 800;
      line-height: 1.5;
    }

    /* Telegram channel page */
    .telegram-page {
      --telegram-blue: #2aabee;
      --telegram-blue-deep: #126ca7;
      --telegram-line: rgba(42, 171, 238, 0.34);
      background:
        radial-gradient(circle at 78% 8%, rgba(42, 171, 238, 0.18), transparent 34%),
        radial-gradient(circle at 18% 24%, rgba(239, 47, 45, 0.09), transparent 32%),
        var(--bg);
    }

    .eyebrow.blue {
      border-left-color: var(--telegram-blue);
      color: rgba(224, 242, 255, 0.86);
    }

    .telegram-button {
      background: linear-gradient(135deg, var(--telegram-blue), var(--telegram-blue-deep));
      box-shadow: 0 18px 42px rgba(42, 171, 238, 0.24);
    }

    .telegram-hero {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
      gap: 52px;
      align-items: center;
      min-height: calc(100vh - 68px);
      padding-top: 54px;
    }

    .telegram-hero-copy h1 {
      max-width: 720px;
      margin: 26px 0 0;
      font-family: var(--display);
      font-size: var(--offer-hero-size);
      font-weight: 800;
      line-height: var(--offer-line-height);
      text-transform: uppercase;
    }

    .telegram-hero-copy .lead {
      max-width: 720px;
      margin-top: 24px;
      color: rgba(249, 245, 237, 0.84);
      font-size: 24px;
      font-weight: 850;
      line-height: 1.35;
    }

    .telegram-video-card {
      position: relative;
      display: grid;
      gap: 24px;
      justify-items: center;
      border: 1px solid var(--telegram-line);
      background:
        radial-gradient(circle at 50% 20%, rgba(42, 171, 238, 0.28), transparent 40%),
        linear-gradient(145deg, rgba(42, 171, 238, 0.12), rgba(255, 255, 255, 0.04));
      padding: 34px;
      overflow: hidden;
    }

    .telegram-video-card::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      pointer-events: none;
    }

    .telegram-video-frame {
      position: relative;
      width: min(100%, 360px);
      aspect-ratio: 1;
      border-radius: 50%;
      border: 1px solid rgba(42, 171, 238, 0.46);
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38), 0 0 0 14px rgba(42, 171, 238, 0.055);
      overflow: hidden;
    }

    .telegram-round-video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.03) contrast(1.05);
    }

    .telegram-video-toggle {
      position: absolute;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      border: 1px solid rgba(255, 255, 255, 0.26);
      background: rgba(8, 9, 13, 0.72);
      backdrop-filter: blur(12px);
      padding: 10px 14px;
      color: var(--ink);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      cursor: pointer;
    }

    .telegram-video-caption {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 8px;
      width: 100%;
    }

    .telegram-video-caption span,
    .telegram-post-tag {
      color: var(--telegram-blue);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .telegram-video-caption b {
      color: var(--ink);
      font-size: 22px;
      line-height: 1.15;
    }

    .telegram-video-caption a {
      width: fit-content;
      color: rgba(224, 242, 255, 0.86);
      font-size: 13px;
      font-weight: 850;
      text-decoration: underline;
      text-decoration-color: rgba(42, 171, 238, 0.5);
      text-underline-offset: 4px;
    }

    .telegram-section-head h2 {
      font-size: var(--offer-section-size);
      line-height: var(--offer-line-height);
    }

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

    .telegram-panel,
    .telegram-path article,
    .telegram-cta {
      border: 1px solid rgba(255, 255, 255, 0.14);
      background:
        radial-gradient(circle at 88% 0%, rgba(42, 171, 238, 0.15), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    }

    .telegram-panel {
      min-height: 260px;
      padding: 28px;
    }

    .blue-num {
      color: var(--telegram-blue);
    }

    .telegram-panel h3,
    .telegram-path h3 {
      margin: 18px 0 0;
      font-family: var(--display);
      font-size: 34px;
      font-weight: 750;
      line-height: 0.96;
      text-transform: uppercase;
    }

    .telegram-panel p,
    .telegram-path p {
      margin-top: 16px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 800;
      line-height: 1.5;
    }

    .telegram-post-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      align-items: start;
    }

    .telegram-post-card {
      display: block;
      overflow: hidden;
      text-decoration: none;
    }

    .telegram-message-card {
      border: 1px solid rgba(42, 171, 238, 0.22);
      border-radius: 28px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.98));
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
      color: #111821;
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .telegram-message-card:hover {
      transform: translateY(-6px);
      border-color: rgba(42, 171, 238, 0.54);
      box-shadow: 0 34px 86px rgba(18, 130, 190, 0.18);
    }

    .telegram-message-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 22px 14px;
      background: #ffffff;
    }

    .telegram-message-head strong {
      color: #c63732;
      font-size: 20px;
      font-weight: 850;
      letter-spacing: 0.02em;
    }

    .telegram-message-head span {
      color: #7e8b98;
      font-size: 12px;
      font-weight: 800;
      text-align: right;
    }

    .telegram-message-media {
      margin: 0;
      background: #edf2f5;
      overflow: hidden;
    }

    .telegram-message-media img {
      display: block;
      width: 100%;
      height: 360px;
      object-fit: cover;
      object-position: center;
      filter: saturate(1.02) contrast(1.02);
    }

    .telegram-message-body {
      padding: 22px 24px 16px;
    }

    .telegram-message-body h3 {
      margin: 14px 0 0;
      color: #111821;
      font-family: var(--display);
      font-size: clamp(32px, 2.8vw, 44px);
      font-weight: 760;
      line-height: 0.94;
      text-transform: uppercase;
    }

    .telegram-message-body p {
      margin-top: 18px;
      color: #111821;
      font-size: 18px;
      font-weight: 650;
      line-height: 1.42;
    }

    .telegram-message-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 24px 22px;
      color: #8b98a5;
      font-size: 17px;
      font-weight: 750;
    }

    .telegram-reaction {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 5px 12px;
      border-radius: 999px;
      background: #35aaf2;
      color: #ffffff;
      line-height: 1;
    }

    .telegram-view {
      margin-left: auto;
      white-space: nowrap;
    }

    .telegram-path {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .telegram-path article {
      min-height: 250px;
      padding: 28px;
    }

    .telegram-cta {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(260px, 0.3fr);
      gap: 28px;
      align-items: center;
      margin-bottom: 72px;
      border-color: var(--telegram-line);
      padding: 34px;
    }

    .telegram-cta h2 {
      max-width: 940px;
      margin: 16px 0 0;
      font-family: var(--display);
      font-size: var(--offer-section-size);
      font-weight: 760;
      line-height: var(--offer-line-height);
      text-transform: uppercase;
    }

    .telegram-cta-side {
      display: grid;
      gap: 16px;
      justify-items: stretch;
    }

    .telegram-channel-card {
      display: flex;
      align-items: center;
      gap: 16px;
      min-height: 92px;
      padding: 16px 18px;
      border: 1px solid rgba(42, 171, 238, 0.32);
      border-radius: 24px;
      background:
        radial-gradient(circle at 0% 0%, rgba(42, 171, 238, 0.2), transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
      color: var(--ink);
      text-decoration: none;
      box-shadow: 0 22px 54px rgba(42, 171, 238, 0.12);
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .telegram-channel-card:hover {
      transform: translateY(-3px);
      border-color: rgba(42, 171, 238, 0.7);
      background:
        radial-gradient(circle at 0% 0%, rgba(42, 171, 238, 0.28), transparent 54%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
    }

    .telegram-channel-card img {
      width: 58px;
      height: 58px;
      flex: 0 0 58px;
      border: 2px solid rgba(255, 255, 255, 0.88);
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
    }

    .telegram-channel-card span {
      display: grid;
      gap: 4px;
      min-width: 0;
    }

    .telegram-channel-card b {
      color: var(--ink);
      font-size: 24px;
      font-weight: 900;
      letter-spacing: 0.02em;
      line-height: 1;
    }

    .telegram-channel-card small {
      color: rgba(249, 245, 237, 0.62);
      font-size: 14px;
      font-weight: 800;
    }

    .about-hero {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
      gap: 42px;
      align-items: center;
      min-height: calc(100vh - 68px);
      padding-top: 64px;
      padding-bottom: 72px;
      border-bottom: 1px solid rgba(247, 244, 236, 0.08);
    }

    .about-hero-copy h1 {
      max-width: 760px;
      margin-top: 24px;
      font-size: var(--offer-hero-size);
      line-height: var(--offer-line-height);
    }

    .about-hero-copy .lead {
      max-width: 720px;
      margin-top: 24px;
      color: rgba(247, 244, 236, 0.84);
      font-size: clamp(14px, 1.05vw, 16px);
      font-weight: 500;
      line-height: 1.55;
    }

    .about-proof-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .about-proof-row span,
    .about-theme-list span {
      border: 1px solid rgba(247, 244, 236, 0.15);
      background: rgba(255, 255, 255, 0.045);
      color: rgba(247, 244, 236, 0.84);
      padding: 12px 14px;
      font-size: 13px;
      font-weight: 950;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .about-hero-media {
      position: relative;
      overflow: hidden;
      min-height: 560px;
      border: 1px solid rgba(239, 47, 45, 0.28);
      background:
        radial-gradient(circle at 70% 0%, rgba(239, 47, 45, 0.26), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
      box-shadow: 0 36px 120px rgba(0, 0, 0, 0.42);
    }

    .about-hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, transparent 50%, rgba(8, 9, 13, 0.3) 100%),
        linear-gradient(90deg, rgba(8, 9, 13, 0.18), transparent 46%);
      pointer-events: none;
    }

    .about-hero-media img {
      width: 100%;
      height: 100%;
      min-height: 560px;
      object-fit: cover;
      object-position: 58% center;
      filter: saturate(0.96) contrast(1.06);
    }

    .about-section {
      padding-top: 82px;
      padding-bottom: 22px;
    }

    .about-proof-grid,
    .about-role-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 32px;
    }

    .about-win-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 32px;
    }

    .about-proof-card,
    .about-entry-card {
      border: 1px solid rgba(247, 244, 236, 0.14);
      background:
        radial-gradient(circle at 100% 0%, rgba(239, 47, 45, 0.16), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
      padding: 24px;
    }

    .about-proof-card {
      min-height: 310px;
    }

    .about-role-card {
      min-height: 360px;
    }

    .about-role-card-featured {
      grid-column: span 2;
      display: grid;
      grid-template-columns: minmax(0, 0.88fr) minmax(260px, 1fr);
      gap: 22px;
      align-items: stretch;
      overflow: hidden;
    }

    .about-role-card-copy {
      position: relative;
      z-index: 1;
      align-self: start;
    }

    .about-role-media {
      position: relative;
      min-height: 100%;
      margin: -4px -4px -4px 0;
      overflow: hidden;
      border: 1px solid rgba(247, 244, 236, 0.13);
      background: rgba(8, 9, 13, 0.4);
    }

    .about-role-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(8, 9, 13, 0.34), transparent 34%),
        linear-gradient(180deg, rgba(8, 9, 13, 0.05), rgba(8, 9, 13, 0.38));
      pointer-events: none;
    }

    .about-role-media img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 318px;
      object-fit: cover;
      object-position: center;
      filter: saturate(0.92) contrast(1.06) brightness(0.82);
      transform: scale(1.01);
    }

    .about-win-card {
      min-height: 330px;
    }

    .about-proof-card h3,
    .about-entry-card h3 {
      margin-top: 16px;
      font-size: 31px;
      line-height: 0.96;
    }

    .about-proof-card p,
    .about-entry-card p,
    .about-position .lead {
      color: var(--muted);
      font-size: 16px;
      font-weight: 850;
      line-height: 1.5;
    }

    .about-proof-card p,
    .about-entry-card p {
      margin-top: 14px;
    }

    .about-proof-card p b {
      color: var(--ink);
      font-weight: 950;
    }

    .about-photo-grid {
      column-count: 5;
      column-gap: 14px;
      margin-top: 26px;
    }

    .about-photo-card {
      position: relative;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      width: 100%;
      margin: 0 0 14px;
      break-inside: avoid;
      min-height: 0;
      border: 1px solid rgba(247, 244, 236, 0.14);
      background: rgba(255, 255, 255, 0.04);
      cursor: zoom-in;
    }

    .about-photo-card-large {
      grid-column: auto;
      min-height: 0;
    }

    .about-photo-card img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      object-position: center;
      filter: saturate(0.9) contrast(1.04) brightness(0.9);
      transition: transform 0.45s ease, filter 0.45s ease;
    }

    .about-photo-card:hover img {
      transform: scale(1.035);
      filter: saturate(1) contrast(1.08) brightness(0.98);
    }

    .about-photo-card figcaption {
      display: grid;
      gap: 6px;
      padding: 12px 14px 14px;
      min-height: 74px;
      border-top: 1px solid rgba(247, 244, 236, 0.1);
      background: linear-gradient(180deg, rgba(8, 9, 13, 0.68), rgba(8, 9, 13, 0.92));
    }

    .about-photo-card figcaption span {
      color: var(--red);
      font-size: 10px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .about-photo-card figcaption b {
      color: var(--ink);
      font-size: 14px;
      line-height: 1.12;
    }

    .about-photo-lightbox {
      position: fixed;
      inset: 0;
      z-index: 1200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 28px;
      background: rgba(3, 4, 7, 0.84);
      backdrop-filter: blur(18px);
    }

    .about-photo-lightbox.is-open {
      display: flex;
    }

    .about-photo-lightbox figure {
      position: relative;
      display: grid;
      gap: 0;
      width: min(1120px, 92vw);
      max-height: 90vh;
      margin: 0;
      overflow: hidden;
      border: 1px solid rgba(247, 244, 236, 0.18);
      background: rgba(8, 9, 13, 0.96);
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
    }

    .about-photo-lightbox img {
      width: 100%;
      max-height: 78vh;
      object-fit: contain;
      background: rgba(0, 0, 0, 0.35);
    }

    .about-photo-lightbox figcaption {
      display: grid;
      gap: 7px;
      padding: 16px 18px;
      border-top: 1px solid rgba(247, 244, 236, 0.1);
    }

    .about-photo-lightbox figcaption span {
      color: var(--red);
      font-size: 11px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .about-photo-lightbox figcaption b {
      color: var(--ink);
      font-size: 18px;
      line-height: 1.12;
    }

    .about-photo-lightbox-close {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 2;
      display: grid;
      width: 44px;
      height: 44px;
      place-items: center;
      border: 1px solid rgba(247, 244, 236, 0.22);
      border-radius: 999px;
      color: var(--ink);
      background: rgba(8, 9, 13, 0.72);
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
    }

    .about-position {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
      gap: 42px;
      align-items: start;
      border: 1px solid rgba(239, 47, 45, 0.24);
      background:
        radial-gradient(circle at 100% 0%, rgba(239, 47, 45, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
      padding: 36px;
    }

    .about-position h2 {
      margin-top: 18px;
      font-size: var(--offer-section-size);
      line-height: var(--offer-line-height);
    }

    .about-position .lead {
      max-width: 820px;
      margin-top: 22px;
      font-size: 21px;
    }

    .about-theme-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-content: start;
    }

    .about-entry-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      align-items: stretch;
      margin-bottom: 72px;
    }

    .about-entry-card {
      display: grid;
      min-height: 330px;
      align-content: start;
      gap: 12px;
    }

    .about-entry-card .button {
      width: 100%;
      margin-top: auto;
    }


/* ===== 04-responsive.css ===== */
/* Адаптив под планшеты и мобильные экраны. */
@media (max-width: 1020px) {
      .hero,
      .page-hero,
      .program-page-hero,
      .section-head,
      .module,
      .module:nth-child(even),
      .program-entry-card,
      .admin-layout,
      .cta-box {
        grid-template-columns: 1fr;
      }

      #audience .section-head .copy {
        border-left: 0;
        border-top: 1px solid rgba(247, 244, 236, 0.16);
        padding-left: 0;
        padding-top: 20px;
      }

      #why .section-head .copy {
        border-left: 0;
        border-top: 1px solid rgba(17, 19, 24, 0.14);
        padding-left: 0;
        padding-top: 20px;
      }

      .module:nth-child(even) .module-copy {
        order: 0;
      }

      .program .module-copy {
        margin-top: 0;
      }

      .module-visual {
        gap: 11px;
      }

      .module-chapter {
        font-size: 12px;
      }

      .module.module-foundation,
      .module.module-foundation:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
        margin-bottom: 54px;
      }

      .module.module-foundation::after {
        bottom: -36px;
        height: 36px;
      }

      .module.module-foundation .module-copy {
        order: -1;
      }

      .module.module-foundation .banner-frame {
        max-width: 680px;
        margin: 0;
      }

      .grid-3,
      .page-grid,
      .format-grid,
      .program-intro,
      .program-block-grid,
      .program-flow-figure,
      .track-grid,
      .learning-cycle,
      .result-card-grid,
      .artifact-strip,
      .corporate-note {
        grid-template-columns: 1fr;
      }

      .curriculum-head {
        grid-template-columns: 1fr;
      }

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

      .hero-points {
        grid-template-columns: 1fr;
      }

      .program-page-hero {
        min-height: auto;
        padding-top: 62px;
      }

      .program-video-preview {
        min-height: 0;
        aspect-ratio: auto;
      }

      .program-video-preview::before {
        background:
          linear-gradient(180deg, rgba(8, 9, 13, 0.88) 0%, rgba(41, 9, 13, 0.78) 44%, rgba(8, 9, 13, 0.4) 100%),
          linear-gradient(90deg, rgba(8, 9, 13, 0.9), rgba(8, 9, 13, 0.28));
      }

      .program-video-copy {
        min-height: 440px;
        padding: 44px 34px 88px;
      }

      .program-video-image img {
        object-position: 64% center;
      }

      .program-hero-map {
        width: 100%;
        max-width: 520px;
      }

      .hero-cover {
        background:
          linear-gradient(90deg, rgba(8, 9, 13, 0.96) 0%, rgba(33, 9, 12, 0.88) 38%, rgba(8, 9, 13, 0.34) 72%, rgba(8, 9, 13, 0.18) 100%),
          linear-gradient(180deg, rgba(8, 9, 13, 0.14) 0%, rgba(8, 9, 13, 0.72) 100%),
          url("../images/hero-future-manager-v3.png?v=20260702-01") 63% center / cover no-repeat;
      }

      .cta-side {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-left: 0;
        padding-top: 22px;
      }

      .cta-author {
        min-height: 480px;
        padding: 24px 22px 240px;
      }

      .cta-author-photo {
        right: -24px;
        bottom: -86px;
        width: min(82%, 390px);
        height: 72%;
        object-position: 52% 48%;
      }

      .cta-author-content,
      .cta-author-note {
        max-width: 100%;
      }
    }

    @media (max-width: 720px) {
      :root {
        --offer-hero-size: clamp(40px, 10.8vw, 50px);
        --offer-section-size: clamp(36px, 10vw, 46px);
        --offer-compact-size: clamp(32px, 8.8vw, 40px);
        --offer-line-height: 0.95;
      }

      body {
        padding-bottom: 0;
      }

      .top-inner {
        min-height: 58px;
        padding: 0;
      }

      .nav {
        display: none;
      }

      .mobile-nav {
        display: none;
      }
      section {
        padding: 54px 0;
      }

      h1 {
        font-size: 54px;
      }

      .hero h1 {
        max-width: 100%;
        font-size: var(--offer-hero-size);
        line-height: var(--offer-line-height);
      }

      .hero .eyebrow {
        max-width: 100%;
        font-size: 10px;
        letter-spacing: 0.08em;
      }

      .hero-cover {
        min-height: calc(100vh - 58px);
        padding-top: 0;
      }

      .hero-content {
        padding-top: 54px;
        padding-bottom: 54px;
      }

      .hero-cover .lead {
        max-width: 320px;
      }

      .hero-cover .copy {
        max-width: 330px;
        font-size: 14.5px;
        line-height: 1.48;
      }

      .hero-mobile-break {
        display: inline;
      }

      .hero-desktop-prefix {
        display: none;
      }

      h2,
      .cta-box h2 {
        font-size: var(--offer-section-size);
        line-height: var(--offer-line-height);
      }

      .audience-offer {
        font-size: var(--offer-section-size);
        line-height: var(--offer-line-height);
      }

      .responsibility-offer {
        font-size: var(--offer-section-size);
        line-height: var(--offer-line-height);
      }

      .section-head h2,
      .section-head .copy {
        max-width: 330px;
      }

      .section-head .program-foundation-title {
        max-width: 100%;
        font-size: clamp(28px, 8vw, 38px);
        line-height: 0.98;
      }

      .cta-box {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        padding: 22px 16px;
      }

      .cta.shell {
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
      }

      .cta-box h2 {
        max-width: 310px;
        font-size: 28px;
        line-height: 0.98;
      }

      .cta-box .copy {
        max-width: 310px;
        font-size: 13.5px;
        overflow-wrap: break-word;
      }

      .mobile-only {
        display: block;
      }

      .cta-author {
        display: block;
        min-height: 560px;
        overflow: hidden;
        padding: 22px 18px 280px;
        border-top-color: rgba(239, 47, 45, 0.24);
        background:
          radial-gradient(circle at 82% 70%, rgba(239, 47, 45, 0.22), transparent 34%),
          linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
      }

      .cta-author::before {
        background:
          linear-gradient(180deg, rgba(8, 9, 13, 0.98) 0%, rgba(8, 9, 13, 0.92) 38%, rgba(8, 9, 13, 0.2) 52%, rgba(8, 9, 13, 0) 78%),
          linear-gradient(90deg, rgba(8, 9, 13, 0.96) 0%, rgba(8, 9, 13, 0.42) 42%, rgba(8, 9, 13, 0) 100%);
      }

      .cta-author::after {
        top: auto;
        right: 18px;
        bottom: 22px;
        left: 18px;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(239, 47, 45, 0.7), transparent);
      }

      .cta-author-photo {
        right: -18px;
        bottom: -50px;
        width: min(92%, 350px);
        height: 64%;
        object-position: 52% 45%;
        filter: saturate(0.94) contrast(1.06) brightness(1.18);
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 100%);
        mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 100%);
      }

      .cta-author-content,
      .cta-author-note {
        max-width: 88%;
      }

      .cta-author-note {
        margin-top: 22px;
      }

      .cta-side strong {
        font-size: 31px;
      }

      .cta-side span {
        font-size: 13.5px;
        line-height: 1.46;
      }

      .program-flow-figure {
        padding: 14px;
      }

      .program-flow-figure figcaption {
        padding: 2px 0 4px;
      }

      .program-flow-figure h4 {
        max-width: 310px;
        font-size: 30px;
      }

      .program-flow-figure p {
        max-width: 320px;
        font-size: 13.5px;
      }

      .lead {
        font-size: 20px;
      }

      .copy {
        font-size: 15px;
        line-height: 1.58;
      }

      .hero .lead,
      .program-page-hero .lead,
      .hero .copy {
        max-width: 330px;
      }

      .program-page-hero h1 {
        max-width: 350px;
        font-size: var(--offer-hero-size);
        line-height: var(--offer-line-height);
        overflow-wrap: break-word;
      }

      .program-video-preview {
        margin-right: -16px;
        margin-left: -16px;
        border-right: 0;
        border-left: 0;
      }

      .program-video-preview::after {
        inset: 12px;
      }

      .program-video-copy {
        min-height: 390px;
        padding: 34px 16px 86px;
      }

      .program-video-copy .track-label {
        margin-left: 0;
      }

      .program-video-copy .actions {
        grid-template-columns: 1fr;
      }

      .program-video-controls {
        right: 14px;
        bottom: 14px;
        left: 14px;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
        padding: 8px 10px;
      }

      .program-time {
        display: none;
      }

      .program-play {
        width: 30px;
        height: 30px;
      }

      .program-page-map {
        padding-top: 24px;
        padding-bottom: 18px;
        padding-right: 16px;
        padding-left: 16px;
      }

      .program-page-map .program-hero-map {
        width: 100%;
        max-width: min(358px, 100%);
        margin-right: auto;
        margin-left: auto;
      }

      .program-page-note,
      .program-hero-map,
      .program-entry-card {
        width: 100%;
        max-width: min(358px, 100%);
        min-width: 0;
        box-sizing: border-box;
        padding: 14px;
      }

      .map-steps {
        gap: 10px;
        margin-top: 0;
        padding: 10px;
      }

      .map-steps li {
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 12px;
        min-height: 0;
        padding: 14px 12px;
      }

      .map-steps li.map-school {
        grid-template-columns: 42px minmax(0, 1fr);
        min-height: 0;
        padding: 16px 12px;
      }

      .map-steps::before {
        top: 30px;
        bottom: 30px;
        left: 31px;
      }

      .map-steps li span {
        width: 38px;
        height: 38px;
        font-size: 18px;
      }

      .map-steps li.map-school span {
        width: 42px;
        height: 42px;
        font-size: 20px;
      }

      .map-steps li strong {
        font-size: 22px;
        overflow-wrap: break-word;
      }

      .map-steps li.map-school strong {
        font-size: 25px;
      }

      .map-steps li p {
        margin-top: 9px;
        font-size: 12.8px;
      }

      .map-steps li.map-school p {
        font-size: 12.8px;
      }

      .program-volume-map {
        width: 100%;
        max-width: calc(100vw - 32px);
        padding: 13px;
        overflow: hidden;
      }

      .program-volume-map::before {
        inset: 12px 12px 12px auto;
        width: 38%;
      }

      .program-volume-map::after {
        right: 18px;
        left: 18px;
        height: 54px;
      }

      .school-volume {
        gap: 11px;
        padding: 10px;
      }

      .school-volume::before {
        top: 32px;
        bottom: 32px;
        left: 31px;
      }

      .school-volume::after,
      .volume-school::before {
        display: none;
      }

      .volume-node,
      .volume-school {
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 12px;
        min-height: 0;
        margin: 0;
        padding: 14px 12px;
      }

      .volume-school {
        grid-template-columns: 1fr;
        padding: 16px 12px;
      }

      .school-top {
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 12px;
      }

      .volume-number {
        width: 38px;
        height: 38px;
        font-size: 18px;
      }

      .volume-node strong {
        font-size: 22px;
      }

      .volume-school strong {
        font-size: 23px;
        line-height: 0.98;
        overflow-wrap: break-word;
      }

      .volume-node p,
      .volume-school p {
        margin-top: 9px;
        font-size: 12.8px;
        line-height: 1.45;
      }

      .school-regalia,
      .school-tools {
        margin-left: 50px;
      }

      .school-regalia {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        margin-top: 14px;
      }

      .school-regalia span {
        min-width: 0;
        padding: 7px 8px;
        font-size: 10px;
        text-align: center;
      }

      .program-building-map {
        width: 100%;
        max-width: calc(100vw - 32px);
        padding: 14px;
        overflow: hidden;
      }

      .program-building-map::before {
        inset: 12px;
      }

      .program-building-map::after {
        right: 18px;
        left: 18px;
        height: 58px;
      }

      .school-building {
        min-height: 760px;
        perspective: none;
      }

      .school-building::before {
        inset: 24px 0 0;
      }

      .school-building::after {
        right: 6px;
        bottom: 18px;
        left: 6px;
        height: 54px;
        transform: skewX(-12deg);
      }

      .building-frame {
        top: 58px;
        right: 0;
        left: 0;
        min-height: 660px;
        transform: none;
      }

      .building-frame::before {
        display: none;
      }

      .building-frame::after {
        right: 14px;
        bottom: -32px;
        left: 38px;
        height: 32px;
        transform: skewX(-18deg);
      }

      .building-roof {
        top: -38px;
        right: 10px;
        left: 10px;
        height: 58px;
      }

      .building-roof span {
        padding: 0 18px;
        font-size: 9px;
        line-height: 1.35;
        text-align: center;
      }

      .building-sign {
        top: 42px;
        right: 12px;
        left: 12px;
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 12px;
        padding: 14px 12px;
      }

      .building-sign span,
      .building-entrance span,
      .building-exit span {
        width: 38px;
        height: 38px;
        font-size: 18px;
      }

      .building-sign strong {
        font-size: 23px;
      }

      .building-sign p,
      .building-entrance p,
      .building-exit p {
        margin-top: 8px;
        font-size: 12.8px;
      }

      .building-regalia {
        top: 190px;
        right: 22px;
        left: 66px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
      }

      .building-regalia span,
      .building-tools span {
        padding: 8px 7px;
        font-size: 9.5px;
      }

      .building-tools {
        right: 22px;
        bottom: 210px;
        left: 66px;
        gap: 6px;
      }

      .building-entrance,
      .building-exit {
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 12px;
        width: auto;
        right: 12px;
        left: 12px;
        padding: 14px 12px;
      }

      .building-entrance {
        bottom: 118px;
      }

      .building-exit {
        bottom: 22px;
      }

      .building-entrance strong,
      .building-exit strong {
        font-size: 22px;
      }

      .program-page-map .program-layer-school {
        max-width: calc(100vw - 32px);
      }

      .program-layer-school {
        padding: 18px 14px 22px;
      }

      .layer-school-head {
        display: block;
      }

      .layer-school-head strong {
        display: block;
        margin-top: 10px;
        font-size: 31px;
        text-align: left;
      }

      .school-render-stage {
        display: grid;
        gap: 8px;
        margin-top: 18px;
        padding: 8px;
      }

      .school-render-stage::before {
        opacity: 0.38;
      }

      .school-render-stage img {
        min-height: 0;
        border: 1px solid rgba(247, 244, 236, 0.12);
      }

      .school-render-label,
      .school-render-gate {
        position: relative;
        inset: auto;
        width: auto;
        max-width: none;
        backdrop-filter: blur(8px);
      }

      .school-render-label {
        padding: 10px 11px;
      }

      .school-render-label strong {
        font-size: 15px;
      }

      .school-render-label span {
        font-size: 19px;
      }

      .school-render-gate {
        padding: 12px;
      }

      .school-render-gate span {
        font-size: 23px;
      }

      .school-render-gate p {
        font-size: 12.5px;
      }

      .program-page-honest .program-page-note {
        width: 100%;
        max-width: min(358px, 100%);
        margin: 0;
      }

      .curriculum {
        margin-top: 44px;
        padding-top: 32px;
      }

      .program-entry-card h4 {
        max-width: 100%;
        font-size: 28px;
        overflow-wrap: break-word;
      }

      .program-entry-card p {
        max-width: 100%;
        font-size: 14.5px;
        overflow-wrap: break-word;
      }

      .program-entry-actions,
      .program-entry-actions .button {
        width: 100%;
        max-width: 100%;
      }

      .program-entry-actions .button {
        min-height: 48px;
        padding: 13px 16px;
        font-size: 12.5px;
      }

      .statement p {
        font-size: 26px;
        max-width: 330px;
        overflow-wrap: break-word;
      }

      .module h3 {
        font-size: 32px;
        max-width: 310px;
      }

      .module-copy {
        padding-left: 16px;
      }

      .module p {
        max-width: 310px;
        font-size: 15px;
      }

      .module li {
        max-width: 310px;
        font-size: 13px;
      }

      .module.module-foundation .module-copy h3,
      .module.module-foundation p,
      .module.module-foundation li {
        max-width: 100%;
      }

      .curriculum {
        margin-top: 46px;
        padding-top: 34px;
      }

      .curriculum-head h3 {
        font-size: 32px;
        line-height: 0.96;
        max-width: 330px;
      }

      .curriculum-head p {
        max-width: 330px;
      }

      .curriculum,
      .program-overview,
      .program-intro,
      .program-promise,
      .program-stat,
      .program-block-grid,
      .program-block,
      .week-grid,
      .week-card,
      .result-card-grid,
      .result-card,
      .artifact-strip,
      .corporate-note,
      .track-grid,
      .track-card {
        width: 100%;
        max-width: 358px;
        min-width: 0;
      }

      .program-promise,
      .program-stat,
      .program-block,
      .week-card,
      .result-card,
      .artifact-strip,
      .corporate-note {
        padding: 18px;
      }

      .program-promise p {
        max-width: 100%;
        font-size: 14.5px;
      }

      .program-school-house {
        min-height: 190px;
        margin: 16px -12px -8px;
      }

      .program-school-house img {
        width: 118%;
        max-height: 240px;
      }

      .program-stat strong {
        font-size: 40px;
      }

      .program-stat span,
      .program-block h4,
      .program-block p,
      .week-card h5,
      .week-card p,
      .result-card h4,
      .result-card p,
      .result-chip,
      .artifact-strip h4,
      .artifact-strip p,
      .artifact-list li {
        max-width: 100%;
        overflow-wrap: break-word;
      }

      .program-block {
        min-height: 0;
      }

      .artifact-strip h4 {
        font-size: 28px;
      }

      .result-card {
        min-height: 0;
        gap: 18px;
      }

      .result-card h4 {
        font-size: 31px;
      }

      .result-card p {
        font-size: 14px;
      }

      .result-chip-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
      }

      .result-chip {
        width: 100%;
        min-height: 44px;
        padding: 11px 12px;
      }

      .result-popover {
        right: 16px;
        bottom: calc(18px + env(safe-area-inset-bottom));
        left: 16px !important;
        top: auto !important;
        width: auto;
      }

      .corporate-note {
        min-height: 0;
        gap: 18px;
      }

      .corporate-note h4 {
        font-size: 28px;
      }

      .corporate-note p,
      .mentor-points li {
        font-size: 14px;
      }

      .corporate-note .button {
        max-width: 100%;
      }

      .program-block h4 {
        font-size: 24px;
      }

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

      .week-card {
        min-height: 0;
      }

      .track-card h4,
      .cycle-card h4 {
        font-size: 30px;
        max-width: 300px;
      }

      .track-card {
        min-height: 0;
        padding: 20px;
        overflow: visible;
      }

      .track-card p,
      .track-card li,
      .track-result span,
      .cycle-card p {
        max-width: none;
      }

      .track-actions .button {
        width: 100%;
        min-width: 0;
        padding-right: 12px;
        padding-left: 12px;
        white-space: normal;
      }

      .program-dialog {
        width: 100%;
        max-height: calc(100vh - 116px);
        padding: 22px 16px 18px;
      }

      .program-modal {
        padding: 12px;
      }

      .program-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        z-index: 3;
        background: rgba(8, 9, 13, 0.92);
      }

      .program-dialog h3 {
        max-width: calc(100% - 44px);
        padding-right: 44px;
        font-size: 34px;
      }

      .program-dialog .copy {
        max-width: none;
      }

      .program-detail-grid {
        grid-template-columns: 1fr;
      }

      .program-detail h4 {
        font-size: 25px;
      }

      .program-detail p,
      .program-detail li {
        max-width: none;
      }

      .program-modal-actions {
        flex-direction: column;
      }

      .format-grid .panel {
        overflow: hidden;
      }

      .format-grid .panel h3,
      .format-grid .panel p,
      .format-grid .panel strong {
        max-width: 300px;
        overflow-wrap: break-word;
      }

      .actions {
        flex-direction: column;
      }

      .button {
        width: 100%;
      }
    }

@media (max-width: 1020px) {
      .telegram-hero,
      .telegram-cta {
        grid-template-columns: 1fr;
      }

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

@media (max-width: 720px) {
      .telegram-hero {
        min-height: auto;
        gap: 28px;
        padding-top: 34px;
      }

      .telegram-hero-copy h1 {
        max-width: 350px;
        font-size: var(--offer-hero-size);
        line-height: var(--offer-line-height);
      }

      .telegram-hero-copy .lead {
        max-width: 340px;
        font-size: 17px;
      }

      .telegram-video-card,
      .telegram-panel,
      .telegram-path article,
      .telegram-cta {
        padding: 18px;
      }

      .telegram-video-frame {
        width: min(100%, 288px);
      }

      .telegram-video-caption b {
        font-size: 18px;
      }

      .telegram-section-head h2,
      .telegram-cta h2 {
        max-width: 350px;
        font-size: var(--offer-section-size);
        line-height: var(--offer-line-height);
      }

      .telegram-cta-side {
        gap: 12px;
      }

      .telegram-channel-card {
        min-height: 82px;
        padding: 14px;
        border-radius: 20px;
      }

      .telegram-channel-card img {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
      }

      .telegram-channel-card b {
        font-size: 21px;
      }

      .telegram-rhythm-grid,
      .telegram-post-grid,
      .telegram-path {
        grid-template-columns: 1fr;
      }

      .telegram-panel {
        min-height: 0;
      }

      .telegram-panel h3,
      .telegram-post-card h3,
      .telegram-path h3 {
        font-size: 28px;
      }

      .telegram-post-card {
        min-height: 0;
      }

      .telegram-post-card img {
        height: 260px;
      }

      .telegram-message-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding: 16px 18px 12px;
      }

      .telegram-message-head span {
        text-align: left;
      }

      .telegram-message-body {
        padding: 18px 18px 14px;
      }

      .telegram-message-body h3 {
        font-size: 31px;
      }

      .telegram-message-body p {
        font-size: 16px;
      }

      .telegram-message-meta {
        padding: 0 18px 18px;
        font-size: 15px;
      }

      .about-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: auto;
        padding-top: 36px;
        padding-bottom: 46px;
      }

      .about-hero-copy h1 {
        max-width: 350px;
        font-size: var(--offer-hero-size);
        line-height: var(--offer-line-height);
      }

      .about-hero-copy .lead {
        max-width: 340px;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.5;
      }

      .about-proof-row {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 340px;
      }

      .about-hero-media {
        min-height: 0;
      }

      .about-hero-media img {
        min-height: 0;
        aspect-ratio: 4 / 5;
        object-position: center;
      }

      .about-section {
        padding-top: 54px;
      }

      .about-proof-grid,
      .about-role-grid,
      .about-win-grid,
      .about-position,
      .about-entry-grid {
        grid-template-columns: 1fr;
      }

      .about-photo-grid {
        column-count: 1;
      }

      .about-proof-card,
      .about-role-card,
      .about-win-card,
      .about-entry-card {
        min-height: 0;
      }

      .about-role-card-featured {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .about-role-media {
        min-height: 0;
        margin: 0;
      }

      .about-role-media img {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
      }

      .about-proof-card h3,
      .about-entry-card h3 {
        font-size: 28px;
      }

      .about-photo-card,
      .about-photo-card-large {
        grid-column: auto;
        min-height: 0;
      }

      .about-photo-lightbox {
        padding: 12px;
      }

      .about-photo-lightbox figure {
        width: 100%;
        max-height: 88vh;
      }

      .about-photo-lightbox img {
        max-height: 72vh;
      }

      .about-photo-lightbox figcaption {
        padding: 12px 14px;
      }

      .about-position {
        gap: 24px;
        padding: 24px;
      }

      .about-position h2 {
        max-width: 350px;
        font-size: var(--offer-section-size);
        line-height: var(--offer-line-height);
      }

      .about-position .lead {
        max-width: 340px;
        font-size: 16px;
      }

      .about-entry-card .button {
        width: 100%;
      }
    }

@media (min-width: 721px) and (max-width: 1120px) {
      .about-hero,
      .about-position {
        grid-template-columns: 1fr;
      }

      .about-proof-grid,
      .about-role-grid,
      .about-win-grid,
      .about-entry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .about-role-card-featured {
        grid-column: span 2;
      }

      .about-photo-grid {
        column-count: 2;
      }

      .about-photo-card-large {
        grid-column: auto;
      }
    }

@media (max-width: 720px) {
      .module.module-foundation,
      .module.module-foundation:nth-child(even) {
        gap: 18px;
        padding: 18px 16px 20px;
        margin-bottom: 42px;
        background:
          radial-gradient(circle at 100% 0%, rgba(245, 50, 47, 0.18), transparent 34%),
          linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
      }

      .module.module-foundation::after {
        left: 22px;
        bottom: -30px;
        height: 30px;
      }

      .module.module-foundation .module-copy {
        order: -1;
        padding-left: 0;
        border-left: 0;
      }

      .module.module-foundation .module-kicker {
        font-size: 11px;
      }

      .module.module-foundation .module-copy h3 {
        max-width: 280px;
        font-size: clamp(42px, 14vw, 56px);
        line-height: 0.9;
      }

      .module.module-foundation p {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.42;
      }

      .module.module-foundation ul {
        display: grid;
        gap: 8px;
        max-width: 100%;
        padding-left: 0;
        list-style: none;
      }

      .module.module-foundation li {
        max-width: 100%;
        padding-left: 12px;
        border-left: 1px solid rgba(245, 50, 47, 0.44);
        font-size: 12.5px;
        line-height: 1.35;
      }

      .module.module-foundation .banner-frame {
        max-width: 100%;
        border-width: 1px;
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
      }
    }

/* Unified offer fitting layer: keeps large selling lines readable on every page. */
.hero h1,
.audience-offer,
.responsibility-offer,
.section-head .program-foundation-title,
.program-page-hero h1,
.telegram-hero-copy h1,
.telegram-section-head h2,
.about-hero-copy h1,
.about-position h2 {
  max-width: 100%;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.hero-cover .hero-content {
  width: min(760px, calc(100vw - 48px));
  max-width: none;
}

.hero-cover h1 {
  width: 100%;
  font-size: 56px;
  line-height: 0.96;
}

.audience-offer,
.responsibility-offer,
.program-page-hero h1,
.telegram-hero-copy h1,
.telegram-section-head h2,
.about-hero-copy h1,
.about-position h2 {
  font-size: 56px;
  line-height: 0.96;
}

.section-head .program-foundation-title {
  font-size: 42px;
  line-height: 1.02;
}

@media (max-width: 1280px) {
  .hero-cover .hero-content {
    width: min(660px, calc(100vw - 40px));
  }

  .hero-cover h1 {
    font-size: 48px;
    line-height: 0.98;
  }

  .audience-offer,
  .responsibility-offer,
  .program-page-hero h1,
  .telegram-hero-copy h1,
  .telegram-section-head h2,
  .about-hero-copy h1,
  .about-position h2 {
    font-size: 50px;
    line-height: 0.98;
  }

  .section-head .program-foundation-title {
    font-size: 38px;
  }
}

@media (max-width: 980px) {
  .hero-cover .hero-content {
    width: min(560px, calc(100vw - 36px));
  }

  .hero-cover h1 {
    font-size: 40px;
    line-height: 1;
  }

  .audience-offer,
  .responsibility-offer,
  .program-page-hero h1,
  .telegram-hero-copy h1,
  .telegram-section-head h2,
  .about-hero-copy h1,
  .about-position h2 {
    font-size: 42px;
    line-height: 1;
  }

  .section-head .program-foundation-title {
    font-size: 34px;
  }
}

@media (max-width: 760px) {
  .hero-cover .hero-content {
    width: calc(100vw - 28px);
    margin-left: 14px;
    margin-right: 14px;
    padding-top: 28px;
    padding-bottom: 42px;
  }

  .hero-cover h1 {
    font-size: 34px;
    line-height: 1.02;
  }

  .audience-offer,
  .responsibility-offer,
  .program-page-hero h1,
  .telegram-hero-copy h1,
  .telegram-section-head h2,
  .about-hero-copy h1,
  .about-position h2 {
    font-size: 34px;
    line-height: 1.02;
  }

  .section-head .program-foundation-title {
    font-size: 30px;
    line-height: 1.05;
  }
}

@media (max-width: 430px) {
  .hero-cover h1 {
    font-size: 28px;
    line-height: 1.05;
  }

  .audience-offer,
  .responsibility-offer,
  .program-page-hero h1,
  .telegram-hero-copy h1,
  .telegram-section-head h2,
  .about-hero-copy h1,
  .about-position h2 {
    font-size: 29px;
    line-height: 1.05;
  }

  .section-head .program-foundation-title {
    font-size: 27px;
  }
}

@media (max-width: 370px) {
  .hero-cover h1 {
    font-size: 26px;
  }

  .audience-offer,
  .responsibility-offer,
  .program-page-hero h1,
  .telegram-hero-copy h1,
  .telegram-section-head h2,
  .about-hero-copy h1,
  .about-position h2 {
    font-size: 27px;
  }
}

/* Final offer fit pass: keeps the big selling lines readable and inside their zones. */
.hero-cover .hero-content {
  width: min(540px, 42vw);
  max-width: 540px;
  margin-left: max(32px, calc((100vw - 1360px) / 2 + 32px));
}

.hero-cover .hero-content h1 {
  max-width: 540px;
  font-size: 46px;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-cover .lead {
  max-width: 520px;
}

.audience-offer,
.responsibility-offer {
  max-width: 820px;
  font-size: 48px;
  line-height: 0.98;
}

.program-page-hero h1,
.telegram-hero-copy h1,
.telegram-section-head h2,
.about-hero-copy h1,
.about-position h2 {
  max-width: 980px;
  font-size: 50px;
  line-height: 0.98;
}

.section-head .program-foundation-title {
  max-width: 860px;
  font-size: 40px;
  line-height: 1.02;
}

@media (max-width: 1280px) {
  .hero-cover .hero-content {
    width: min(500px, 42vw);
    max-width: 500px;
    margin-left: 24px;
  }

  .hero-cover .hero-content h1 {
    max-width: 500px;
    font-size: 40px;
    line-height: 0.98;
  }

  .audience-offer,
  .responsibility-offer {
    font-size: 42px;
    line-height: 1;
  }

  .program-page-hero h1,
  .telegram-hero-copy h1,
  .telegram-section-head h2,
  .about-hero-copy h1,
  .about-position h2 {
    font-size: 44px;
    line-height: 1;
  }

  .section-head .program-foundation-title {
    font-size: 36px;
  }
}

@media (max-width: 980px) {
  .hero-cover .hero-content {
    width: min(440px, 50vw);
    max-width: 440px;
  }

  .hero-cover .hero-content h1 {
    max-width: 440px;
    font-size: 34px;
    line-height: 1;
  }

  .audience-offer,
  .responsibility-offer,
  .program-page-hero h1,
  .telegram-hero-copy h1,
  .telegram-section-head h2,
  .about-hero-copy h1,
  .about-position h2 {
    font-size: 36px;
    line-height: 1.02;
  }

  .section-head .program-foundation-title {
    font-size: 31px;
  }
}

@media (max-width: 760px) {
  .hero-cover .hero-content {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-cover .hero-content h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.02;
  }

  .audience-offer,
  .responsibility-offer,
  .program-page-hero h1,
  .telegram-hero-copy h1,
  .telegram-section-head h2,
  .about-hero-copy h1,
  .about-position h2 {
    font-size: 29px;
    line-height: 1.04;
  }

  .section-head .program-foundation-title {
    font-size: 26px;
    line-height: 1.05;
  }
}

@media (max-width: 430px) {
  .hero-cover .hero-content {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-cover .hero-content h1 {
    font-size: 24px;
    line-height: 1.04;
  }

  .audience-offer,
  .responsibility-offer,
  .program-page-hero h1,
  .telegram-hero-copy h1,
  .telegram-section-head h2,
  .about-hero-copy h1,
  .about-position h2 {
    font-size: 24px;
    line-height: 1.05;
  }

  .section-head .program-foundation-title {
    font-size: 22px;
  }
}

@media (max-width: 370px) {
  .hero-cover .hero-content h1,
  .audience-offer,
  .responsibility-offer,
  .program-page-hero h1,
  .telegram-hero-copy h1,
  .telegram-section-head h2,
  .about-hero-copy h1,
  .about-position h2 {
    font-size: 22px;
  }
}

/* Offer fit lock v3: layout-only, no text changes. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.offer-split,
.offer-split > *,
.program-page-hero,
.telegram-hero-copy,
.about-hero-copy,
.hero-cover .hero-content,
.hero-cover .shell {
  min-width: 0;
}

.hero-cover .hero-content {
  box-sizing: border-box;
  width: min(620px, 46vw);
  max-width: calc(100vw - 56px);
}

.hero-cover .hero-content h1,
.audience-offer,
.responsibility-offer,
.program-page-hero h1,
.telegram-hero-copy h1,
.telegram-section-head h2,
.about-hero-copy h1,
.about-position h2,
.section-head .program-foundation-title {
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-cover .hero-content h1 {
  max-width: 620px;
  font-size: clamp(32px, 3.65vw, 50px);
  line-height: 1.03;
}

.audience-offer,
.responsibility-offer {
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.95;
}

.program-page-hero h1,
.telegram-hero-copy h1,
.telegram-section-head h2,
.about-hero-copy h1,
.about-position h2 {
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: 0.96;
}

@media (max-width: 1280px) {
  .hero-cover .hero-content {
    width: min(520px, 44vw);
    max-width: 520px;
    margin-left: 20px;
  }

  .hero-cover .hero-content h1 {
    max-width: 520px;
    font-size: clamp(27px, 3.05vw, 36px);
    line-height: 1.05;
  }

  .audience-offer,
  .responsibility-offer {
    font-size: clamp(38px, 5.45vw, 68px);
  }

  .program-page-hero h1,
  .telegram-hero-copy h1,
  .telegram-section-head h2,
  .about-hero-copy h1,
  .about-position h2 {
    font-size: clamp(34px, 4.45vw, 58px);
  }
}

@media (max-width: 980px) {
  .hero-cover .hero-content {
    width: min(500px, 58vw);
    max-width: 500px;
  }

  .hero-cover .hero-content h1 {
    font-size: clamp(25px, 3.7vw, 32px);
  }

  .audience-offer,
  .responsibility-offer,
  .program-page-hero h1,
  .telegram-hero-copy h1,
  .telegram-section-head h2,
  .about-hero-copy h1,
  .about-position h2 {
    font-size: clamp(31px, 5vw, 44px);
    line-height: 1;
  }
}

@media (max-width: 760px) {
  .hero-cover .hero-content {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 12px;
  }

  .hero-cover .hero-content h1 {
    max-width: 100%;
    font-size: clamp(19px, 4.75vw, 23px);
    line-height: 1.1;
  }

  .audience-offer,
  .responsibility-offer,
  .program-page-hero h1,
  .telegram-hero-copy h1,
  .telegram-section-head h2,
  .about-hero-copy h1,
  .about-position h2 {
    max-width: 100%;
    font-size: clamp(22px, 6.25vw, 30px);
    line-height: 1.06;
  }

  .section-head .program-foundation-title {
    max-width: 100%;
    font-size: clamp(20px, 6vw, 27px);
    line-height: 1.08;
  }
}

@media (max-width: 430px) {
  .hero-cover .hero-content h1 {
    font-size: clamp(18px, 4.55vw, 20px);
  }

  .audience-offer,
  .responsibility-offer,
  .program-page-hero h1,
  .telegram-hero-copy h1,
  .telegram-section-head h2,
  .about-hero-copy h1,
  .about-position h2 {
    font-size: clamp(20px, 5.8vw, 25px);
  }
}

/* Mobile hero title fit lock: layout only, no text changes. */
@media (max-width: 760px) {
  .hero-cover .hero-content.shell {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-left: clamp(18px, 6vw, 34px) !important;
    padding-right: clamp(18px, 6vw, 34px) !important;
  }

  .hero-cover .hero-content h1 {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    font-size: clamp(30px, 8.4vw, 42px) !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }
}

@media (max-width: 430px) {
  .hero-cover .hero-content h1 {
    font-size: clamp(27px, 7.7vw, 33px) !important;
    line-height: 1 !important;
  }
}

@media (max-width: 370px) {
  .hero-cover .hero-content h1 {
    font-size: 27px !important;
  }
}

/* Final mobile/tablet lock: the main offer must never leave the screen. */
@media (max-width: 980px) {
  .hero-cover .hero-content.shell {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-left: clamp(16px, 5vw, 34px) !important;
    padding-right: clamp(16px, 5vw, 34px) !important;
  }

  .hero-cover .hero-content h1 {
    box-sizing: border-box !important;
    width: min(100%, calc(100vw - 32px)) !important;
    max-width: calc(100vw - 32px) !important;
    min-width: 0 !important;
    font-size: clamp(32px, 7vw, 54px) !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }
}

@media (max-width: 760px) {
  .hero-cover .hero-content h1 {
    font-size: clamp(30px, 7.2vw, 44px) !important;
  }
}

@media (max-width: 520px) {
  .hero-cover .hero-content h1 {
    font-size: clamp(26px, 7vw, 34px) !important;
    line-height: 1 !important;
  }
}


/* ===== hero-concept.css ===== */
/* Первая сцена новой концепции BOKOV.PRO. Остальные страницы не затрагивает. */

.top {
  border-bottom-color: rgba(213, 183, 145, 0.11);
  background: rgba(10, 9, 8, 0.9);
  backdrop-filter: blur(20px) saturate(120%);
}

.top-inner {
  min-height: 68px;
}

.logo {
  width: 130px;
}

.logo__tagline {
  display: none;
}

.concept-mobile-title {
  display: none;
}

.nav {
  gap: 24px;
}

.nav a,
.nav a[aria-current="page"] {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 8px 0;
  color: rgba(247, 244, 236, 0.62);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: #d5b791;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
}

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

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.concept-hero {
  --concept-paper: #d4b38d;
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 68px);
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 86% 4%, rgba(218, 176, 125, 0.2), transparent 26%),
    radial-gradient(circle at 52% 56%, rgba(88, 67, 48, 0.22), transparent 36%),
    linear-gradient(112deg, #080807 0%, #13110e 49%, #090908 100%);
}

.concept-hero::before {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    repeating-radial-gradient(circle at 18% 23%, transparent 0 1px, rgba(255, 255, 255, 0.16) 1px 1.25px, transparent 1.25px 4px);
  background-size: 7px 9px;
  mix-blend-mode: soft-light;
}

.concept-hero::after {
  content: "";
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 4, 0.52));
}

.concept-hero__glow {
  position: absolute;
  z-index: 0;
  top: -14%;
  right: 4%;
  width: min(38vw, 560px);
  height: 78%;
  opacity: 0.5;
  background: linear-gradient(164deg, rgba(232, 201, 163, 0.68), rgba(167, 120, 73, 0.08) 45%, transparent 72%);
  filter: blur(42px);
  clip-path: polygon(68% 0, 100% 0, 64% 100%, 0 100%);
  pointer-events: none;
}

.concept-hero__topline,
.concept-hero__bottomline {
  position: absolute;
  z-index: 6;
  left: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateX(-50%);
}

.concept-hero__topline {
  top: 12px;
  align-items: flex-start;
}

.concept-hero__intro,
.concept-hero__identity,
.concept-hero__statement {
  margin: 0;
}

.concept-hero__intro {
  font-family: var(--display);
  color: var(--concept-paper);
  font-size: clamp(30px, 3.2vw, 54px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.concept-hero__identity {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-left: auto;
  padding-top: 2px;
  text-align: center;
  text-transform: uppercase;
}

.concept-hero__identity strong {
  font-family: var(--display);
  color: var(--concept-paper);
  font-size: clamp(20px, 2vw, 32px);
  line-height: 0.9;
  letter-spacing: 0.08em;
}

.concept-hero__identity-logo {
  width: clamp(190px, 19vw, 280px);
  height: auto;
}

.concept-hero__identity span {
  color: rgba(247, 244, 236, 0.58);
  font-size: clamp(8px, 0.7vw, 11px);
  font-weight: 800;
  letter-spacing: 0.13em;
}

.concept-hero__tagline--mobile {
  display: none;
}

.concept-hero__word {
  position: absolute;
  z-index: 1;
  top: 22%;
  left: 50%;
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--concept-paper);
  font-family: var(--display);
  font-size: clamp(108px, 14.4vw, 272px);
  font-weight: 700;
  line-height: 0.72;
  letter-spacing: -0.064em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%) scaleY(1.26);
  transform-origin: center;
  text-shadow: 0 20px 80px rgba(0, 0, 0, 0.18);
}

.concept-hero__portrait {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -6.5%;
  width: auto;
  max-width: none;
  height: 99%;
  transform: translateX(-50%);
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.34));
  pointer-events: none;
  user-select: none;
}

.concept-hero__collage {
  position: absolute;
  z-index: 3;
  top: 43%;
  right: max(22px, 3.4vw);
  width: min(18vw, 280px);
  height: 42%;
  pointer-events: none;
}

.concept-hero__collage::before,
.concept-hero__collage::after {
  content: "";
  position: absolute;
  z-index: 0;
  background: #b88f64;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.concept-hero__collage::before {
  top: 3%;
  left: -2%;
  width: 63%;
  height: 66%;
  transform: rotate(-10deg);
}

.concept-hero__collage::after {
  right: -2%;
  bottom: 6%;
  width: 48%;
  height: 43%;
  background: #74553b;
  transform: rotate(8deg);
}

.concept-hero__collage--left {
  top: 41%;
  right: auto;
  left: max(22px, 3.4vw);
  width: min(21vw, 330px);
  height: 46%;
}

.concept-hero__collage--left::before,
.concept-hero__collage--left::after {
  display: none;
}

.concept-hero__collage--left .concept-photo {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: #f3eee3;
  padding: 3px;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.34),
    0 3px 8px rgba(0, 0, 0, 0.2);
}

.concept-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #f0e9dc;
  padding: 7px 7px 26px;
  box-shadow:
    0 26px 54px rgba(0, 0, 0, 0.46),
    0 5px 12px rgba(0, 0, 0, 0.28);
  transform-origin: center;
}

.concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.concept-photo--car {
  z-index: 1;
  top: 1%;
  left: 0;
  width: 64%;
  height: 68%;
  transform: rotate(-7deg);
}

.concept-photo--car img {
  object-position: 50% 43%;
}

.concept-photo--hoodie {
  z-index: 3;
  top: 17%;
  right: 0;
  width: 58%;
  height: 49%;
  transform: rotate(5deg);
}

.concept-photo--hoodie img {
  object-position: 50% 28%;
}

.concept-photo--office {
  z-index: 4;
  right: 11%;
  bottom: 0;
  width: 51%;
  height: 47%;
  transform: rotate(-3deg);
}

.concept-photo--office img {
  object-position: 50% 30%;
}

.concept-photo--brabus-team {
  z-index: 2;
  top: 0;
  left: 0;
  width: 62%;
  height: auto;
  aspect-ratio: 4 / 3;
  transform: rotate(-3deg);
}

.concept-photo--brabus-team img {
  object-position: 50% 52%;
}

.concept-photo--strategy {
  z-index: 4;
  top: 28%;
  right: 0;
  width: 32%;
  height: auto;
  aspect-ratio: 3 / 4;
  transform: rotate(4deg);
}

.concept-photo--strategy img {
  object-position: 50% 50%;
}

.concept-photo--technorum {
  z-index: 3;
  bottom: 0;
  left: 6%;
  width: 60%;
  height: auto;
  aspect-ratio: 3 / 2;
  transform: rotate(2deg);
}

.concept-photo--technorum img {
  object-position: 50% 48%;
}

.concept-hero__bottomline {
  bottom: clamp(22px, 3.4vh, 38px);
  align-items: flex-end;
  gap: 28px;
}

.concept-hero__statement {
  max-width: 390px;
  color: rgba(247, 244, 236, 0.72);
  font-family: var(--display);
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.concept-hero__statement::before {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--concept-paper);
}

.concept-hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(247, 244, 236, 0.65);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.concept-hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.concept-hero__waiting {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(213, 183, 145, 0.36);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--concept-paper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.concept-hero__waiting:hover {
  border-color: var(--concept-paper);
  background: var(--concept-paper);
  color: #0a0908;
}

.concept-hero__scroll:hover {
  color: #fff;
}

.concept-hero__scroll-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(213, 183, 145, 0.36);
  border-radius: 50%;
  color: var(--concept-paper);
  font-size: 17px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.concept-hero__scroll:hover .concept-hero__scroll-mark {
  border-color: var(--concept-paper);
  transform: translateY(3px);
}

.concept-hero__directions,
.concept-hero__directions-panel {
  display: none;
}

@media (min-width: 981px) {
  .concept-hero__identity {
    display: none;
  }

  .concept-hero__bottomline {
    top: clamp(28px, 4vh, 44px);
    bottom: clamp(22px, 3.4vh, 38px);
    justify-content: center;
    align-items: flex-start;
    pointer-events: none;
  }

  .concept-hero__statement {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(calc(100vw - 64px), 1180px);
    max-width: none;
    text-align: center;
    white-space: nowrap;
    transform: translateX(-50%);
  }

  .concept-hero__statement::before {
    display: none;
  }

  .concept-hero__directions-panel {
    position: absolute;
    z-index: 8;
    top: 45%;
    left: clamp(28px, 5vw, 80px);
    display: grid;
    width: min(34vw, 460px);
    pointer-events: auto;
  }

  .concept-hero__directions {
    display: grid;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .concept-hero__directions li {
    position: relative;
    display: grid;
    grid-template-columns: clamp(32px, 2.8vw, 46px) minmax(0, 1fr);
    align-items: baseline;
    gap: clamp(8px, 1vw, 16px);
    padding: clamp(9px, 1.15vh, 14px) 0;
  }

  .concept-hero__directions li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: min(78%, 380px);
    height: 1px;
    background: rgba(213, 183, 145, 0.18);
  }

  .concept-hero__directions li:first-child {
    padding-top: 0;
  }

  .concept-hero__direction-number {
    color: var(--concept-paper);
    font-family: var(--display);
    font-size: clamp(12px, 0.9vw, 15px);
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .concept-hero__directions p {
    min-width: 0;
    margin: 0;
    color: rgba(247, 244, 236, 0.62);
    font-size: clamp(11px, 0.88vw, 14px);
    font-weight: 400;
    line-height: 1.38;
  }

  .concept-hero__directions strong {
    display: block;
    max-width: 100%;
    color: rgba(247, 244, 236, 0.94);
    font-family: var(--display);
    font-size: clamp(14px, 1.08vw, 18px);
    font-weight: 700;
    letter-spacing: 0.025em;
  }

  .concept-hero__directions p > span {
    display: block;
    max-width: 100%;
    margin-top: 3px;
    overflow-wrap: break-word;
  }

  .concept-hero__directions-actions {
    display: grid;
    justify-items: start;
    gap: 10px;
    margin-top: clamp(16px, 2vh, 24px);
    padding-left: clamp(40px, 3.8vw, 62px);
  }

  .concept-hero__directions-actions a {
    z-index: 1;
    pointer-events: auto;
  }

  .concept-hero__waiting--gold {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 52px;
    border-color: var(--concept-paper);
    padding: 0 clamp(24px, 2vw, 34px);
    background: var(--concept-paper);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    color: #0a0908;
    font-size: clamp(10px, 0.85vw, 13px);
  }

  .concept-hero__waiting--gold:hover {
    border-color: #ead0ae;
    background: #ead0ae;
    color: #0a0908;
  }

  .concept-hero__directions-more {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 38px;
    border: 1px solid rgba(213, 183, 145, 0.26);
    border-radius: 999px;
    padding: 0 18px;
  }

  .concept-hero__waiting--gold::after,
  .concept-hero__directions-more::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -65%;
    left: -52%;
    width: 34%;
    height: 230%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.58),
      rgba(255, 255, 255, 0)
    );
    transform: skewX(-22deg) translateX(-180%);
    animation: concept-button-shine 4.4s ease-in-out infinite;
    pointer-events: none;
  }

  .concept-hero__directions-more::after {
    background: linear-gradient(
      90deg,
      rgba(213, 183, 145, 0),
      rgba(213, 183, 145, 0.42),
      rgba(213, 183, 145, 0)
    );
    animation-delay: 1.1s;
  }

  .concept-hero__actions {
    display: none;
  }
}

@keyframes concept-button-shine {
  0%,
  62% {
    transform: skewX(-22deg) translateX(-180%);
  }

  84%,
  100% {
    transform: skewX(-22deg) translateX(560%);
  }
}

@media (max-width: 980px) {
  .concept-hero__collage--left {
    display: none;
  }

  .concept-hero__word {
    top: 23%;
    font-size: clamp(86px, 15.2vw, 146px);
  }

  .concept-hero__portrait {
    bottom: -4%;
    height: 91%;
  }

  .concept-hero__collage {
    top: 23%;
    right: 1.5vw;
    width: min(31vw, 330px);
    height: 58%;
  }

  .concept-hero__statement {
    max-width: 300px;
  }
}

@media (max-width: 720px) {
  .top-inner {
    position: relative;
    justify-content: center;
    min-height: 58px;
  }

  .logo {
    position: absolute;
    top: 50%;
    right: auto;
    left: 50%;
    display: grid;
    width: clamp(110px, 31vw, 125px);
    margin: 0;
    gap: 3px;
    justify-items: center;
    transform: translate(-50%, -50%);
  }

  .logo img {
    width: 100%;
    height: auto;
  }

  .logo__tagline {
    display: block;
    width: 100%;
    color: rgba(247, 244, 236, 0.62);
    font-family: var(--body);
    font-size: clamp(6px, 1.65vw, 7.5px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: clamp(0.12em, 0.5vw, 0.2em);
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .concept-mobile-title {
    display: block;
    color: var(--concept-paper, #d4b38d);
    font-family: var(--display);
    font-size: clamp(26px, 8.4vw, 34px);
    font-weight: 700;
    line-height: 0.72;
    letter-spacing: -0.064em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    transform: scaleY(1.26);
    transform-origin: center;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  }

  .concept-hero {
    --concept-mobile-copy-gap: clamp(24px, 6vw, 34px);
    --concept-mobile-portrait-top: clamp(148px, 21svh, 182px);
    min-height: calc(100svh - 58px);
  }

  .concept-hero::after {
    z-index: 3;
    width: 100%;
    height: 62%;
    background: linear-gradient(
      180deg,
      rgba(5, 5, 4, 0) 0%,
      rgba(5, 5, 4, 0.16) 22%,
      rgba(5, 5, 4, 0.78) 51%,
      rgba(5, 5, 4, 0.97) 78%,
      #080807 100%
    );
  }

  .concept-hero__topline,
  .concept-hero__bottomline {
    width: calc(100vw - 36px);
  }

  .concept-hero__topline {
    display: none;
  }

  .concept-hero__intro {
    font-size: clamp(23px, 7vw, 30px);
  }

  .concept-hero__identity {
    justify-items: center;
    gap: 6px;
  }

  .concept-hero__identity strong {
    max-width: 155px;
    font-size: clamp(16px, 4.7vw, 21px);
    letter-spacing: 0.05em;
  }

  .concept-hero__identity-logo {
    width: clamp(145px, 40vw, 180px);
  }

  .concept-hero__identity span {
    max-width: 150px;
    font-size: 7px;
    line-height: 1.4;
  }

  .concept-hero__tagline--desktop {
    display: none;
  }

  .concept-hero__tagline--mobile {
    display: block;
    width: 100%;
    max-width: none;
    font-size: 7px;
    line-height: 1;
    letter-spacing: 0.13em;
    text-align: center;
    white-space: nowrap;
  }

  .concept-hero__word {
    display: none;
  }

  .concept-hero__portrait {
    top: var(--concept-mobile-portrait-top);
    bottom: auto;
    width: auto;
    height: calc(100% - var(--concept-mobile-portrait-top) + 34px);
  }

  .concept-hero__collage {
    z-index: 5;
    top: 29%;
    right: -2%;
    width: min(42vw, 214px);
    height: 32%;
  }

  .concept-photo {
    padding: 4px 4px 15px;
    box-shadow:
      0 14px 28px rgba(0, 0, 0, 0.42),
      0 3px 7px rgba(0, 0, 0, 0.22);
  }

  .concept-hero__glow {
    top: -6%;
    right: -26%;
    width: 84vw;
    height: 68%;
    opacity: 0.42;
  }

  .concept-hero__bottomline {
    z-index: 8;
    top: 0;
    bottom: auto;
    display: flex;
    box-sizing: border-box;
    padding-top: clamp(18px, 2.8svh, 26px);
    flex-direction: column;
    align-items: center;
    gap: var(--concept-mobile-copy-gap);
  }

  .concept-hero__actions {
    display: none;
  }

  .concept-hero__waiting {
    min-height: 34px;
    padding: 0 13px;
    font-size: 8px;
  }

  .concept-hero__statement {
    width: 100%;
    max-width: min(92vw, 590px);
    margin: 0;
    color: rgba(247, 244, 236, 0.86);
    font-size: clamp(13px, 3.8vw, 16px);
    line-height: 1.12;
    letter-spacing: 0.02em;
    text-align: center;
  }

  .concept-hero__statement::before {
    display: none;
  }

  .concept-hero__directions-panel {
    position: absolute;
    z-index: 7;
    right: 16px;
    bottom: 72px;
    left: 16px;
    display: grid;
    gap: 9px;
    width: auto;
    transform: translateX(8px);
  }

  .concept-hero__directions {
    display: grid;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .concept-hero__directions li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: baseline;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 0;
  }

  .concept-hero__direction-number {
    color: var(--concept-paper);
    font-family: var(--display);
    font-size: clamp(12px, 3.7vw, 15px);
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .concept-hero__directions p {
    min-width: 0;
    margin: 0;
    color: rgba(247, 244, 236, 0.58);
    font-size: clamp(10px, 3vw, 12px);
    line-height: 1.2;
  }

  .concept-hero__directions strong {
    display: block;
    color: rgba(247, 244, 236, 0.96);
    font-family: var(--display);
    font-size: clamp(13px, 3.8vw, 16px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.02em;
  }

  .concept-hero__directions p > span {
    display: block;
    margin-top: 2px;
    overflow-wrap: break-word;
  }

  .concept-hero__directions-actions {
    order: -1;
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }

  .concept-hero__waiting--gold {
    position: relative;
    isolation: isolate;
    min-height: 43px;
    overflow: hidden;
    border-color: var(--concept-paper);
    background: var(--concept-paper);
    color: #0a0908;
    padding: 0 20px;
    font-size: 9px;
  }

  .concept-hero__waiting--gold::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -65%;
    bottom: -65%;
    left: -48%;
    width: 34%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.78),
      rgba(255, 255, 255, 0)
    );
    transform: skewX(-22deg) translateX(-180%);
    animation: concept-button-shine 4.4s ease-in-out infinite;
    pointer-events: none;
  }

  .concept-hero__directions-more {
    display: none;
  }

  .concept-hero__scroll > span:first-child {
    display: none;
  }

  .concept-hero__scroll-mark {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 420px) {
  .concept-hero__word {
    top: 23%;
    font-size: clamp(51px, 15.5vw, 65px);
  }

  .concept-hero__portrait {
    top: var(--concept-mobile-portrait-top);
    bottom: auto;
    width: auto;
    height: calc(100% - var(--concept-mobile-portrait-top) + 34px);
  }

  .concept-hero__collage {
    top: 30%;
    right: -6%;
    width: 43vw;
    height: 31%;
  }

  .concept-hero__directions-panel {
    right: 12px;
    bottom: 68px;
    left: 12px;
  }

  .concept-hero__directions li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 7px;
    padding: 4px 0;
  }

  .concept-hero__waiting--gold {
    min-height: 40px;
    padding: 0 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .concept-hero__scroll,
  .concept-hero__scroll-mark,
  .concept-hero__waiting,
  .nav a::after {
    transition: none;
  }

  .concept-hero__waiting--gold::after,
  .concept-hero__directions-more::after {
    display: none;
    animation: none;
  }
}


/* ===== landing-story.css ===== */
.landing-kicker {
  display: block;
  margin-bottom: 18px;
  color: #d9b78e;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.landing-section-index {
  position: absolute;
  top: 42px;
  right: 0;
  color: rgba(217, 183, 142, .14);
  font-family: var(--display);
  font-size: clamp(84px, 10vw, 180px);
  font-weight: 700;
  line-height: .8;
  pointer-events: none;
}

.landing-book-banner {
  position: relative;
  padding: clamp(30px, 4.2vw, 68px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 183, 142, .08), transparent 48%),
    #070706;
}

.landing-book-banner__link {
  position: relative;
  z-index: 1;
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: clamp(20px, 2vw, 32px);
  isolation: isolate;
}

.landing-book-banner__link:focus-visible {
  outline: 3px solid rgba(217, 183, 142, .92);
  outline-offset: 6px;
}

.landing-book-banner__card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 183, 142, .28);
  border-radius: clamp(20px, 2vw, 32px);
  background: #eee9e2;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(255, 255, 255, .04) inset;
  isolation: isolate;
  transition: transform .24s ease, box-shadow .24s ease;
}

.landing-book-banner__link:hover .landing-book-banner__card {
  transform: translateY(-3px);
  box-shadow:
    0 36px 100px rgba(0, 0, 0, .56),
    0 0 0 1px rgba(255, 255, 255, .06) inset;
}

.landing-book-banner__card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, .14), transparent 24%, transparent 76%, rgba(217, 183, 142, .08));
  content: "";
  pointer-events: none;
}

.landing-book-banner__card img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-book-banner__mobile-action {
  display: none;
}

.landing-system {
  position: relative;
  box-sizing: border-box;
  min-height: calc(100svh - 78px);
  padding-top: clamp(82px, 9vw, 140px);
  padding-bottom: clamp(62px, 8vw, 110px);
}

.landing-system__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .6fr);
  gap: clamp(38px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 72px);
}

.landing-system__head h2,
.landing-leaders__copy h2,
.landing-mentor__copy h2,
.landing-about__head h2,
.landing-contact__copy h2 {
  margin: 0;
  color: #f5f0e6;
  font-family: var(--display);
  font-size: clamp(44px, 5.2vw, 86px);
  font-weight: 700;
  line-height: .93;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.landing-system__head > p,
.landing-leaders__copy > p,
.landing-mentor__copy > p,
.landing-contact__copy > p {
  margin: 0;
  color: rgba(245, 240, 230, .62);
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.58;
}

.landing-system__cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.landing-contour {
  position: relative;
  display: flex;
  width: 100%;
  min-height: clamp(270px, 31vw, 470px);
  padding: 18px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0;
  background-color: #0b0b0a;
  background-repeat: no-repeat;
  background-size: auto 100%;
  color: inherit;
  cursor: pointer;
  font: inherit;
  isolation: isolate;
  text-align: left;
  transition: transform .35s ease, border-color .35s ease;
}

.landing-contour::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 5, 5, .02) 0%, rgba(5, 5, 5, .02) 54%, rgba(5, 5, 5, .16) 70%, rgba(5, 5, 5, .88) 100%);
  content: "";
}

.landing-contour:hover {
  z-index: 2;
  border-color: rgba(255, 255, 255, .64);
  transform: translateY(-8px);
}

.landing-contour:focus-visible {
  z-index: 3;
  border-color: #f6f2e9;
  outline: 2px solid #f6f2e9;
  outline-offset: 3px;
}

.landing-contour > span {
  color: rgba(245, 240, 230, .72);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .72);
}

.landing-contour h3 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--display);
  max-width: 100%;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.02;
  overflow-wrap: normal;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .9);
}

.landing-contour--ideology { background-image: url("../images/bokov-pro-16x9-v3-banner-05.png?v=20260625-1205"); background-position: 77% 50%; }
.landing-contour--culture { background-image: url("../images/bokov-pro-16x9-v3-banner-06.png?v=20260625-1205"); background-position: 88% 50%; }
.landing-contour--system { background-image: url("../images/bokov-pro-16x9-v3-banner-02.png?v=20260625-1205"); background-position: 83% 50%; }
.landing-contour--personality { background-image: url("../images/bokov-pro-16x9-v3-banner-07.png?v=20260625-1205"); background-position: 88% 50%; }
.landing-contour--professional { background-image: url("../images/bokov-pro-16x9-v3-banner-08.png?v=20260625-1205"); background-position: 86% 50%; }

@media (min-width: 981px) {
  .landing-contour--personality {
    background-position: 80% 50%;
  }
}

@media (min-width: 981px) and (prefers-reduced-motion: no-preference) {
  .landing-system.is-contour-ready .landing-contour {
    opacity: 0;
    filter: blur(8px);
    transform: translateX(150px) scale(.96);
    transition: opacity .3s ease, filter .36s ease, transform .44s cubic-bezier(.18, .82, .22, 1), border-color .25s ease;
  }

  .landing-system.is-contour-ready.is-contour-visible .landing-contour {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) scale(1);
  }

  .landing-system.is-contour-ready.is-contour-visible .landing-contour:nth-child(1) { transition-delay: .00s; }
  .landing-system.is-contour-ready.is-contour-visible .landing-contour:nth-child(2) { transition-delay: .12s; }
  .landing-system.is-contour-ready.is-contour-visible .landing-contour:nth-child(3) { transition-delay: .24s; }
  .landing-system.is-contour-ready.is-contour-visible .landing-contour:nth-child(4) { transition-delay: .36s; }
  .landing-system.is-contour-ready.is-contour-visible .landing-contour:nth-child(5) { transition-delay: .48s; }

  .landing-system.is-contour-ready.is-contour-visible .landing-contour:hover {
    transform: translateY(-8px) scale(1);
    transition-delay: 0s;
  }
}

body.contour-modal-lock {
  overflow: hidden;
}

.landing-contour-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  padding: 24px;
  visibility: hidden;
  align-items: center;
  justify-items: center;
  opacity: 0;
  transition: visibility .28s ease, opacity .28s ease;
}

.landing-contour-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.landing-contour-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(8, 9, 11, .62);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.landing-contour-modal__dialog {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(100%, 1040px);
  max-height: min(86dvh, 820px);
  padding: clamp(34px, 5vw, 72px);
  overflow: auto;
  border: 1px solid rgba(20, 20, 20, .1);
  border-radius: 28px;
  color: #161616;
  background: #fbfaf7;
  box-shadow: 0 32px 100px rgba(0, 0, 0, .34);
  transform: translateY(24px) scale(.98);
  transition: transform .32s cubic-bezier(.2, .75, .25, 1);
}

.landing-contour-modal.is-open .landing-contour-modal__dialog {
  transform: translateY(0) scale(1);
}

.landing-contour-modal__dialog::before {
  display: none;
}

.landing-contour-modal__topline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 34px;
  color: rgba(22, 22, 22, .56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.landing-contour-modal__topline > span:first-child {
  color: #a94a40;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0;
}

.landing-contour-modal__close {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(22, 22, 22, .16);
  border-radius: 50%;
  place-items: center;
  color: #161616;
  background: #f1efe9;
  cursor: pointer;
  font: 300 32px/1 var(--body);
}

.landing-contour-modal__dialog > h2 {
  max-width: 880px;
  margin: 0 0 24px;
  color: #111;
  font-family: var(--display);
  font-size: clamp(44px, 5.6vw, 78px);
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.landing-contour-modal__lead {
  max-width: 780px;
  margin: 0;
  color: rgba(18, 18, 18, .7);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}

.landing-contour-modal__body {
  display: grid;
  margin-top: 42px;
  padding-top: 32px;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-top: 1px solid rgba(22, 22, 22, .12);
}

.landing-contour-modal__body > article {
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(22, 22, 22, .1);
  border-radius: 18px;
  background: #f5f3ee;
}

.landing-contour-modal__pain {
  background: #f7f3ee !important;
}

.landing-contour-modal__example {
  border-color: rgba(22, 22, 22, .1) !important;
}

.landing-contour-modal__body h3 {
  margin: 0 0 14px;
  color: #161616;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.landing-contour-modal__body p,
.landing-contour-modal__body li {
  color: rgba(18, 18, 18, .78);
  font-size: 15px;
  line-height: 1.62;
}

.landing-contour-modal__body p {
  margin: 0;
}

.landing-contour-modal__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-contour-modal__body li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid rgba(22, 22, 22, .1);
}

.landing-contour-modal__body li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 8px;
  height: 1px;
  background: #a94a40;
  content: "";
}

@media (min-width: 981px) {
  .landing-contour-modal {
    padding: 40px 16px;
  }

  .landing-contour-modal__dialog {
    width: min(94vw, 1540px);
    max-height: calc(100dvh - 80px);
    padding: clamp(24px, 2.8vh, 32px) clamp(34px, 3.4vw, 50px) clamp(26px, 3vh, 36px);
  }

  .landing-contour-modal__topline {
    margin-bottom: clamp(10px, 1.5vh, 18px);
    font-size: 10px;
  }

  .landing-contour-modal__topline > span:first-child {
    font-size: 18px;
  }

  .landing-contour-modal__close {
    width: 38px;
    height: 38px;
    font-size: 27px;
  }

  .landing-contour-modal__dialog > h2 {
    max-width: 1320px;
    margin-bottom: 12px;
    font-size: clamp(42px, 4.3vw, 64px);
    line-height: .9;
  }

  .landing-contour-modal__lead {
    width: min(52%, 760px);
    max-width: none;
    font-size: clamp(17px, 1.25vw, 20px);
    line-height: 1.48;
  }

  .landing-contour-modal__body {
    margin-top: clamp(14px, 2vh, 22px);
    padding-top: clamp(12px, 1.7vh, 18px);
    gap: 10px;
    border-top: 0;
  }

  .landing-contour-modal__body > article {
    padding: clamp(14px, 1.45vw, 20px);
    border-radius: 14px;
  }

  .landing-contour-modal__body h3 {
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: .11em;
  }

  .landing-contour-modal__body p,
  .landing-contour-modal__body li {
    font-size: clamp(13.5px, .92vw, 15.5px);
    line-height: 1.46;
  }

  .landing-contour-modal__body li {
    padding: 4px 0 4px 16px;
    border-bottom: 0;
  }

  .landing-contour-modal__body li::before {
    top: 12px;
    width: 7px;
  }
}

@media (min-width: 1180px) {
  .landing-contour-modal__body {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 981px) and (max-height: 800px) {
  .landing-contour-modal {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .landing-contour-modal__dialog {
    max-height: calc(100dvh - 56px);
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .landing-contour-modal__topline {
    margin-bottom: 8px;
  }

  .landing-contour-modal__dialog > h2 {
    margin-bottom: 8px;
    font-size: clamp(36px, 4vw, 54px);
  }

  .landing-contour-modal__lead {
    width: min(55%, 760px);
    font-size: 16px;
    line-height: 1.38;
  }

  .landing-contour-modal__body {
    margin-top: 12px;
    padding-top: 10px;
    gap: 8px;
  }

  .landing-contour-modal__body > article {
    padding: 11px 14px;
  }

  .landing-contour-modal__body p,
  .landing-contour-modal__body li {
    font-size: 13.25px;
    line-height: 1.36;
  }
}

.landing-telegram {
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(80px, 9vw, 136px);
}

.landing-telegram__eyebrow {
  display: flex;
  width: min(100%, 1080px);
  margin: 0 auto 18px;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
}

.landing-telegram__eyebrow span {
  color: #d9b78e;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.landing-telegram__eyebrow p {
  margin: 0;
  color: rgba(245, 240, 230, .46);
  font-size: 13px;
}

.landing-telegram__banner {
  position: relative;
  width: min(78vw, 1080px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(98, 156, 255, .34);
  border-radius: 14px;
  background: #07142d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .5), 0 0 42px rgba(35, 123, 255, .11);
}

.landing-telegram__banner img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-telegram__button-hit {
  position: absolute;
  top: 71.6%;
  left: 4.5%;
  width: 34.4%;
  height: 16.5%;
  overflow: hidden;
  border-radius: 24px;
  color: transparent;
  font-size: 0;
  text-decoration: none;
  transition: filter .25s ease, transform .25s ease;
}

.landing-telegram__button-hit::after {
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -36%;
  width: 24%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, .08) 25%, rgba(255, 255, 255, .82) 48%, rgba(255, 255, 255, .1) 72%, transparent 100%);
  content: "";
  filter: blur(1px);
  transform: skewX(-18deg);
  animation: landing-button-shine 3.2s ease-in-out infinite;
}

.landing-telegram__button-hit:hover,
.landing-telegram__button-hit:focus-visible {
  filter: brightness(1.14);
  outline: 2px solid rgba(255, 255, 255, .88);
  outline-offset: -3px;
  transform: translateY(-1px);
}

@keyframes landing-button-shine {
  0%, 36% { left: -36%; opacity: 0; }
  44% { opacity: 1; }
  68% { left: 118%; opacity: .9; }
  100% { left: 118%; opacity: 0; }
}

.landing-leaders {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(217, 183, 142, .15);
  border-bottom: 1px solid rgba(217, 183, 142, .15);
  background: #0a0908;
}

.landing-leaders__grid {
  position: relative;
  min-height: clamp(720px, calc(100svh - 72px), 920px);
}

.landing-leaders__visual {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  overflow: hidden;
  border: 0;
  background: #111;
  transform: translateX(-50%);
}

.landing-leaders__visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0a0908 0%, rgba(10, 9, 8, .995) 28%, rgba(10, 9, 8, .94) 43%, rgba(10, 9, 8, .6) 57%, rgba(10, 9, 8, .12) 72%, transparent 86%),
    linear-gradient(180deg, transparent 68%, rgba(10, 9, 8, .22) 100%);
  content: "";
}

.landing-leaders__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.landing-leaders__visual > span {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  color: #d9b78e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.landing-leaders__copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(47%, 760px);
  min-height: inherit;
  padding: clamp(38px, 4.2vh, 56px) 0;
  flex-direction: column;
  justify-content: center;
}

.landing-leaders__copy h2 {
  max-width: 740px;
  margin-bottom: 20px;
  font-size: clamp(40px, 3.35vw, 62px);
  line-height: .92;
}

.landing-leaders__copy > p {
  max-width: 650px;
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.48;
}

.landing-leaders__copy ul {
  margin: clamp(22px, 2.8vh, 30px) 0 clamp(22px, 2.8vh, 30px);
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(217, 183, 142, .2);
}

.landing-leaders__copy li {
  display: grid;
  padding: clamp(10px, 1.5vh, 14px) 0;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: baseline;
  border-bottom: 1px solid rgba(217, 183, 142, .2);
  gap: 12px;
  color: rgba(245, 240, 230, .62);
  font-size: clamp(14px, .95vw, 17px);
}

.landing-leaders__copy li strong {
  color: #f5f0e6;
}

.landing-button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  padding: 0 34px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.landing-button::after {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -38%;
  width: 20%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .72), transparent);
  content: "";
  transform: skewX(-20deg);
  animation: landing-button-shine 3.8s ease-in-out infinite;
}

.landing-button--gold {
  color: #100d09;
  background: #d9b78e;
  box-shadow: 0 14px 34px rgba(140, 92, 44, .18);
}

.landing-button--outline {
  border-color: rgba(217, 183, 142, .48);
  color: #d9b78e;
  background: rgba(217, 183, 142, .03);
}

.landing-leaders__actions {
  display: grid;
  width: min(100%, 520px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.landing-leaders__actions .landing-button {
  min-height: 46px;
  padding: 0 20px;
  font-size: 10px;
  letter-spacing: .08em;
  white-space: nowrap;
}

.landing-button:hover,
.landing-button:focus-visible {
  filter: brightness(1.08);
  outline: 2px solid rgba(255, 255, 255, .72);
  outline-offset: 3px;
}

.landing-mentor {
  position: relative;
  display: grid;
  min-height: calc(100svh - 78px);
  padding-top: clamp(54px, 6.4vh, 82px);
  padding-bottom: clamp(54px, 6.4vh, 82px);
  grid-template-columns: minmax(0, .96fr) minmax(380px, 1.04fr);
  gap: clamp(38px, 5vw, 80px);
  align-items: center;
}

.landing-mentor__copy {
  position: relative;
  z-index: 1;
}

.landing-mentor__copy h2 {
  max-width: 610px;
  margin-bottom: 28px;
  font-size: clamp(46px, 4.45vw, 72px);
}

.landing-mentor__copy p {
  max-width: 610px;
  margin-bottom: 34px;
}

.landing-mentor__cta {
  min-width: 276px;
  border: 0;
}

.landing-mentor__cta--mobile {
  display: none;
}

.landing-mentor__photo {
  position: relative;
  width: min(100%, 540px);
  max-height: min(72svh, 720px);
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  justify-self: end;
  border: 1px solid rgba(217, 183, 142, .32);
  background: #0d0e10;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
}

.landing-mentor__photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  content: "";
  pointer-events: none;
}

.landing-mentor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

body.direct-question-lock {
  overflow: hidden;
}

.direct-question {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  padding: 18px;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.direct-question.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.direct-question__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 5, 7, .74);
  backdrop-filter: blur(8px);
}

.direct-question__dialog {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(100%, 480px);
  max-height: calc(100dvh - 36px);
  padding: 28px;
  overflow: auto;
  border: 1px solid rgba(217, 183, 142, .38);
  border-radius: 22px;
  color: #f5f0e6;
  background: linear-gradient(155deg, rgba(31, 27, 22, .98), rgba(10, 11, 14, .99) 62%);
  box-shadow: 0 32px 110px rgba(0, 0, 0, .58);
  outline: none;
  transform: translateY(14px) scale(.985);
  transition: transform .22s ease;
}

.direct-question.is-open .direct-question__dialog {
  transform: translateY(0) scale(1);
}

.direct-question__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(245, 240, 230, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.direct-question__close span {
  position: absolute;
  top: 17px;
  left: 10px;
  width: 15px;
  height: 1px;
  background: #f5f0e6;
  transform: rotate(45deg);
}

.direct-question__close span:last-child {
  transform: rotate(-45deg);
}

.direct-question__person {
  display: grid;
  padding-right: 38px;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.direct-question__avatar {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: #15110d;
  background: #d9b78e;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .03em;
}

.direct-question__avatar::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 10px;
  height: 10px;
  border: 2px solid #17140f;
  border-radius: 50%;
  background: #55c781;
  content: "";
}

.direct-question__online {
  display: block;
  margin-bottom: 4px;
  color: #d9b78e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.direct-question__person h2 {
  margin: 0;
  color: #f5f0e6;
  font-family: var(--display);
  font-size: clamp(25px, 3.2vw, 34px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.direct-question__intro {
  margin: 20px 0 22px;
  color: rgba(245, 240, 230, .62);
  font-size: 13px;
  line-height: 1.55;
}

.direct-question__form {
  display: grid;
  gap: 12px;
}

.direct-question__form > label:not(.direct-question__consent):not(.direct-question__trap) {
  display: grid;
  gap: 6px;
}

.direct-question__form label > span {
  color: rgba(245, 240, 230, .66);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.direct-question__form input[type="text"],
.direct-question__form select,
.direct-question__form textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgba(245, 240, 230, .18);
  border-radius: 12px;
  color: #f5f0e6;
  background: rgba(255, 255, 255, .045);
  font: 600 14px var(--body);
  outline: none;
}

.direct-question__form input[type="text"] {
  height: 46px;
  padding: 0 14px;
}

.direct-question__form select {
  height: 46px;
  padding: 0 38px 0 14px;
  color-scheme: dark;
}

.direct-question__form textarea {
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
}

.direct-question__form input:focus,
.direct-question__form select:focus,
.direct-question__form textarea:focus {
  border-color: #d9b78e;
  box-shadow: 0 0 0 3px rgba(217, 183, 142, .09);
}

.direct-question__form input[aria-invalid="true"],
.direct-question__form select[aria-invalid="true"],
.direct-question__form textarea[aria-invalid="true"] {
  border-color: #ef6a67;
}

.direct-question__form small {
  min-height: 12px;
  color: #ff8582;
  font-size: 10px;
}

.direct-question__consent {
  display: grid;
  margin-top: 2px;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
}

.direct-question__consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: #d9b78e;
}

.direct-question__consent span {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.direct-question__consent a {
  color: #d9b78e;
}

.direct-question__submit {
  width: 100%;
  min-height: 52px;
  margin-top: 2px;
  border: 0;
}

.direct-question__submit:disabled {
  cursor: wait;
  opacity: .68;
}

.direct-question__status {
  display: none;
  margin: 0;
  color: #a9ddb9;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.direct-question__status.is-visible {
  display: block;
}

.direct-question__status[data-state="error"] {
  color: #ff8582;
}

.direct-question__trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.format-discussion .direct-question__dialog {
  width: min(100%, 560px);
}

.format-discussion__choices {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.format-discussion__choices > label {
  display: grid;
  gap: 6px;
}

.format-discussion__choices label > span {
  color: rgba(245, 240, 230, .66);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.landing-about {
  padding-top: clamp(86px, 10vw, 150px);
  padding-bottom: clamp(88px, 10vw, 150px);
  border-top: 1px solid rgba(217, 183, 142, .14);
}

.landing-about__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 50px;
}

.landing-about__head h2 {
  max-width: 1050px;
}

.landing-text-link {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(217, 183, 142, .46);
  color: #d9b78e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.landing-company-card {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(430px, 31vw, 520px);
  overflow: hidden;
  grid-template-columns: minmax(0, 1.05fr) minmax(250px, .95fr);
  grid-template-areas: "copy visual";
  border: 1px solid rgba(217, 183, 142, .26);
  background:
    radial-gradient(circle at 12% 0%, rgba(140, 87, 48, .2), transparent 42%),
    linear-gradient(145deg, #1b1b1a 0%, #101115 70%, #19100f 100%);
}

.landing-company-card:nth-child(2),
.landing-company-card:nth-child(3) {
  grid-template-columns: minmax(250px, .95fr) minmax(0, 1.05fr);
  grid-template-areas: "visual copy";
}

.landing-company-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  padding: clamp(28px, 3.2vw, 50px);
  grid-area: copy;
  flex-direction: column;
  justify-content: flex-end;
}

.landing-company-card h3 {
  max-width: 13ch;
  margin: 0 0 17px;
  color: #f5f0e6;
  font-family: var(--display);
  font-size: clamp(31px, 2.6vw, 47px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.landing-company-card--a1 h3,
.landing-company-card--youtube h3 {
  font-size: clamp(28px, 2.15vw, 39px);
}

.landing-company-card__role,
.landing-company-card__description {
  margin: 0;
}

.landing-company-card__role {
  max-width: 31ch;
  color: #f5f0e6;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 800;
  line-height: 1.35;
}

.landing-company-card__description {
  max-width: 43ch;
  margin-top: 13px;
  color: rgba(245, 240, 230, .58);
  font-size: clamp(13px, .92vw, 15px);
  font-weight: 600;
  line-height: 1.58;
}

.landing-company-card__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  grid-area: visual;
  background: #090909;
}

.landing-company-card__visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, .42), transparent 36%),
    linear-gradient(180deg, transparent 56%, rgba(4, 4, 4, .48));
  content: "";
  pointer-events: none;
}

.landing-company-card:nth-child(2) .landing-company-card__visual::after,
.landing-company-card:nth-child(3) .landing-company-card__visual::after {
  background:
    linear-gradient(270deg, rgba(10, 10, 10, .42), transparent 36%),
    linear-gradient(180deg, transparent 56%, rgba(4, 4, 4, .48));
}

.landing-company-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.landing-company-card:hover .landing-company-card__visual img {
  transform: scale(1.025);
}

.landing-company-card--technorum .landing-company-card__visual img {
  object-position: 50% 50%;
}

.landing-company-card--muaf .landing-company-card__visual img {
  object-position: 52% 50%;
}

.landing-company-card--a1 .landing-company-card__visual img {
  object-position: 50% 48%;
}

.landing-company-card--youtube .landing-company-card__visual img {
  object-position: 50% 42%;
}

.landing-company-divider {
  display: none;
}

.landing-about__gallery-block {
  margin-top: clamp(44px, 5vw, 72px);
  padding-top: 22px;
  border-top: 1px solid rgba(217, 183, 142, .2);
}

.landing-about__gallery-kicker {
  margin: 0 0 14px;
  color: #d9b78e;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.landing-about__gallery {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}

.landing-about-photo-card {
  display: flex;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(245, 240, 230, .15);
  background: #0c0d10;
  cursor: zoom-in;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.landing-about-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  filter: none;
  opacity: 1;
  image-rendering: auto;
  transform: none;
  transition: transform .35s cubic-bezier(.2, .72, .2, 1);
}

.landing-about-photo-card:hover img {
  filter: none;
}

.landing-about-photo-card:focus-visible {
  border-color: rgba(217, 183, 142, .82);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(217, 183, 142, .18);
}

@media (hover: hover) and (pointer: fine) {
  .landing-about-photo-card:hover {
    border-color: rgba(217, 183, 142, .42);
  }

  .landing-about-photo-card:hover img {
    transform: scale(1.02);
  }
}

.landing-about-photo-card figcaption {
  display: grid;
  min-height: 62px;
  padding: 8px 9px 10px;
  gap: 4px;
  align-content: start;
  border-top: 1px solid rgba(245, 240, 230, .1);
  background: linear-gradient(180deg, rgba(12, 13, 16, .9), #090a0c);
}

.landing-about-photo-card figcaption span {
  color: #d9b78e;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.15;
  text-transform: uppercase;
}

.landing-about-photo-card figcaption b {
  color: #f5f0e6;
  font-size: clamp(9px, .58vw, 11px);
  font-weight: 800;
  line-height: 1.15;
}

body.photo-lightbox-lock {
  overflow: hidden;
}

.landing-photo-lightbox {
  position: fixed;
  z-index: 6000;
  inset: 0;
  display: grid;
  padding: clamp(12px, 2.4vw, 34px);
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}

.landing-photo-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.landing-photo-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 3, 3, .92);
  cursor: zoom-out;
  backdrop-filter: blur(14px);
}

.landing-photo-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(94vw, 1480px);
  max-height: 94svh;
  padding: clamp(48px, 4.4vw, 66px) clamp(12px, 2vw, 28px) clamp(12px, 2vw, 26px);
  overflow: hidden;
  border: 1px solid rgba(217, 183, 142, .34);
  border-radius: clamp(16px, 2vw, 28px);
  background: rgba(8, 8, 8, .96);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .72);
  transform: translateY(12px) scale(.985);
  transition: transform .28s cubic-bezier(.2, .72, .2, 1);
}

.landing-photo-lightbox.is-open .landing-photo-lightbox__dialog {
  transform: translateY(0) scale(1);
}

.landing-photo-lightbox__close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 12px;
  display: inline-flex;
  min-height: 36px;
  padding: 0 13px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(217, 183, 142, .46);
  border-radius: 999px;
  background: rgba(12, 12, 12, .88);
  color: #f5f0e6;
  cursor: pointer;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.landing-photo-lightbox__close span {
  color: #d9b78e;
  font-size: 23px;
  font-weight: 300;
  line-height: .7;
}

.landing-photo-lightbox__close b {
  font-weight: 800;
}

.landing-photo-lightbox__close:hover,
.landing-photo-lightbox__close:focus-visible {
  border-color: #d9b78e;
  outline: 0;
  background: rgba(35, 29, 23, .96);
}

.landing-photo-lightbox__figure {
  display: grid;
  min-height: 0;
  margin: 0;
  gap: 12px;
  place-items: center;
}

.landing-photo-lightbox__figure img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(94svh - 122px);
  border-radius: clamp(8px, 1vw, 14px);
  object-fit: contain;
  background: #050505;
  box-shadow: 0 18px 70px rgba(0, 0, 0, .48);
}

.landing-photo-lightbox__figure figcaption {
  max-width: min(90vw, 900px);
  color: rgba(245, 240, 230, .72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.landing-button.landing-system__cta {
  display: flex;
  width: min(100%, 300px);
  margin: 30px auto 0;
}

.landing-telegram-float {
  position: fixed;
  z-index: 180;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 50%;
  display: inline-flex;
  width: 145px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 5px 13px 5px 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 16px;
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, .92), transparent 38%),
    linear-gradient(180deg, rgba(244, 249, 255, .76), rgba(190, 204, 219, .56));
  color: #17212b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .96),
    inset 0 -12px 22px rgba(80, 102, 124, .12),
    0 14px 34px rgba(0, 0, 0, .34),
    0 2px 10px rgba(210, 230, 248, .34);
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 44px)) scale(.94);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  transition: opacity .56s ease, transform .74s cubic-bezier(.2, .78, .24, 1), filter .2s ease;
}

.landing-telegram-float::before {
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 13px;
  content: "";
  pointer-events: none;
}

.landing-telegram-float::after {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -32%;
  width: 24%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .9), transparent);
  content: "";
  opacity: .76;
  transform: skewX(-18deg);
  animation: landing-telegram-float-shine 3.8s ease-in-out infinite;
  pointer-events: none;
}

.landing-telegram-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.landing-telegram-float:hover,
.landing-telegram-float:focus-visible {
  filter: brightness(1.06);
  outline: 2px solid rgba(255, 255, 255, .82);
  outline-offset: 3px;
}

.landing-telegram-float__icon,
.landing-telegram-float__label {
  position: relative;
  z-index: 1;
}

.landing-telegram-float__icon {
  position: relative;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 7px 16px rgba(18, 131, 201, .28);
}

.landing-telegram-float__icon::before {
  display: none;
}

.landing-telegram-float__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

@keyframes landing-telegram-float-shine {
  0%, 40% { left: -32%; opacity: 0; }
  48% { opacity: .76; }
  70% { left: 112%; opacity: .5; }
  100% { left: 112%; opacity: 0; }
}

@media (max-width: 640px) {
  .landing-telegram-float {
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 132px;
    min-height: 38px;
    gap: 6px;
    padding: 4px 12px 4px 5px;
    border-radius: 15px;
    font-size: 7.5px;
  }

  .landing-telegram-float::before {
    border-radius: 12px;
  }

  .landing-telegram-float__icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    border-radius: 50%;
  }

  .landing-telegram-float__icon::before {
    top: 6px;
    left: 5px;
    width: 17px;
    height: 14px;
  }
}

@media (max-width: 1400px) {
  .landing-about__gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.landing-contact {
  scroll-margin-top: 78px;
  padding: clamp(88px, 10vw, 150px) 0;
  border-top: 1px solid rgba(217, 183, 142, .2);
  background: radial-gradient(circle at 80% 0%, rgba(120, 80, 43, .4), transparent 44%), linear-gradient(145deg, #17120d, #080808 64%);
}

.landing-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .72fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}

.landing-contact__copy h2 {
  margin-bottom: 28px;
}

.landing-contact__form {
  display: grid;
  padding: clamp(28px, 4vw, 54px);
  gap: 20px;
  border: 1px solid rgba(217, 183, 142, .34);
  background: rgba(7, 7, 7, .74);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

.landing-contact__form > label:not(.landing-contact__consent):not(.landing-contact__trap) {
  display: grid;
  gap: 8px;
}

.landing-contact__form label > span {
  color: rgba(245, 240, 230, .68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.landing-contact__form input[type="text"],
.landing-contact__form input[type="tel"] {
  box-sizing: border-box;
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(245, 240, 230, .2);
  border-radius: 0;
  color: #f5f0e6;
  background: rgba(255, 255, 255, .035);
  font: 600 16px var(--body);
  outline: none;
}

.landing-contact__form input:focus {
  border-color: #d9b78e;
  box-shadow: 0 0 0 3px rgba(217, 183, 142, .1);
}

.landing-contact__form input[aria-invalid="true"] {
  border-color: #ef4a48;
}

.landing-contact__form small {
  min-height: 16px;
  color: #ff7976;
  font-size: 12px;
}

.landing-contact__consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.landing-contact__consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #d9b78e;
}

.landing-contact__consent span {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.landing-contact__consent a,
.landing-contact__privacy {
  color: #d9b78e;
}

.landing-contact__submit {
  width: 100%;
  border: 0;
}

.landing-contact__submit:disabled {
  cursor: wait;
  opacity: .68;
}

.landing-contact__status {
  display: none;
  margin: 0;
  color: #a9ddb9;
  font-size: 14px;
  line-height: 1.45;
}

.landing-contact__status.is-visible {
  display: block;
}

.landing-contact__status[data-state="error"] {
  color: #ff8582;
}

.landing-contact__privacy {
  justify-self: center;
  font-size: 11px;
  opacity: .64;
}

.landing-contact__legal {
  display: grid;
  justify-items: center;
  gap: 3px;
  margin-top: -8px;
  color: rgba(245, 240, 230, .4);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .035em;
  line-height: 1.45;
  text-align: center;
}

.landing-contact__legal span:first-child {
  color: rgba(245, 240, 230, .54);
  font-weight: 700;
}

.landing-contact__trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 1100px) {
  .landing-about__gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .landing-system__head {
    grid-template-columns: 1fr;
  }

  .landing-system__head > p {
    max-width: 720px;
  }

  .landing-system__cards {
    grid-template-columns: repeat(5, 230px);
    margin-right: calc((100vw - min(100vw, var(--shell, 1280px))) / -2);
    padding-bottom: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .landing-contour {
    min-height: 360px;
    scroll-snap-align: start;
  }

  .landing-leaders__grid,
  .landing-mentor,
  .landing-contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 46px;
  }

  .landing-about__companies {
    grid-template-columns: 1fr;
  }

  .landing-company-card {
    min-height: 430px;
  }
}

@media (max-width: 980px) {
  .landing-system {
    overflow-x: clip;
  }

  .landing-system__cards {
    grid-template-columns: minmax(0, 1fr);
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 0;
    gap: 16px;
    overflow: visible;
    scroll-snap-type: none;
    scrollbar-width: auto;
  }

  .landing-contour {
    min-height: 0;
    aspect-ratio: 16 / 9;
    padding: 15px 16px;
    background-position: center !important;
    background-size: cover;
    scroll-snap-align: none;
  }

  .landing-contour::before {
    background: linear-gradient(180deg, rgba(5, 5, 5, .01) 0%, rgba(5, 5, 5, .02) 56%, rgba(5, 5, 5, .15) 72%, rgba(5, 5, 5, .86) 100%);
  }

  .landing-contour:hover {
    transform: none;
  }

  .landing-contour > span {
    font-size: 15px;
  }

  .landing-contour h3 {
    max-width: 48%;
    font-size: clamp(18px, 4.4vw, 28px);
    line-height: .98;
  }

  .landing-contour-modal {
    padding: 10px;
    align-items: center;
  }

  .landing-contour-modal__dialog {
    width: calc(100% - 4px);
    max-height: calc(100dvh - 20px);
    padding: 26px 22px 34px;
    border: 1px solid rgba(22, 22, 22, .1);
    border-radius: 24px;
    transform: translateY(36px);
  }

  .landing-contour-modal__topline {
    margin-bottom: 24px;
  }

  .landing-contour-modal__dialog > h2 {
    margin-bottom: 18px;
    font-size: clamp(36px, 8.4vw, 60px);
  }

  .landing-contour-modal__lead {
    font-size: 16px;
  }

  .landing-contour-modal__body {
    margin-top: 28px;
    padding-top: 24px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .landing-leaders__grid {
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column;
    gap: 0;
  }

  .landing-leaders__visual {
    position: relative;
    top: auto;
    bottom: auto;
    left: 50%;
    width: 100vw;
    min-height: 0;
    aspect-ratio: 16 / 9;
    order: 1;
    transform: translateX(-50%);
  }

  .landing-leaders__visual::after {
    background: linear-gradient(180deg, rgba(5, 5, 5, .02) 0%, rgba(5, 5, 5, .05) 64%, rgba(5, 5, 5, .72) 100%);
  }

  .landing-leaders__visual img {
    object-fit: cover;
    object-position: center center;
  }

  .landing-leaders__copy {
    width: 100%;
    height: auto;
    padding: clamp(46px, 8vw, 70px) 0 clamp(64px, 10vw, 88px);
    order: 2;
  }

  .landing-leaders__copy h2 {
    max-width: 780px;
    font-size: clamp(40px, 8vw, 64px);
    line-height: .94;
  }

  .landing-leaders__copy > p {
    max-width: 720px;
    font-size: clamp(16px, 2.5vw, 20px);
  }

  .landing-leaders__copy ul {
    margin: 30px 0 28px;
  }

  .landing-leaders__copy li {
    padding: 14px 0;
    font-size: clamp(14px, 2.2vw, 17px);
  }
}

@media (max-width: 980px) and (prefers-reduced-motion: no-preference) {
  .landing-system.is-contour-mobile-ready .landing-contour {
    opacity: 0;
    filter: blur(6px);
    transition:
      opacity .52s ease,
      filter .58s ease,
      transform .68s cubic-bezier(.18, .82, .22, 1),
      border-color .25s ease;
    will-change: opacity, filter, transform;
  }

  .landing-system.is-contour-mobile-ready .landing-contour:nth-child(odd) {
    transform: translateX(-56px);
  }

  .landing-system.is-contour-mobile-ready .landing-contour:nth-child(even) {
    transform: translateX(56px);
  }

  .landing-system.is-contour-mobile-ready .landing-contour.is-contour-card-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

@media (max-width: 760px) {
  .landing-photo-lightbox {
    padding: 8px;
  }

  .landing-photo-lightbox__dialog {
    width: calc(100vw - 16px);
    max-height: 96svh;
    padding: 52px 8px 10px;
    border-radius: 16px;
  }

  .landing-photo-lightbox__close {
    top: 8px;
    right: 8px;
    min-height: 34px;
    padding: 0 11px;
  }

  .landing-photo-lightbox__figure img {
    max-height: calc(96svh - 112px);
    border-radius: 8px;
  }

  .landing-photo-lightbox__figure figcaption {
    padding: 0 6px;
    font-size: 11px;
  }

  .landing-book-banner {
    padding: 34px 0 46px;
    overflow: hidden;
  }

  .landing-book-banner__link {
    margin: 0;
    padding: 6px;
    border: 1px solid rgba(217, 183, 142, .42);
    border-radius: 22px;
    background:
      linear-gradient(135deg, rgba(217, 183, 142, .24), rgba(217, 183, 142, .04) 48%, rgba(255, 255, 255, .08)),
      #15120f;
    box-shadow:
      0 22px 52px rgba(0, 0, 0, .5),
      0 0 0 1px rgba(255, 255, 255, .05) inset;
  }

  .landing-book-banner__card {
    aspect-ratio: auto;
    border: 0;
    border-radius: 15px;
    box-shadow: none;
  }

  .landing-book-banner__card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .landing-book-banner__mobile-action {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px 2px;
    color: rgba(247, 244, 236, .62);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .landing-book-banner__mobile-action strong {
    display: block;
    width: 100%;
    color: #e4c097;
    font-size: 10px;
    letter-spacing: .11em;
    text-align: center;
    white-space: nowrap;
  }

  .landing-contour > span,
  .landing-contour h3 {
    display: none;
  }

  .landing-button.landing-system__cta {
    width: 50%;
    max-width: 220px;
    min-width: 0;
    padding-right: 16px;
    padding-left: 16px;
  }

  .landing-section-index {
    top: 30px;
    right: 20px;
    font-size: 84px;
  }

  .landing-system,
  .landing-mentor,
  .landing-about {
    padding-top: 74px;
    padding-bottom: 80px;
  }

  .landing-system__head h2,
  .landing-leaders__copy h2,
  .landing-mentor__copy h2,
  .landing-about__head h2,
  .landing-contact__copy h2 {
    font-size: clamp(38px, 11vw, 58px);
    line-height: .96;
  }

  .landing-telegram {
    padding-top: 44px;
    padding-bottom: 80px;
  }

  .landing-telegram__eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .landing-telegram__banner {
    width: 100%;
    border-radius: 9px;
  }

  .landing-telegram__button-hit {
    border-radius: 14px;
  }

  .landing-mentor,
  .landing-contact__grid {
    grid-template-columns: 1fr;
  }

  .landing-mentor {
    min-height: auto;
    gap: 36px;
  }

  .landing-mentor__photo {
    width: min(100%, 680px);
    max-height: none;
    aspect-ratio: 4 / 5;
    justify-self: center;
  }

  .landing-about__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .landing-text-link {
    justify-self: start;
  }

  .landing-about__companies {
    gap: 0;
  }

  .landing-company-card,
  .landing-company-card:nth-child(2),
  .landing-company-card:nth-child(3) {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "copy";
  }

  .landing-company-card__visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .landing-company-card__visual::after,
  .landing-company-card:nth-child(2) .landing-company-card__visual::after,
  .landing-company-card:nth-child(3) .landing-company-card__visual::after {
    background: linear-gradient(180deg, transparent 56%, rgba(4, 4, 4, .58));
  }

  .landing-company-card__body {
    padding: 28px 24px 32px;
  }

  .landing-company-card h3 {
    max-width: 15ch;
    font-size: clamp(34px, 9vw, 48px);
  }

  .landing-company-card--a1 h3,
  .landing-company-card--youtube h3 {
    font-size: clamp(30px, 7.8vw, 42px);
  }

  .landing-company-card__role {
    font-size: 15px;
  }

  .landing-company-card__description {
    max-width: 58ch;
    color: rgba(245, 240, 230, .65);
    font-size: 14px;
    line-height: 1.55;
  }

  .landing-company-divider {
    display: block;
    width: 48px;
    height: 1px;
    margin: 18px 0;
    background: rgba(245, 240, 230, .28);
  }

  .landing-about__gallery-block {
    margin-top: 42px;
    padding-top: 18px;
  }

  .landing-about__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .landing-about-photo-card figcaption {
    min-height: 58px;
  }

  .landing-about-photo-card figcaption b {
    font-size: 10px;
  }

  .landing-contact {
    padding: 80px 0;
  }

  .landing-leaders {
    min-height: 0;
  }

  .landing-leaders__grid {
    position: relative;
    display: block;
    min-height: clamp(720px, calc(100svh - 58px), 860px);
  }

  .landing-leaders__visual {
    position: absolute;
    z-index: 0;
    top: 0;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    transform: translateX(-50%);
  }

  .landing-leaders__visual::after {
    background:
      linear-gradient(90deg, #080807 0%, rgba(8, 8, 7, .99) 31%, rgba(8, 8, 7, .92) 48%, rgba(8, 8, 7, .57) 66%, rgba(8, 8, 7, .08) 88%),
      linear-gradient(180deg, rgba(7, 7, 6, .18) 0%, rgba(7, 7, 6, .04) 42%, rgba(7, 7, 6, .42) 76%, rgba(7, 7, 6, .9) 100%);
  }

  .landing-leaders__visual img {
    object-fit: cover;
    object-position: 72% center;
    transform: translateX(4%) scale(1.05);
    transform-origin: 78% 48%;
  }

  .landing-leaders__visual > span {
    display: none;
  }

  .landing-leaders__copy {
    position: relative;
    z-index: 2;
    width: min(68%, 310px);
    min-height: inherit;
    padding: clamp(46px, 7vh, 66px) 0 44px;
    justify-content: center;
  }

  .landing-leaders__copy .landing-kicker {
    max-width: 220px;
    font-size: 9px;
    line-height: 1.25;
  }

  .landing-leaders__copy h2 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(32px, 9.5vw, 45px);
    line-height: .9;
    letter-spacing: -.025em;
  }

  .landing-leaders__copy > p {
    max-width: 100%;
    font-size: clamp(11px, 3vw, 13px);
    line-height: 1.42;
  }

  .landing-leaders__copy ul {
    margin: 18px 0 20px;
  }

  .landing-leaders__copy li {
    padding: 8px 0;
    gap: 4px;
    font-size: clamp(10px, 2.75vw, 12px);
    line-height: 1.3;
  }

  .landing-leaders__copy li strong {
    font-size: clamp(13px, 3.8vw, 16px);
  }

  .landing-leaders__copy li span {
    font-size: clamp(10px, 3vw, 12px);
  }

  .landing-leaders__copy .landing-button {
    min-height: 42px;
    padding: 0 8px;
    font-size: 8px;
    letter-spacing: .055em;
  }

  .landing-leaders__actions {
    width: 100%;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-about-photo-card,
  .landing-about-photo-card img,
  .landing-photo-lightbox,
  .landing-photo-lightbox__dialog {
    transition: none;
  }
}

@media (max-width: 480px) {
  .direct-question {
    padding: 10px;
    align-items: end;
  }

  .direct-question__dialog {
    max-height: calc(100dvh - 10px);
    padding: 24px 18px 20px;
    border-radius: 20px 20px 12px 12px;
  }

  .direct-question__person {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 11px;
  }

  .direct-question__avatar {
    width: 44px;
    height: 44px;
  }

  .direct-question__person h2 {
    font-size: 27px;
  }

  .direct-question__intro {
    margin: 16px 0 17px;
  }

  .format-discussion__choices {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .landing-telegram__eyebrow p {
    max-width: 300px;
  }

  .landing-leaders__visual { min-height: 0; }

  .landing-leaders__copy li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .landing-company-card__visual {
    aspect-ratio: 4 / 3;
  }

  .landing-company-card__body {
    padding: 24px 18px 28px;
  }

  .landing-company-card h3 {
    font-size: clamp(31px, 10vw, 40px);
  }

  .landing-company-card--a1 h3,
  .landing-company-card--youtube h3 {
    font-size: clamp(28px, 8.6vw, 35px);
  }

  .landing-company-card__role {
    font-size: 14px;
  }

  .landing-company-card__description {
    font-size: 13px;
  }

  .landing-contact__form {
    padding: 24px 18px;
  }

  .landing-button {
    width: 100%;
    padding-right: 22px;
    padding-left: 22px;
  }

  .landing-button.landing-system__cta {
    width: min(78%, 270px);
    max-width: 270px;
    min-height: 50px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 11px;
    letter-spacing: .07em;
    line-height: 1;
    white-space: nowrap;
  }

  .landing-mentor__copy .landing-mentor__cta {
    display: none;
  }

  .landing-mentor > .landing-mentor__cta--mobile {
    display: inline-flex;
    width: min(72%, 280px);
    min-width: 0;
    min-height: 48px;
    justify-self: center;
    margin: -16px auto 0;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 10px;
    letter-spacing: .065em;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-button::after,
  .landing-telegram__button-hit::after,
  .landing-telegram-float::after {
    animation: none;
  }

  .landing-telegram-float {
    transition: none;
  }

  .landing-contour {
    transition: none;
  }
}

.landing-seo-summary {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: start;
  margin-top: clamp(22px, 3vw, 44px);
  margin-bottom: clamp(64px, 8vw, 120px);
  padding: clamp(38px, 5vw, 72px);
  border: 1px solid rgba(217, 183, 142, .2);
  border-radius: clamp(22px, 2.2vw, 36px);
  background:
    linear-gradient(118deg, rgba(217, 183, 142, .08), rgba(255, 255, 255, .015) 48%, rgba(88, 52, 36, .12)),
    #0a0a09;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .3);
}

.landing-seo-summary__title h2 {
  max-width: 760px;
  margin: 0;
  color: #f5f0e6;
  font-family: var(--display);
  font-size: clamp(38px, 4.2vw, 68px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.landing-seo-summary__content {
  color: rgba(245, 240, 230, .68);
  font-size: clamp(15px, 1.18vw, 19px);
  line-height: 1.62;
}

.landing-seo-summary__content p {
  margin: 0 0 18px;
}

.landing-seo-summary__content ul {
  display: flex;
  margin: 28px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.landing-seo-summary__content li {
  padding: 9px 13px;
  border: 1px solid rgba(217, 183, 142, .2);
  border-radius: 999px;
  color: #d9b78e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .landing-seo-summary {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 20px;
    margin-bottom: 64px;
    padding: 34px 24px;
  }

  .landing-seo-summary__title h2 {
    font-size: clamp(34px, 8.8vw, 54px);
  }

  .landing-seo-summary__content {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .landing-seo-summary {
    width: calc(100% - 24px);
    padding: 28px 18px;
    border-radius: 22px;
  }

  .landing-seo-summary__content ul {
    gap: 7px;
  }

  .landing-seo-summary__content li {
    padding: 8px 10px;
    font-size: 9px;
  }
}
/* Mobile WebView stability lock (Telegram, Safari, Chrome) — 2026-08-26 */
@media (max-width: 980px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
  }

  body { position: relative; }

  main,
  .concept-hero,
  .landing-system,
  .landing-leaders,
  .landing-mentor,
  .landing-about,
  .landing-contact {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .concept-hero,
  .landing-leaders { contain: paint; }

  .top {
    background: #0a0908;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .landing-leaders__visual {
    right: 0;
    left: 0;
    width: 100%;
    transform: none;
  }

  .landing-system.is-contour-mobile-ready .landing-contour,
  .landing-system.is-contour-mobile-ready .landing-contour:nth-child(odd),
  .landing-system.is-contour-mobile-ready .landing-contour:nth-child(even) {
    filter: none;
    transform: translateY(18px);
    transition: opacity .42s ease, transform .52s cubic-bezier(.2, .76, .24, 1), border-color .25s ease;
    will-change: auto;
  }

  .landing-system.is-contour-mobile-ready .landing-contour.is-contour-card-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .landing-telegram-float {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (max-width: 760px) {
  .landing-photo-lightbox__dialog { width: calc(100% - 16px); }

  .landing-leaders__visual img {
    object-position: 74% center;
    transform: none;
  }
}
/* Mobile contour fade-only stability — 2026-08-26 */
@media (max-width: 980px) and (prefers-reduced-motion: no-preference) {
  .landing-system.is-contour-mobile-ready .landing-contour,
  .landing-system.is-contour-mobile-ready .landing-contour:nth-child(odd),
  .landing-system.is-contour-mobile-ready .landing-contour:nth-child(even) {
    transform: none;
    transition: opacity .38s ease, border-color .25s ease;
  }

  .landing-system.is-contour-mobile-ready .landing-contour.is-contour-card-visible {
    transform: none;
  }
}
/* Mobile compositor stability: static highlights — 2026-08-26 */
@media (max-width: 980px) {
  .landing-button::after,
  .landing-telegram__button-hit::after,
  .landing-telegram-float::after,
  .concept-hero__waiting--gold::after,
  .concept-hero__directions-more::after {
    display: none;
    animation: none;
  }
}