/* Основной дизайн лендинга: сетки, блоки, карточки, модальные окна. */
    :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.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;
    }
