    :root {
      --content-width: min(100vw, 1920px);
      --content-offset: max(calc((100vw - 1920px) / 2), 0px);
      --u: calc(var(--content-width) / 1920);
      --section-gutter: calc(160 * var(--u));
      --section-inner-width: calc(1597 * var(--u));
      --ink: #040f17;
      --text: #697580;
      --accent: #28d498;
      --button: #0b63ac;
      --hover: #bcedfa;
      --sky: #bfe2fb;
      --deep: #0a3650;
      font-family: "Google Sans", "Inter", "Manrope", "Segoe UI", Arial, sans-serif;
      color-scheme: light;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 0;
      overflow-x: hidden;
      background: var(--sky);
      color: var(--ink);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    select {
      font: inherit;
    }

    h1,
    h2,
    h3,
    p {
      margin: 0;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .landing {
      width: 100%;
      overflow: hidden;
      background: var(--sky);
    }

    .design-section {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .design-section > :not(.gradient-bg):not(.footer-bg):not(.program-detail-bg) {
      margin-left: var(--content-offset);
    }

    .hero {
      height: calc(1015 * var(--u));
      min-height: 620px;
      color: #fff;
      background: #0b63ac;
    }

    .gradient-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background:
        radial-gradient(ellipse calc(520 * var(--u)) calc(320 * var(--u)) at 20% 23%, rgba(255, 238, 164, 0.78), rgba(225, 169, 248, 0.55) 47%, transparent 72%),
        radial-gradient(ellipse calc(650 * var(--u)) calc(650 * var(--u)) at 91% 43%, rgba(52, 136, 255, 0.68), transparent 68%),
        radial-gradient(ellipse calc(780 * var(--u)) calc(520 * var(--u)) at 33% 78%, rgba(143, 204, 238, 0.82), transparent 68%),
        radial-gradient(ellipse calc(920 * var(--u)) calc(780 * var(--u)) at 58% -2%, rgba(35, 215, 234, 0.72), transparent 66%),
        linear-gradient(132deg, #0b63ac 0%, #20bfdc 49%, #1a82ee 100%);
    }

    .hero .gradient-bg {
      background: url("hero-bg-figma.webp") center / cover no-repeat;
    }

    @media (max-width: 899px) {
      .hero .gradient-bg {
        background-image: url("hero-bg-figma-mobile.webp");
      }
    }

    .catalog .gradient-bg {
      background: url("program-detail-bg.webp") center calc(-1196 * var(--u)) / 100% auto no-repeat;
    }

    .hero-frame {
      position: absolute;
      left: calc(163 * var(--u));
      top: calc(58 * var(--u));
      width: calc(1597 * var(--u));
      height: calc(899 * var(--u));
      min-height: 548px;
      border: 1px solid rgba(255, 255, 255, 0.44);
      border-radius: calc(8 * var(--u));
      background: rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px rgba(255, 255, 255, 0.22);
    }

    .hero-nav {
      position: absolute;
      left: calc(223 * var(--u));
      top: calc(85 * var(--u));
      width: calc(1474 * var(--u));
      height: calc(35 * var(--u));
      min-height: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 3;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: calc(8 * var(--u));
      color: #fff;
      font-weight: 800;
      font-size: calc(24 * var(--u));
      line-height: 1;
      white-space: nowrap;
    }

    .brand img {
      width: calc(35 * var(--u));
      height: calc(35 * var(--u));
      border-radius: calc(6.813 * var(--u));
      object-fit: cover;
    }

    .language-form {
      flex: 0 0 auto;
    }

    .language-form select {
      appearance: none;
      min-width: calc(190 * var(--u));
      border: 1px solid rgba(255, 255, 255, 0.42);
      border-radius: calc(999 * var(--u));
      padding: calc(10 * var(--u)) calc(36 * var(--u)) calc(10 * var(--u)) calc(16 * var(--u));
      background-color: rgba(255, 255, 255, 0.12);
      background-image:
        linear-gradient(45deg, transparent 50%, #fff 50%),
        linear-gradient(135deg, #fff 50%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
      background-position: calc(100% - 19px) 50%, calc(100% - 15px) 50%, 0 0;
      background-size: calc(5 * var(--u)) calc(5 * var(--u)), calc(5 * var(--u)) calc(5 * var(--u)), 100% 100%;
      background-repeat: no-repeat;
      box-shadow:
        0 calc(12 * var(--u)) calc(28 * var(--u)) rgba(0, 75, 140, 0.18),
        inset 0 1px rgba(255, 255, 255, 0.22);
      color: #fff;
      color-scheme: light;
      font-weight: 750;
      font-size: calc(16 * var(--u));
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
      cursor: pointer;
      outline: none;
    }

    .language-form option {
      background: #fff;
      color: var(--ink);
    }

    .hero-divider {
      position: absolute;
      left: calc(223 * var(--u));
      top: calc(164 * var(--u));
      width: calc(1474 * var(--u));
      height: 1px;
      background: rgba(255, 255, 255, 0.24);
      z-index: 2;
    }

    .hero-copy {
      position: absolute;
      left: calc(213 * var(--u));
      top: calc(225 * var(--u));
      width: calc(795 * var(--u));
      z-index: 4;
    }

    .hero-copy h1 {
      color: #fff;
      font-weight: 800;
      font-size: calc(78 * var(--u));
      line-height: 1.26;
      letter-spacing: 0;
    }

    .hero-copy .line {
      display: block;
      white-space: nowrap;
    }

    .hero-highlight-row {
      display: flex;
      align-items: center;
      gap: calc(19 * var(--u));
      margin-top: calc(4 * var(--u));
    }

    .hero-highlight {
      display: inline-flex;
      align-items: center;
      height: calc(100 * var(--u));
      padding: 0 calc(15 * var(--u));
      border-radius: calc(13 * var(--u));
      background: var(--accent);
      color: #fff;
      font-size: calc(72 * var(--u));
      line-height: 1;
      font-weight: 800;
      white-space: nowrap;
    }

    .hero-spark {
      width: calc(68 * var(--u));
      height: calc(84.4 * var(--u));
      object-fit: contain;
      transform: translateY(calc(4 * var(--u)));
    }

    .hero-description {
      width: calc(733 * var(--u));
      margin-top: calc(25 * var(--u));
      color: rgba(255, 255, 255, 0.72);
      font-size: calc(20 * var(--u));
      line-height: 1.18;
      font-weight: 500;
      overflow-wrap: anywhere;
    }

    .hero-facts {
      display: flex;
      gap: calc(10 * var(--u));
      margin-top: calc(25 * var(--u));
    }

    .fact-card {
      width: calc(263 * var(--u));
      height: calc(122 * var(--u));
      padding: calc(12 * var(--u)) calc(16 * var(--u));
      border: 1px solid rgba(255, 255, 255, 0.34);
      border-radius: calc(27 * var(--u));
      background: rgba(44, 142, 244, 0.66);
      box-shadow: inset 1px 0.5px rgba(255, 255, 255, 0.58), inset -1px -1px rgba(255, 255, 255, 0.36), 0 8px 72px -5px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: calc(12 * var(--u));
      text-align: center;
    }

    .fact-card:nth-child(2) {
      width: calc(264 * var(--u));
    }

    .fact-card:nth-child(3) {
      width: calc(235 * var(--u));
      padding-right: calc(2 * var(--u));
      padding-left: calc(2 * var(--u));
    }

    .fact-label {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: calc(10 * var(--u));
      width: 100%;
      color: var(--hover);
      font-size: calc(27 * var(--u));
      line-height: normal;
      font-weight: 400;
      white-space: nowrap;
    }

    .fact-label::before {
      content: "";
      position: static;
      width: calc(47 * var(--u));
      height: calc(47 * var(--u));
      flex: 0 0 calc(47 * var(--u));
      background: url("time-icon.svg") center / 100% 100% no-repeat;
      transform: none;
    }

    .fact-label::after {
      content: "";
      display: none;
    }

    .fact-card strong,
    .fact-card small {
      display: block;
      width: 100%;
      margin-top: 0;
      color: #fff;
      font-size: calc(20 * var(--u));
      line-height: normal;
      font-weight: 800;
      overflow-wrap: anywhere;
    }

    .hero-actions {
      display: flex;
      gap: calc(10 * var(--u));
      margin-top: calc(25 * var(--u));
    }

    .hero-btn {
      height: calc(57 * var(--u));
      border-radius: calc(27 * var(--u));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: calc(16 * var(--u));
      line-height: 1;
      font-weight: 800;
      white-space: nowrap;
    }

    .hero-btn.primary {
      width: calc(384.5 * var(--u));
      background: var(--accent);
    }

    .hero-btn.secondary {
      width: calc(383.5 * var(--u));
      border: 1px solid #fff;
      background: rgba(255, 255, 255, 0.02);
    }

    .btn-circle {
      width: calc(46 * var(--u));
      height: calc(46 * var(--u));
      margin-left: calc(30 * var(--u));
      display: block;
      flex: 0 0 calc(46 * var(--u));
      line-height: 0;
    }

    .btn-circle img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .hero-card {
      position: absolute;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.42);
      border-radius: calc(27 * var(--u));
      background: rgba(255, 255, 255, 0.05);
      box-shadow: inset 1px 0.5px rgba(255, 255, 255, 0.58), inset -1px -1px rgba(255, 255, 255, 0.36), 0 8px 72px -5px rgba(0, 0, 0, 0.1);
      z-index: 2;
    }

    .hero-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center bottom;
    }

    .hero-main-card {
      left: calc(1029 * var(--u));
      top: calc(249 * var(--u));
      width: calc(495 * var(--u));
      height: calc(464 * var(--u));
    }

    .hero-main-card > img {
      left: calc(72 * var(--u));
      width: calc(420 * var(--u));
    }

    .hero-support-card {
      left: calc(1334 * var(--u));
      top: calc(566 * var(--u));
      width: calc(347 * var(--u));
      height: calc(343 * var(--u));
    }

    .hero-card-logo {
      position: absolute;
      left: calc(36 * var(--u));
      top: calc(40 * var(--u));
      display: inline-flex;
      align-items: center;
      gap: calc(8 * var(--u));
      color: #fff;
      font-size: calc(26 * var(--u));
      line-height: 1;
      font-weight: 800;
      z-index: 3;
    }

    .hero-card-logo img {
      position: static;
      width: calc(35 * var(--u));
      height: calc(35 * var(--u));
      border-radius: calc(6.813 * var(--u));
    }

    .review-badge {
      position: absolute;
      left: calc(1029 * var(--u));
      top: calc(711 * var(--u));
      width: calc(332.031 * var(--u));
      height: calc(168.669 * var(--u));
      padding: calc(23.206 * var(--u));
      border-radius: calc(18.564 * var(--u));
      background: #fff;
      box-shadow: calc(11.603 * var(--u)) calc(4.641 * var(--u)) calc(23.206 * var(--u)) rgba(0, 0, 0, 0.16);
      color: var(--ink);
      z-index: 5;
    }

    .review-top {
      display: flex;
      align-items: center;
      gap: calc(13.923 * var(--u));
      height: calc(24 * var(--u));
    }

    .review-title {
      font-size: calc(18.564 * var(--u));
      line-height: calc(23.206 * var(--u));
      font-weight: 800;
      white-space: nowrap;
      color: var(--text);
    }

    .review-title strong {
      color: var(--ink);
    }

    .stars {
      color: var(--accent);
      font-size: calc(17 * var(--u));
      letter-spacing: calc(1.5 * var(--u));
      white-space: nowrap;
    }

    .platforms {
      display: flex;
      justify-content: space-between;
      width: calc(242 * var(--u));
      margin-top: calc(13.923 * var(--u));
      color: var(--button);
      font-size: calc(18 * var(--u));
      line-height: 1;
      font-weight: 900;
    }

    .social-icon {
      width: calc(24 * var(--u));
      height: calc(24 * var(--u));
      display: grid;
      place-items: center;
      color: var(--button);
    }

    .social-icon svg {
      display: block;
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    .social-bg {
      fill: var(--button);
    }

    .social-mark {
      fill: #fff;
    }

    .social-stroke {
      fill: none;
      stroke: var(--button);
      stroke-width: 2.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .review-bottom {
      width: calc(285.620 * var(--u));
      height: calc(46.411 * var(--u));
      display: flex;
      align-items: center;
      justify-content: center;
      gap: calc(13.923 * var(--u));
      margin-top: calc(13.923 * var(--u));
    }

    .review-arrow {
      width: calc(27.847 * var(--u));
      height: calc(27.847 * var(--u));
      flex: 0 0 calc(27.847 * var(--u));
      display: block;
      position: relative;
      overflow: visible;
    }

    .review-arrow img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .review-score {
      flex: 0 0 auto;
      font-size: calc(23.206 * var(--u));
      line-height: calc(23.206 * var(--u));
      font-weight: 800;
      color: var(--ink);
    }

    .avatars {
      width: calc(194.927 * var(--u));
      height: calc(46.411 * var(--u));
      display: flex;
      align-items: flex-start;
      overflow: visible;
    }

    .avatar-frame,
    .avatar-count {
      position: relative;
      width: calc(46.411 * var(--u));
      height: calc(46.411 * var(--u));
      margin-right: calc(-9.282 * var(--u));
      flex: 0 0 calc(46.411 * var(--u));
      overflow: visible;
    }

    .avatar-frame img,
    .avatar-count img {
      position: absolute;
      left: calc(-4.641 * var(--u));
      top: 0;
      width: calc(55.693 * var(--u));
      height: calc(55.693 * var(--u));
      max-width: none;
      border-radius: 50%;
      object-fit: cover;
    }

    .avatar-count {
      margin-right: 0;
    }

    .light {
      background: var(--sky);
      color: var(--ink);
    }

    .about {
      height: calc(2168 * var(--u));
      min-height: 980px;
    }

    .section-title {
      color: var(--ink);
      font-size: calc(78 * var(--u));
      line-height: 1.27;
      font-weight: 800;
      letter-spacing: 0;
    }

    .section-kicker {
      color: var(--text);
      font-size: calc(24 * var(--u));
      line-height: 1.3;
      font-weight: 700;
    }

    .about-title {
      position: absolute;
      left: calc(160 * var(--u));
      top: calc(150 * var(--u));
      width: calc(1597 * var(--u));
    }

    .about-kicker {
      position: absolute;
      left: calc(160 * var(--u));
      top: calc(249 * var(--u));
      width: calc(1597 * var(--u));
    }

    .about-copy {
      position: absolute;
      display: flex;
      flex-direction: column;
      gap: calc(30 * var(--u));
      color: var(--text);
      font-size: calc(24 * var(--u));
      line-height: 1.29;
      font-weight: 400;
    }

    .about-copy.left {
      left: calc(160 * var(--u));
      top: calc(334 * var(--u));
      width: calc(513 * var(--u));
    }

    .about-copy.right {
      left: calc(1277 * var(--u));
      top: calc(334 * var(--u));
      width: calc(480 * var(--u));
    }

    .about-item {
      display: flex;
      flex-direction: column;
      gap: calc(15 * var(--u));
    }

    .number-wrap {
      position: relative;
      width: calc(102.401 * var(--u));
      height: calc(81.916 * var(--u));
    }

    .number-wrap::before {
      content: none;
    }

    .number-wrap img {
      display: block;
      width: 100%;
      height: 100%;
    }

    .number-pill {
      position: absolute;
      left: calc(9 * var(--u));
      top: calc(21 * var(--u));
      width: calc(92 * var(--u));
      height: calc(51 * var(--u));
      border: 1px solid #0a75f5;
      border-radius: calc(32 * var(--u));
      display: grid;
      place-items: center;
      color: #fff;
      font-size: calc(24 * var(--u));
      line-height: 1;
    }

    .about-visual {
      position: absolute;
      left: calc(699 * var(--u));
      top: calc(302 * var(--u));
      width: calc(523 * var(--u));
      height: calc(575 * var(--u));
      overflow: hidden;
      border-radius: calc(20 * var(--u));
      background: #0a75f5;
    }

    .about-visual-layer {
      position: absolute;
      display: block;
      object-fit: cover;
    }

    .about-visual-base {
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .about-visual-photo {
      left: calc(21 * var(--u));
      top: calc(24 * var(--u));
      width: calc(481 * var(--u));
      height: calc(420 * var(--u));
      z-index: 1;
    }

    .about-visual-caption {
      position: absolute;
      left: calc(44 * var(--u));
      right: calc(44 * var(--u));
      bottom: calc(27 * var(--u));
      z-index: 2;
      margin: 0;
      color: rgba(255, 255, 255, 0.86);
      font-size: calc(40 * var(--u));
      font-weight: 400;
      line-height: 1.23;
      text-align: center;
      text-wrap: balance;
    }

    .program-detail-bg {
      position: absolute;
      left: 0;
      top: calc(1007 * var(--u));
      width: 100%;
      height: calc(1196 * var(--u));
      background: url("program-detail-bg.webp") top center / 100% auto no-repeat;
      pointer-events: none;
    }

    .program-butterfly {
      position: absolute;
      z-index: 2;
      object-fit: contain;
      pointer-events: none;
    }

    .program-butterfly.open {
      left: calc(1603 * var(--u));
      top: calc(1812 * var(--u));
      width: calc(263 * var(--u));
      height: calc(263 * var(--u));
      z-index: 4;
    }

    .program-butterfly.side {
      left: calc(59 * var(--u));
      top: calc(1828 * var(--u));
      width: calc(233 * var(--u));
      height: calc(189 * var(--u));
    }

    .program-detail {
      position: absolute;
      left: calc(160 * var(--u));
      top: calc(1149 * var(--u));
      width: calc(1597 * var(--u));
      height: calc(920 * var(--u));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: calc(26 * var(--u));
      color: #fff;
      z-index: 3;
    }

    .program-card-stack {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: calc(14 * var(--u));
    }

    .program-info-card {
      position: relative;
      width: calc(523 * var(--u));
      height: calc(540 * var(--u));
      overflow: hidden;
      border-radius: calc(24 * var(--u));
      background: rgba(24, 116, 201, 0.32);
      box-shadow: 0 calc(2 * var(--u)) calc(30 * var(--u)) rgba(0, 0, 0, 0.05), 0 calc(8 * var(--u)) calc(72 * var(--u)) calc(-5 * var(--u)) rgba(0, 0, 0, 0.1), inset calc(1 * var(--u)) calc(0.5 * var(--u)) rgba(255, 255, 255, 0.6), inset calc(-1 * var(--u)) calc(-1 * var(--u)) rgba(255, 255, 255, 0.4), inset 0 0 calc(5 * var(--u)) rgba(255, 255, 255, 0.15), inset 0 calc(2 * var(--u)) calc(20 * var(--u)) calc(2 * var(--u)) rgba(53, 53, 53, 0.05);
      backdrop-filter: blur(calc(5 * var(--u)));
    }

    .program-info-card:nth-child(2) {
      width: calc(523 * var(--u));
    }

    .program-card-media {
      position: absolute;
      left: 50%;
      top: 0;
      width: calc(523 * var(--u));
      height: calc(273 * var(--u));
      border-radius: calc(7 * var(--u));
      overflow: hidden;
      transform: translateX(-50%);
    }

    .program-info-card:nth-child(2) .program-card-media {
      width: calc(523 * var(--u));
    }

    .program-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .program-info-card:nth-child(2) .program-card-media img {
      height: 121.36%;
      object-position: center top;
    }

    .program-card-title {
      position: absolute;
      left: 50%;
      top: calc(254 * var(--u));
      width: calc(385 * var(--u));
      height: calc(58 * var(--u));
      border-radius: calc(46 * var(--u));
      display: flex;
      align-items: center;
      justify-content: center;
      padding: calc(10 * var(--u));
      background: #fff;
      color: #0c4251;
      font-size: calc(28 * var(--u));
      line-height: normal;
      font-weight: 800;
      text-align: center;
      white-space: nowrap;
      filter: drop-shadow(0 calc(4 * var(--u)) calc(2 * var(--u)) #1e748c);
      transform: translateX(-50%);
      z-index: 2;
    }

    .program-card-body {
      position: absolute;
      left: 50%;
      top: calc(316 * var(--u));
      width: calc(430 * var(--u));
      transform: translateX(-50%);
      color: #fff;
      font-size: calc(18 * var(--u));
      line-height: 1.12;
      font-weight: 500;
      text-align: left;
      white-space: pre-line;
      overflow-wrap: anywhere;
    }

    .program-card-body p + p {
      margin-top: calc(10 * var(--u));
    }

    .program-rates {
      width: calc(1597 * var(--u));
      display: flex;
      flex-direction: column;
      gap: calc(12 * var(--u));
    }

    .program-rate {
      width: 100%;
      min-height: calc(118 * var(--u));
      border-radius: calc(16 * var(--u));
      display: flex;
      align-items: center;
      gap: calc(20 * var(--u));
      padding: calc(14 * var(--u)) calc(23 * var(--u));
      background: rgba(24, 116, 201, 0.32);
      color: #fff;
    }

    .program-rate.curator {
      min-height: calc(158 * var(--u));
    }

    .program-rate-title {
      flex: 0 0 calc(423 * var(--u));
      font-size: calc(36 * var(--u));
      line-height: normal;
      font-weight: 800;
      text-align: center;
      white-space: nowrap;
      overflow-wrap: normal;
    }

    .program-rate.curator .program-rate-title {
      flex-basis: calc(470 * var(--u));
    }

    .program-rate-meta {
      display: inline-flex;
      align-items: center;
      gap: calc(9 * var(--u));
      font-size: calc(24 * var(--u));
      line-height: normal;
      font-weight: 400;
      white-space: nowrap;
    }

    .program-rate-copy {
      flex: 0 0 calc(804 * var(--u));
      display: flex;
      align-items: center;
      gap: calc(9 * var(--u));
      font-size: calc(24 * var(--u));
      line-height: normal;
      font-weight: 400;
    }

    .program-rate-icon {
      width: calc(24 * var(--u));
      height: calc(24 * var(--u));
      flex: 0 0 calc(24 * var(--u));
      color: #fff;
    }

    .program-rate-icon svg {
      width: 100%;
      height: 100%;
      display: block;
      fill: currentColor;
    }

    .program-add-icon {
      width: calc(32 * var(--u));
      height: calc(32 * var(--u));
      display: block;
      flex: 0 0 calc(32 * var(--u));
      line-height: 1;
    }

    .program-add-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .catalog {
      height: calc(2168 * var(--u));
      min-height: 1240px;
      color: #fff;
    }

    .catalog .section-title {
      position: absolute;
      left: calc(160 * var(--u));
      top: 0;
      width: calc(1597 * var(--u));
      color: #fff;
      text-align: center;
    }

    .challenge-grid {
      position: absolute;
      left: calc(160 * var(--u));
      top: calc(139 * var(--u));
      width: calc(1597 * var(--u));
      display: grid;
      grid-template-columns: repeat(3, calc(523 * var(--u)));
      gap: calc(14 * var(--u));
    }

    .challenge-card {
      position: relative;
      width: calc(523 * var(--u));
      height: calc(566 * var(--u));
      overflow: hidden;
      border-radius: calc(20 * var(--u));
      background: rgba(255, 255, 255, 0.18);
    }

    .challenge-card.tall {
      height: calc(575 * var(--u));
    }

    .challenge-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(40, 165, 245, 0.22);
    }

    .challenge-image {
      position: absolute;
      left: calc(20 * var(--u));
      top: calc(20 * var(--u));
      width: calc(483 * var(--u));
      height: calc(388 * var(--u));
      overflow: hidden;
      border-radius: calc(20 * var(--u));
    }

    .challenge-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .price-strip {
      position: absolute;
      left: calc(20 * var(--u));
      top: calc(345 * var(--u));
      width: calc(483 * var(--u));
      height: calc(72 * var(--u));
      border-radius: calc(20 * var(--u));
      display: flex;
      align-items: center;
      justify-content: center;
      gap: calc(10 * var(--u));
      background: #fff;
      color: var(--button);
      font-size: calc(36 * var(--u));
      line-height: 1;
      font-weight: 400;
    }

    .price-strip::before {
      content: "";
      width: calc(38 * var(--u));
      height: calc(38 * var(--u));
      border-radius: 50%;
      background: var(--button);
    }

    .challenge-card h3 {
      position: absolute;
      left: 50%;
      top: calc(432 * var(--u));
      transform: translateX(-50%);
      width: calc(484 * var(--u));
      color: var(--hover);
      font-size: calc(25 * var(--u));
      line-height: 1.25;
      font-weight: 400;
      text-align: center;
      white-space: normal;
      overflow-wrap: anywhere;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .challenge-actions {
      position: absolute;
      left: 50%;
      top: calc(500 * var(--u));
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: calc(10 * var(--u));
    }

    .challenge-card.tall .challenge-actions {
      top: calc(508 * var(--u));
    }

    .small-btn {
      height: calc(57 * var(--u));
      border-radius: calc(27 * var(--u));
      border: 1px solid #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: calc(18 * var(--u));
      line-height: 1;
      font-weight: 500;
      white-space: nowrap;
    }

    .small-btn.details {
      width: calc(136 * var(--u));
    }

    .small-btn.cart {
      width: calc(229 * var(--u));
      gap: calc(10 * var(--u));
      background: var(--accent);
    }

    .heart {
      width: calc(36 * var(--u));
      height: calc(36 * var(--u));
      display: grid;
      place-items: center;
      color: #fff;
      font-size: calc(28 * var(--u));
      line-height: 1;
    }

    .challenge-actions {
      justify-content: center;
    }

    .catalog {
      height: auto;
      min-height: 0;
      padding: calc(96 * var(--u)) 0 calc(120 * var(--u));
    }

    .landing .design-section > .catalog-container {
      position: relative;
      width: var(--section-inner-width);
      margin-left: calc(var(--content-offset) + var(--section-gutter));
    }

    .catalog .section-title {
      position: relative;
      top: auto;
      width: 100%;
      margin-left: 0;
    }

    .challenge-grid {
      position: relative;
      top: auto;
      width: 100%;
      margin-top: calc(54 * var(--u));
      margin-left: 0;
      grid-template-columns: repeat(auto-fit, calc(523 * var(--u)));
      justify-content: center;
    }

    .included {
      height: calc(652 * var(--u));
      min-height: 380px;
    }

    .included .section-title {
      position: absolute;
      left: var(--section-gutter);
      top: 0;
      width: var(--section-inner-width);
    }

    .included .section-kicker {
      position: absolute;
      left: var(--section-gutter);
      top: calc(99 * var(--u));
      width: var(--section-inner-width);
    }

    .included-grid {
      position: absolute;
      left: var(--section-gutter);
      top: calc(150 * var(--u));
      width: var(--section-inner-width);
      display: grid;
      grid-template-columns: repeat(4, calc(388 * var(--u)));
      column-gap: calc(15 * var(--u));
      row-gap: calc(25 * var(--u));
      align-items: center;
    }

    .included-card,
    .included-cta {
      height: calc(200 * var(--u));
      border-radius: calc(12 * var(--u));
      background: rgba(11, 99, 172, 0.14);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: calc(9 * var(--u));
      color: var(--deep);
      text-align: center;
      font-size: calc(20 * var(--u));
      line-height: 1.25;
    }

    .included-card-head {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: calc(9 * var(--u));
    }

    .included-card p {
      width: 100%;
      margin: 0;
      padding: 0 calc(10 * var(--u));
    }

    .included-card .number-pill {
      position: static;
      width: calc(92 * var(--u));
      height: calc(51 * var(--u));
      border-color: var(--text);
      color: var(--text);
      font-size: calc(24 * var(--u));
    }

    .included-cta {
      grid-column: span 2;
      height: calc(206 * var(--u));
      flex-direction: row;
      border: 0;
      border-radius: calc(15 * var(--u));
      background: var(--accent);
      box-shadow: calc(3 * var(--u)) calc(8 * var(--u)) calc(14.1 * var(--u)) rgba(126, 196, 216, 0.53);
      color: #fff;
      font-size: calc(24 * var(--u));
      font-weight: 500;
    }

    .included-cta img {
      width: calc(32 * var(--u));
      height: calc(46 * var(--u));
    }

    .how {
      height: calc(903 * var(--u));
      min-height: 560px;
      color: #fff;
      background:
        url("how-bg.webp") center / cover no-repeat,
        radial-gradient(ellipse calc(730 * var(--u)) calc(500 * var(--u)) at 18% 32%, rgba(255, 228, 164, 0.62), rgba(196, 159, 247, 0.52) 43%, transparent 70%),
        radial-gradient(ellipse calc(820 * var(--u)) calc(720 * var(--u)) at 91% 48%, rgba(50, 146, 255, 0.76), transparent 70%),
        radial-gradient(ellipse calc(830 * var(--u)) calc(580 * var(--u)) at 28% 86%, rgba(18, 222, 221, 0.84), transparent 70%),
        linear-gradient(126deg, #0a3156 0%, #1bbfd7 48%, #2486f4 100%);
    }

    .how .gradient-bg {
      background:
        url("how-bg.webp") center / cover no-repeat,
        radial-gradient(ellipse calc(730 * var(--u)) calc(500 * var(--u)) at 18% 32%, rgba(255, 228, 164, 0.62), rgba(196, 159, 247, 0.52) 43%, transparent 70%),
        radial-gradient(ellipse calc(820 * var(--u)) calc(720 * var(--u)) at 91% 48%, rgba(50, 146, 255, 0.76), transparent 70%),
        radial-gradient(ellipse calc(830 * var(--u)) calc(580 * var(--u)) at 28% 86%, rgba(18, 222, 221, 0.84), transparent 70%),
        linear-gradient(126deg, #0a3156 0%, #1bbfd7 48%, #2486f4 100%);
    }

    .how .section-title {
      position: absolute;
      left: calc(610 * var(--u));
      top: calc(100 * var(--u));
      width: calc(700 * var(--u));
      display: flex;
      align-items: center;
      justify-content: center;
      gap: calc(4 * var(--u));
      color: #fff;
      text-align: center;
      white-space: nowrap;
    }

    .how-card {
      position: absolute;
      top: calc(232 * var(--u));
      width: calc(512 * var(--u));
      height: calc(540 * var(--u));
      border: 2px solid rgba(255, 255, 255, 0.82);
      border-radius: calc(40 * var(--u));
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      padding: calc(92 * var(--u)) calc(60 * var(--u)) 0;
    }

    .how-card:nth-of-type(1) { left: calc(166 * var(--u)); }
    .how-card:nth-of-type(2) { left: calc(704 * var(--u)); }
    .how-card:nth-of-type(3) { left: calc(1242 * var(--u)); }

    .how-step {
      position: absolute;
      left: calc(61 * var(--u));
      top: calc(92 * var(--u));
      color: #fff;
      font-size: calc(24 * var(--u));
      line-height: 1;
    }

    .how-step::before {
      content: "";
      position: absolute;
      left: calc(-14 * var(--u));
      top: calc(-9 * var(--u));
      width: calc(8 * var(--u));
      height: calc(47 * var(--u));
      background: url("how-step-marker.svg") center / 100% 100% no-repeat;
    }

    .how-card h3 {
      margin-top: calc(72 * var(--u));
      color: #fff;
      font-size: calc(36 * var(--u));
      line-height: 1.25;
      font-weight: 800;
    }

    .how-card p {
      margin-top: calc(12 * var(--u));
      width: calc(388 * var(--u));
      color: #bff1ff;
      font-size: calc(24 * var(--u));
      line-height: 1.28;
      font-weight: 400;
    }

    .how-card strong {
      color: #fff;
      font-weight: 400;
    }

    .cost {
      height: calc(469 * var(--u));
      min-height: 260px;
      display: grid;
      place-items: center;
      text-align: center;
    }

    .cost h2 {
      margin-left: 0 !important;
      width: calc(1597 * var(--u));
      color: var(--ink);
      font-size: calc(78 * var(--u));
      line-height: 1.43;
      font-weight: 800;
    }

    .cost h2 span {
      color: #366379;
    }

    .reviews {
      height: calc(938 * var(--u));
      min-height: 560px;
      color: #fff;
    }

    .reviews .gradient-bg {
      background: url("reviews-bg.webp") center / cover no-repeat;
    }

    .reviews .section-title {
      position: absolute;
      left: calc(160 * var(--u));
      top: calc(76 * var(--u));
      width: calc(1597 * var(--u));
      color: #fff;
      text-align: center;
      font-size: calc(72 * var(--u));
    }

    .review-stage {
      position: absolute;
      left: calc(160 * var(--u));
      top: calc(173 * var(--u));
      width: calc(1597 * var(--u));
    }

    .review-grid {
      display: flex;
      gap: calc(14 * var(--u));
    }

    .review-photo {
      width: calc(523 * var(--u));
      height: calc(589 * var(--u));
      border: 2px solid #fff;
      box-shadow: calc(10 * var(--u)) calc(14 * var(--u)) calc(6.5 * var(--u)) rgba(181, 235, 255, 0.51), 0 4px 4px rgba(255, 255, 255, 0.25);
      overflow: hidden;
    }

    .review-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .review-arrows {
      position: absolute;
      right: 0;
      top: calc(620 * var(--u));
      margin-left: 0 !important;
      display: flex;
      gap: calc(13 * var(--u));
    }

    .review-arrows span {
      width: calc(50 * var(--u));
      height: calc(50 * var(--u));
      border-radius: calc(8 * var(--u));
      display: grid;
      place-items: center;
      background: #fff;
      color: var(--ink);
      font-size: calc(42 * var(--u));
      line-height: 1;
    }

    .faq {
      height: calc(923 * var(--u));
      min-height: 620px;
    }

    .faq .section-title {
      position: absolute;
      left: calc(160 * var(--u));
      top: calc(70 * var(--u));
      width: calc(1597 * var(--u));
    }

    .faq-layout {
      position: absolute;
      left: calc(316 * var(--u));
      top: calc(217 * var(--u));
      width: calc(1289 * var(--u));
      display: flex;
      gap: calc(50 * var(--u));
      align-items: center;
    }

    .faq-image {
      width: calc(549 * var(--u));
      height: calc(549 * var(--u));
      object-fit: cover;
    }

    .faq-list {
      width: calc(690 * var(--u));
      display: flex;
      flex-direction: column;
      gap: calc(15 * var(--u));
      overflow-anchor: none;
    }

    .faq-item {
      width: 100%;
      height: calc(78.861 * var(--u));
      border-radius: calc(3.48 * var(--u));
      background: #fff;
      box-shadow: inset calc(2.83 * var(--u)) 0 0 #35a3c2, 0 calc(0.378 * var(--u)) 0 #35a3c2;
      color: var(--ink);
      overflow: hidden;
    }

    .faq-item[open] {
      height: calc(122.006 * var(--u));
    }

    .faq-item summary {
      min-height: calc(78.861 * var(--u));
      padding: calc(20.7 * var(--u)) calc(18.9 * var(--u));
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      list-style: none;
      font-size: calc(19.715 * var(--u));
      line-height: 1.25;
      font-weight: 800;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "⌄";
      font-size: calc(26 * var(--u));
      line-height: 1;
    }

    .faq-item[open] summary::after {
      transform: rotate(180deg);
    }

    .faq-item p {
      padding: 0 calc(20 * var(--u)) calc(22 * var(--u));
      max-height: calc(43.145 * var(--u));
      overflow: hidden;
      color: var(--text);
      font-size: calc(16 * var(--u));
      line-height: 1.3;
    }

    .footer {
      height: calc(445 * var(--u));
      min-height: 300px;
      color: #bcedfa;
      background: #044376;
    }

    .footer-bg {
      position: absolute;
      inset: 0;
      background: url("footer-bg.webp") center / cover no-repeat;
    }

    .footer-content {
      position: absolute;
      left: calc(164 * var(--u));
      top: calc(92 * var(--u));
      width: calc(1593 * var(--u));
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      z-index: 1;
    }

    .footer-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .footer .brand {
      gap: calc(8 * var(--u));
      font-size: calc(24 * var(--u));
      font-weight: 800;
      color: #fff;
    }

    .footer .brand img {
      width: calc(35 * var(--u));
      height: calc(35 * var(--u));
      border-radius: calc(6.813 * var(--u));
    }

    .footer-socials {
      display: flex;
      gap: calc(14 * var(--u));
      margin-top: calc(87 * var(--u));
    }

    .footer-social {
      position: relative;
      width: calc(48 * var(--u));
      height: calc(48 * var(--u));
      flex: 0 0 calc(48 * var(--u));
      overflow: visible;
    }

    .footer-social img {
      position: absolute;
      left: calc(-12 * var(--u));
      top: calc(-12.4 * var(--u));
      width: calc(85 * var(--u));
      height: calc(81 * var(--u));
      max-width: none;
    }

    .footer-social.instagram img {
      left: calc(-8.4 * var(--u));
      width: calc(81 * var(--u));
    }

    .footer-social.telegram {
      display: block;
      text-decoration: none;
    }

    .footer-social.telegram svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      filter: drop-shadow(0 calc(10 * var(--u)) calc(20 * var(--u)) rgba(0, 91, 151, 0.22));
    }

    .telegram-bg {
      fill: #28a8ea;
    }

    .telegram-mark {
      fill: #fff;
    }

    .footer-copy {
      position: absolute;
      left: calc(164 * var(--u));
      top: calc(365 * var(--u));
      z-index: 1;
      color: #bcedfa;
      font-size: calc(18 * var(--u));
      line-height: 1.2;
      white-space: nowrap;
    }

    .footer-nav {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: calc(13 * var(--u));
      color: #bcedfa;
      font-size: calc(18 * var(--u));
      line-height: 1.2;
      white-space: nowrap;
    }

    .footer-nav a {
      color: #bcedfa;
    }

    .footer-nav a:hover {
      color: #fff;
    }

    .footer-nav-current {
      font-weight: 500;
    }

    @media (min-width: 900px) {
      html[lang="ru"] .hero-copy h1 {
        font-size: calc(73 * var(--u));
      }

      html[lang="ru"] .how .section-title {
        font-size: calc(72 * var(--u));
      }
    }

    @media (max-width: 899px) {
      :root {
        --u: 1px;
      }

      .design-section {
        height: auto;
        min-height: 0;
        padding: 48px 18px;
      }

      .gradient-bg,
      .hero-frame,
      .hero-divider {
        display: none;
      }

      .hero {
        padding-top: 26px;
        background:
          radial-gradient(ellipse 80% 24% at 18% 15%, rgba(255, 238, 164, 0.78), rgba(225, 169, 248, 0.5) 48%, transparent 72%),
          radial-gradient(ellipse 78% 64% at 90% 34%, rgba(52, 136, 255, 0.66), transparent 68%),
          linear-gradient(132deg, #0b63ac 0%, #20bfdc 49%, #1a82ee 100%);
        color: #fff;
      }

      .hero-nav,
      .hero-copy,
      .hero-main-card,
      .hero-support-card,
      .review-badge,
      .about-title,
      .about-kicker,
      .about-copy,
      .about-visual,
      .program-detail,
      .catalog-container,
      .catalog .section-title,
      .challenge-grid,
      .included .section-title,
      .included .section-kicker,
      .included-grid,
      .how .section-title,
      .how-card,
      .reviews .section-title,
      .review-stage,
      .review-grid,
      .review-arrows,
      .faq .section-title,
      .faq-layout {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        width: 100%;
      }

      .hero-nav {
        height: auto;
        min-height: 0;
        margin-bottom: 44px;
      }

      .brand {
        gap: 8px;
        font-size: 18px;
      }

      .brand img {
        width: 30px;
        height: 30px;
        border-radius: 6px;
      }

      .language-form select {
        min-width: 148px;
        max-width: 148px;
        padding: 8px 28px 8px 12px;
        background-position: calc(100% - 16px) 50%, calc(100% - 12px) 50%, 0 0;
        font-size: 13px;
      }

      .hero-copy h1,
      .section-title,
      .catalog .section-title,
      .how .section-title,
      .reviews .section-title,
      .cost h2 {
        font-size: clamp(36px, 10.5vw, 54px);
        line-height: 1.08;
      }

      .hero-copy .line {
        white-space: normal;
      }

      .hero-highlight-row {
        gap: 12px;
        margin-top: 10px;
        flex-wrap: wrap;
      }

      .hero-highlight {
        height: 58px;
        padding: 0 12px;
        border-radius: 10px;
        font-size: 42px;
      }

      .hero-spark {
        width: 42px;
        height: 52px;
      }

      .hero-description {
        width: 100%;
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.35;
      }

      .hero-facts,
      .hero-actions,
      .review-top,
      .footer-grid,
      .faq-layout {
        flex-direction: column;
      }

      .hero-facts {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .fact-card,
      .fact-card:nth-child(2),
      .fact-card:nth-child(3),
      .hero-btn.primary,
      .hero-btn.secondary {
        width: 100%;
      }

      .fact-card {
        height: 82px;
        padding: 9px 14px;
        border-radius: 18px;
        gap: 6px;
      }

      .fact-label,
      .fact-card strong,
      .fact-card small {
        font-size: 20px;
      }

      .fact-label {
        gap: 8px;
      }

      .fact-label::before {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .hero-btn {
        height: 52px;
        border-radius: 26px;
        font-size: 14px;
      }

      .btn-circle {
        width: 38px;
        height: 38px;
        margin-left: 16px;
        flex-basis: 38px;
      }

      .hero-card {
        margin-top: 28px;
        border-radius: 20px;
      }

      .hero-support-card {
        display: none !important;
      }

      .hero-main-card {
        width: min(100%, 495px);
        height: 420px;
      }

      .hero-main-card > img {
        left: 12%;
        width: 88%;
      }

      .hero-card-logo {
        left: 24px;
        top: 24px;
        gap: 8px;
        font-size: 18px;
      }

      .hero-card-logo img {
        width: 28px;
        height: 28px;
      }

      .review-badge {
        width: 100%;
        max-width: 360px;
        height: auto;
        min-height: 168px;
        margin-top: -86px;
        padding: 23px;
        border-radius: 18px;
      }

      .review-top {
        align-items: flex-start;
        gap: 6px;
      }

      .review-title {
        font-size: 18px;
        line-height: 23px;
      }

      .stars {
        font-size: 16px;
      }

      .platforms {
        width: 242px;
        margin-top: 14px;
        font-size: 18px;
      }

      .social-icon {
        width: 24px;
        height: 24px;
      }

      .review-bottom {
        width: 285.62px;
        height: 46.411px;
        align-items: center;
        justify-content: center;
        gap: 13.923px;
        margin-top: 14px;
      }

      .review-arrow {
        width: 27.847px;
        height: 27.847px;
        flex-basis: 27.847px;
      }

      .review-score {
        font-size: 23px;
        line-height: 28px;
      }

      .avatars {
        width: 194.927px;
        height: 46.411px;
      }

      .avatar-frame,
      .avatar-count {
        width: 46.411px;
        height: 46.411px;
        flex-basis: 46.411px;
        margin-right: -9.282px;
      }

      .avatar-frame img,
      .avatar-count img {
        left: -4.641px;
        width: 55.693px;
        height: 55.693px;
      }

      .avatar-count {
        margin-right: 0;
      }

      .about,
      .catalog,
      .included,
      .how,
      .reviews,
      .faq {
        padding-top: 58px;
        padding-bottom: 58px;
      }

      .about-kicker,
      .included .section-kicker {
        margin-top: 10px;
        font-size: 20px;
      }

      .about-copy {
        gap: 28px;
        margin-top: 36px;
        font-size: 20px;
        line-height: 1.32;
      }

      .about-visual {
        height: auto;
        aspect-ratio: 523 / 575;
        margin-top: 36px;
        border-radius: 20px;
      }

      .about-visual-photo {
        left: 4.015%;
        top: 4.174%;
        width: 91.969%;
        height: 73.043%;
      }

      .about-visual-caption {
        left: 24px;
        right: 24px;
        bottom: 24px;
        font-size: clamp(25px, 7.2vw, 30px);
        line-height: 1.18;
        text-wrap: balance;
      }

      .program-detail-bg,
      .program-butterfly {
        display: none;
      }

      .program-detail {
        margin-top: 54px;
        margin-left: -18px;
        width: calc(100% + 36px);
        height: auto;
        padding: 38px 18px 0;
        gap: 22px;
        overflow: hidden;
        background: url("program-detail-bg.webp") top center / cover no-repeat;
      }

      .program-card-stack {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .program-info-card,
      .program-info-card:nth-child(2) {
        width: 100%;
        height: auto;
        min-height: 548px;
        border-radius: 24px;
      }

      .program-card-media,
      .program-info-card:nth-child(2) .program-card-media {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: 250px;
        border-radius: 7px;
        transform: none;
      }

      .program-card-title {
        position: relative;
        left: auto;
        top: auto;
        width: min(385px, calc(100% - 42px));
        height: 58px;
        margin: -29px auto 0;
        border-radius: 46px;
        padding: 10px;
        font-size: clamp(22px, 6.4vw, 28px);
        transform: none;
      }

      .program-card-body {
        position: relative;
        left: auto;
        top: auto;
        width: calc(100% - 48px);
        margin: 20px auto 30px;
        transform: none;
        font-size: 18px;
        line-height: 1.25;
      }

      .program-card-body p + p {
        margin-top: 10px;
      }

      .program-rates {
        width: 100%;
        gap: 12px;
      }

      .program-rate,
      .program-rate.curator {
        min-height: 0;
        border-radius: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px;
      }

      .program-rate-title,
      .program-rate.curator .program-rate-title {
        flex: 0 1 auto;
        width: 100%;
        font-size: clamp(26px, 7vw, 36px);
        text-align: left;
        white-space: nowrap;
        overflow-wrap: normal;
      }

      .program-rate-meta,
      .program-rate-copy {
        width: 100%;
        flex: 0 1 auto;
        font-size: 18px;
        line-height: 1.25;
      }

      .program-rate-copy {
        align-items: flex-start;
      }

      .program-rate-icon {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
        margin-top: 1px;
      }

      .program-add-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
      }

      .number-wrap {
        width: 102px;
        height: 82px;
      }

      .number-wrap::before {
        left: 12px;
        top: -1px;
        width: 82px;
        height: 62px;
      }

      .number-pill {
        left: 9px;
        top: 21px;
        width: 92px;
        height: 51px;
        border-radius: 32px;
        font-size: 24px;
      }

      .catalog {
        background: url("program-detail-bg.webp") center bottom / cover no-repeat;
      }

      .catalog .section-title,
      .included .section-title,
      .how .section-title,
      .reviews .section-title,
      .faq .section-title {
        text-align: left;
      }

      .challenge-grid {
        margin-top: 34px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .challenge-card,
      .challenge-card.tall {
        width: 100%;
        height: 540px;
        border-radius: 20px;
      }

      .challenge-image {
        left: 16px;
        top: 16px;
        width: calc(100% - 32px);
        height: 340px;
      }

      .price-strip {
        left: 16px;
        top: 320px;
        width: calc(100% - 32px);
        height: 64px;
        font-size: 28px;
      }

      .price-strip::before {
        width: 30px;
        height: 30px;
      }

      .challenge-card h3 {
        top: 408px;
        width: calc(100% - 36px);
        font-size: 22px;
      }

      .challenge-actions,
      .challenge-card.tall .challenge-actions {
        top: 484px;
        width: calc(100% - 36px);
        gap: 8px;
      }

      .small-btn {
        height: 46px;
        font-size: 13px;
      }

      .small-btn.details {
        width: 108px;
      }

      .small-btn.cart {
        width: 182px;
      }

      .heart {
        width: 32px;
        height: 32px;
        font-size: 24px;
      }

      .included-grid {
        margin-top: 34px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .included-card,
      .included-cta {
        height: 154px;
        border-radius: 12px;
        font-size: 18px;
        padding: 18px;
      }

      .included-card-head {
        gap: 8px;
      }

      .included-card .number-pill {
        width: 80px;
        height: 44px;
        font-size: 20px;
      }

      .included-cta {
        grid-column: auto;
        height: 154px;
        font-size: 20px;
      }

      .included-cta img {
        width: 28px;
        height: 40px;
      }

      .how {
        background:
          url("how-bg.webp") center / cover no-repeat,
          radial-gradient(ellipse 72% 56% at 18% 32%, rgba(255, 228, 164, 0.62), rgba(196, 159, 247, 0.52) 43%, transparent 70%),
          radial-gradient(ellipse 74% 76% at 91% 48%, rgba(50, 146, 255, 0.76), transparent 70%),
          radial-gradient(ellipse 74% 58% at 28% 86%, rgba(18, 222, 221, 0.84), transparent 70%),
          linear-gradient(126deg, #0a3156 0%, #1bbfd7 48%, #2486f4 100%);
      }

      .how .section-title {
        display: block;
        white-space: normal;
      }

      .how-card {
        height: auto;
        min-height: 260px;
        margin-top: 18px;
        padding: 64px 28px 28px;
        border-radius: 28px;
      }

      .how-step {
        left: 44px;
        top: 42px;
        font-size: 20px;
      }

      .how-step::before {
        left: -14px;
        top: -6px;
        width: 7px;
        height: 42px;
      }

      .how-card h3 {
        margin-top: 24px;
        font-size: 28px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
      }

      .how-card p {
        width: 100%;
        margin-top: 12px;
        font-size: 18px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
      }

      .about {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 52px 18px 0;
      }

      .about-title {
        order: 1;
        font-size: clamp(40px, 11vw, 52px);
        line-height: 0.98;
      }

      .about-kicker {
        order: 2;
        margin-top: 12px;
        font-size: 18px;
        line-height: 1.24;
      }

      .about-visual {
        order: 3;
        width: min(100%, 420px);
        margin: 30px auto 0;
      }

      .about-copy {
        width: 100%;
        gap: 22px;
        margin-top: 28px;
        font-size: 18px;
        line-height: 1.28;
        align-items: center;
        text-align: center;
      }

      .about-copy.left {
        order: 4;
      }

      .about-copy.right {
        order: 5;
        margin-top: 22px;
      }

      .about-item {
        gap: 10px;
        align-items: center;
      }

      .about-item p {
        width: 100%;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
      }

      .number-wrap {
        width: 82px;
        height: 66px;
        flex: 0 0 auto;
      }

      .program-detail {
        order: 6;
        margin-top: 44px;
        margin-left: -18px !important;
        width: calc(100% + 36px);
        padding: 34px 18px 44px;
        gap: 18px;
      }

      .program-card-stack {
        gap: 16px;
      }

      .program-info-card,
      .program-info-card:nth-child(2) {
        min-height: 0;
        border-radius: 20px;
        padding-bottom: 24px;
      }

      .program-card-media,
      .program-info-card:nth-child(2) .program-card-media {
        height: clamp(190px, 58vw, 250px);
      }

      .program-card-title {
        width: calc(100% - 42px);
        min-height: 54px;
        height: auto;
        padding: 10px 14px;
        font-size: clamp(20px, 6vw, 26px);
        line-height: 1.08;
        white-space: normal;
      }

      .program-card-body {
        width: calc(100% - 40px);
        margin: 18px auto 0;
        font-size: 16px;
        line-height: 1.28;
      }

      .program-rates {
        gap: 14px;
      }

      .program-rate,
      .program-rate.curator {
        padding: 18px;
        border-radius: 16px;
        gap: 10px;
      }

      .program-rate-title,
      .program-rate.curator .program-rate-title {
        font-size: clamp(20px, 6.2vw, 32px);
        line-height: 1.08;
      }

      .program-rate-meta,
      .program-rate-copy {
        font-size: 16px;
        line-height: 1.32;
      }

      .how {
        padding: 52px 18px;
        background:
          url("how-bg.webp") center / cover no-repeat,
          radial-gradient(ellipse 72% 56% at 18% 32%, rgba(255, 228, 164, 0.62), rgba(196, 159, 247, 0.52) 43%, transparent 70%),
          radial-gradient(ellipse 74% 76% at 91% 48%, rgba(50, 146, 255, 0.76), transparent 70%),
          radial-gradient(ellipse 74% 58% at 28% 86%, rgba(18, 222, 221, 0.84), transparent 70%),
          linear-gradient(126deg, #0a3156 0%, #1bbfd7 48%, #2486f4 100%);
      }

      .how .section-title {
        font-size: clamp(40px, 11vw, 52px);
        line-height: 1.02;
        text-align: left;
      }

      .how-card {
        min-height: 0;
        margin-top: 16px;
        padding: 58px 22px 24px;
        border-radius: 22px;
      }

      .how-step {
        left: 34px;
        top: 34px;
        font-size: 19px;
      }

      .how-card h3 {
        margin-top: 18px;
        font-size: clamp(24px, 7vw, 30px);
        line-height: 1.14;
      }

      .how-card p {
        margin-top: 10px;
        font-size: 16px;
        line-height: 1.35;
      }

      .cost {
        padding: 58px 18px;
      }

      .cost h2 {
        width: 100%;
      }

      .reviews {
        background: url("reviews-bg.webp") center / cover no-repeat;
      }

      .review-stage {
        margin-top: 28px;
      }

      .review-grid {
        margin-top: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .review-photo {
        width: 100%;
        height: 390px;
      }

      .review-arrows {
        margin-top: 18px;
        justify-content: flex-end;
      }

      .review-arrows span {
        width: 42px;
        height: 42px;
        font-size: 34px;
      }

      .faq-layout {
        margin-top: 28px;
        display: flex;
        gap: 24px;
      }

      .faq-image {
        width: min(100%, 420px);
        height: auto;
      }

      .faq-list {
        width: 100%;
        gap: 12px;
      }

      .faq-item {
        height: 68px;
      }

      .faq-item[open] {
        height: 122px;
      }

      .faq-item summary {
        min-height: 68px;
        padding: 18px;
        font-size: 17px;
      }

      .faq-item summary::after {
        font-size: 24px;
      }

      .faq-item p {
        padding: 0 18px 18px;
        max-height: 36px;
        font-size: 15px;
      }

      .footer {
        height: auto;
        min-height: 0;
        padding: 56px 18px 40px;
        background: #044376;
      }

      .footer-bg {
        display: block;
        background-position: center;
      }

      .footer-content {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .footer .brand {
        gap: 8px;
        font-size: 20px;
      }

      .footer .brand img {
        width: 30px;
        height: 30px;
        border-radius: 6px;
      }

      .footer-socials {
        gap: 12px;
        margin-top: 28px;
      }

      .footer-social {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
      }

      .footer-social img {
        left: -12px;
        top: -12.4px;
        width: 85px;
        height: 81px;
      }

      .footer-social.instagram img {
        left: -8.4px;
        width: 81px;
      }

      .footer-copy {
        position: relative;
        left: auto;
        top: auto;
        margin-top: 36px;
        font-size: 15px;
      }

      .footer-nav {
        gap: 12px;
        font-size: 16px;
      }

      .design-section > :not(.gradient-bg):not(.footer-bg):not(.program-detail-bg) {
        margin-left: 0 !important;
      }

      .hero,
      .about,
      .catalog,
      .included,
      .how,
      .cost,
      .reviews,
      .faq,
      .footer {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
      }

      .section-title,
      .hero-copy h1,
      .catalog .section-title,
      .included .section-title,
      .how .section-title,
      .reviews .section-title,
      .faq .section-title,
      .cost h2 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(34px, 10.5vw, 48px);
        line-height: 1.05;
        text-align: left;
        overflow-wrap: anywhere;
      }

      .hero {
        display: flex;
        flex-direction: column;
        min-height: 0;
        padding-top: 22px;
        padding-bottom: 44px;
      }

      .hero-nav {
        width: 100%;
        margin-bottom: 34px;
      }

      .hero-copy {
        width: 100%;
        text-align: center;
      }

      .hero-copy h1 {
        width: min(100%, 420px);
        margin-left: auto;
        margin-right: auto;
        text-align: center;
      }

      .hero-copy .line {
        text-align: center;
      }

      .hero-highlight-row {
        gap: 8px;
        justify-content: center;
      }

      .hero-highlight {
        height: auto;
        min-height: 52px;
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1;
      }

      .hero-description {
        max-width: 36rem;
      }

      .hero-facts {
        margin-top: 24px;
      }

      .fact-card {
        height: auto;
        min-height: 76px;
      }

      .hero-actions {
        margin-top: 18px;
        gap: 10px;
      }

      .hero-card {
        align-self: center;
      }

      .hero-main-card {
        height: clamp(300px, 94vw, 420px);
      }

      .hero-support-card {
        width: min(82%, 330px);
        height: clamp(220px, 64vw, 285px);
        margin-top: -92px;
      }

      .hero-main-card > img,
      .hero-support-card > img {
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .review-badge {
        margin-top: -58px;
        align-self: center;
      }

      .about {
        padding-top: 48px;
      }

      .about-copy {
        font-size: 17px;
      }

      .about-copy.left,
      .about-copy.right {
        left: auto;
        top: auto;
        width: 100%;
        transform: none;
      }

      .about-item {
        max-width: 100%;
      }

      .about-visual {
        max-width: 420px;
      }

      .landing .design-section.about > .program-detail.program-detail {
        width: calc(100% + 32px);
        max-width: none;
        margin-left: -16px !important;
        margin-right: -16px;
        padding: 32px 16px 42px;
        border-radius: 0;
      }

      .program-card-stack {
        width: min(100%, 420px);
        margin: 0 auto;
      }

      .program-info-card,
      .program-info-card:nth-child(2) {
        width: 100%;
      }

      .program-card-media,
      .program-info-card:nth-child(2) .program-card-media {
        aspect-ratio: 1.72;
        height: auto;
      }

      .program-rates {
        width: min(100%, 420px);
        margin-left: auto;
        margin-right: auto;
      }

      .program-rate,
      .program-rate.curator {
        width: 100%;
      }

      .program-rate-copy {
        gap: 8px;
      }

      .program-rate.curator .program-rate-title {
        font-size: 22px;
        line-height: 1.08;
        white-space: normal;
      }

      .catalog {
        padding-top: 52px;
      }

      .challenge-grid {
        margin-top: 26px;
        gap: 16px;
      }

      .challenge-card,
      .challenge-card.tall {
        height: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        padding: 16px;
      }

      .challenge-image {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 1.32;
      }

      .price-strip {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: 58px;
        margin-top: -30px;
        font-size: clamp(22px, 7vw, 28px);
        z-index: 2;
      }

      .challenge-card h3 {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 18px;
        font-size: 21px;
        line-height: 1.18;
      }

      .challenge-actions,
      .challenge-card.tall .challenge-actions {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 14px;
        display: grid;
        grid-template-columns: minmax(92px, 0.8fr) minmax(156px, 1.4fr) 36px;
        align-items: center;
      }

      .small-btn.details,
      .small-btn.cart {
        width: 100%;
      }

      .included {
        padding-top: 52px;
      }

      .included .section-kicker {
        font-size: 17px;
      }

      .included-grid {
        margin-top: 26px;
      }

      .included-card,
      .included-cta {
        height: auto;
        min-height: 132px;
      }

      .included-card-head {
        align-items: center;
      }

      .how {
        padding-top: 52px;
        padding-bottom: 52px;
      }

      .how-card {
        width: 100%;
      }

      .how-card:nth-of-type(1),
      .how-card:nth-of-type(2),
      .how-card:nth-of-type(3) {
        left: auto;
        top: auto;
      }

      .cost {
        min-height: 0;
        padding-top: 56px;
        padding-bottom: 56px;
      }

      .cost h2 {
        margin-left: 0 !important;
        text-align: center;
      }

      .reviews {
        padding-top: 52px;
        padding-bottom: 52px;
      }

      .review-stage {
        margin-top: 26px;
      }

      .review-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 86%);
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
      }

      .review-photo {
        height: auto;
        aspect-ratio: 523 / 589;
        scroll-snap-align: start;
      }

      .review-arrows {
        width: 100%;
        margin-top: 14px;
        justify-content: flex-end;
      }

      .faq {
        padding-top: 52px;
        padding-bottom: 52px;
      }

      .faq-layout {
        gap: 20px;
      }

      .faq-image {
        width: min(100%, 360px);
        align-self: center;
      }

      .faq-item {
        height: 68px;
        min-height: 68px;
      }

      .faq-item[open] {
        height: 122px;
        min-height: 122px;
      }

      .faq-item p {
        max-height: 36px;
      }

      .footer {
        padding-left: 16px;
        padding-right: 16px;
      }

      .footer-content {
        gap: 28px;
      }

      .footer-nav {
        white-space: normal;
      }
    }

    @media (max-width: 899px) {
      .catalog {
        height: auto !important;
        min-height: 0 !important;
        padding-top: clamp(34px, 9vw, 56px) !important;
        padding-bottom: clamp(56px, 12vw, 84px) !important;
        background-position: center top;
      }

      .landing .design-section > .catalog-container {
        position: relative !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .catalog .section-title {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        margin: 0 !important;
        text-align: left !important;
      }

      .challenge-grid {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        margin: clamp(24px, 6vw, 36px) 0 0 !important;
        display: flex !important;
        grid-template-columns: none !important;
        gap: 18px !important;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 14px;
        padding: 0 14px 10px;
        margin-left: -14px !important;
        margin-right: -14px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .challenge-grid::-webkit-scrollbar {
        display: none;
      }

      .challenge-grid::before,
      .challenge-grid::after {
        content: "";
        flex: 0 0 max(14px, calc((100% - min(88%, 420px)) / 2));
        scroll-snap-align: none;
      }

      .challenge-card,
      .challenge-card.tall {
        width: auto !important;
        flex: 0 0 min(88%, 420px);
        max-width: none;
        margin: 0;
        scroll-snap-align: center;
        scroll-snap-stop: normal;
        user-select: none;
        -webkit-user-drag: none;
      }
    }

    @media (max-width: 640px) {
      .catalog {
        padding-left: 14px;
        padding-right: 14px;
      }

      .catalog .section-title {
        font-size: clamp(34px, 11vw, 44px);
        line-height: 1.05;
      }

      .challenge-grid {
        gap: 16px !important;
      }

      .challenge-card,
      .challenge-card.tall {
        border-radius: 18px;
        padding: 14px;
      }

      .challenge-image {
        border-radius: 16px;
      }
    }

/* Custom landing block layout. */
    .program-detail {
      top: calc(1088 * var(--u));
      height: calc(1088 * var(--u));
      justify-content: flex-start;
      gap: calc(24 * var(--u));
    }

    .how-section-head {
      width: 100%;
      color: #fff;
      z-index: 2;
    }

    .how-section-head span {
      display: inline-flex;
      align-items: center;
      gap: calc(13 * var(--u));
      margin-bottom: calc(22 * var(--u));
      color: #fff;
      font-size: calc(15 * var(--u));
      line-height: 1;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .how-section-head span::before {
      content: "";
      width: calc(34 * var(--u));
      height: calc(3 * var(--u));
      border-radius: calc(3 * var(--u));
      background: var(--accent);
    }

    .how-section-head h2 {
      margin: 0;
      color: #fff;
      font-size: calc(68 * var(--u));
      line-height: 1.04;
      font-weight: 900;
      letter-spacing: 0;
    }

    .program-card-stack {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: stretch;
      gap: calc(28 * var(--u));
    }

    .program-info-card {
      width: 100%;
      height: calc(500 * var(--u));
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: calc(24 * var(--u));
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
      box-shadow: 0 calc(30 * var(--u)) calc(70 * var(--u)) calc(-26 * var(--u)) rgba(8, 26, 61, 0.5);
      backdrop-filter: blur(calc(10 * var(--u)));
    }

    .program-card-media {
      position: relative;
      left: auto;
      top: auto;
      width: 100%;
      height: calc(200 * var(--u));
      flex: 0 0 calc(200 * var(--u));
      border-radius: calc(24 * var(--u)) calc(24 * var(--u)) 0 0;
      transform: none;
    }

    .program-card-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(10, 26, 57, 0.55));
      pointer-events: none;
    }

    .program-card-title {
      position: relative;
      left: auto;
      top: auto;
      width: auto;
      height: auto;
      min-height: calc(42 * var(--u));
      justify-content: flex-start;
      margin: calc(18 * var(--u)) calc(26 * var(--u)) calc(12 * var(--u));
      padding: 0;
      border-radius: 0;
      background: transparent;
      color: #fff;
      font-size: calc(24 * var(--u));
      line-height: 1.18;
      text-align: left;
      white-space: normal;
      filter: none;
      transform: none;
    }

    .program-card-title::before {
      content: "0" counter(program-card);
      counter-increment: program-card;
      width: calc(36 * var(--u));
      height: calc(36 * var(--u));
      margin-right: calc(12 * var(--u));
      border-radius: calc(10 * var(--u));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 calc(36 * var(--u));
      background: var(--accent);
      color: #061b17;
      font-size: calc(14 * var(--u));
      font-weight: 900;
      vertical-align: middle;
    }

    .program-card-stack {
      counter-reset: program-card;
    }

    .program-card-body {
      position: relative;
      left: auto;
      top: auto;
      width: auto;
      margin: 0 calc(26 * var(--u)) calc(22 * var(--u));
      transform: none;
      color: rgba(226, 244, 255, 0.82);
      font-size: calc(17 * var(--u));
      line-height: 1.42;
      white-space: pre-line;
    }

    .program-card-body p + p {
      margin-top: calc(14 * var(--u));
      padding-top: calc(14 * var(--u));
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(226, 244, 255, 0.68);
    }

    .program-rates {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: calc(28 * var(--u));
    }

    .program-rate,
    .program-rate.curator {
      min-height: calc(236 * var(--u));
      align-items: flex-start;
      flex-direction: column;
      gap: calc(14 * var(--u));
      padding: calc(32 * var(--u));
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: calc(24 * var(--u));
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
      box-shadow: 0 calc(30 * var(--u)) calc(70 * var(--u)) calc(-26 * var(--u)) rgba(8, 26, 61, 0.45);
    }

    .program-rate.curator {
      border-color: rgba(19, 194, 148, 0.6);
      background: linear-gradient(180deg, rgba(19, 194, 148, 0.14), rgba(255, 255, 255, 0.04));
    }

    .program-rate-title,
    .program-rate.curator .program-rate-title {
      flex: 0 1 auto;
      width: 100%;
      font-size: calc(26 * var(--u));
      line-height: 1.15;
      text-align: left;
      white-space: normal;
    }

    .program-rate-meta {
      color: rgba(226, 244, 255, 0.82);
      font-size: calc(15 * var(--u));
      font-weight: 700;
    }

    .program-rate-meta .program-rate-icon {
      width: calc(8 * var(--u));
      height: calc(8 * var(--u));
      flex-basis: calc(8 * var(--u));
      border-radius: 50%;
      background: var(--accent);
    }

    .program-rate-meta .program-rate-icon svg,
    .program-rate-copy .program-rate-icon {
      display: none;
    }

    .program-rate-copy {
      flex: 1 1 auto;
      width: 100%;
      align-items: flex-start;
      color: rgba(226, 244, 255, 0.82);
      font-size: calc(17 * var(--u));
      line-height: 1.48;
    }

    .program-rate-cta {
      width: 100%;
      min-height: calc(54 * var(--u));
      border: 1.5px solid rgba(255, 255, 255, 0.35);
      border-radius: calc(12 * var(--u));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: calc(16 * var(--u));
      font-weight: 900;
      text-decoration: none;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .program-rate-cta.primary {
      border-color: transparent;
      background: var(--accent);
      color: #061b17;
    }

    .program-rate-cta:hover,
    .program-rate-cta:focus-visible {
      transform: translateY(calc(-2 * var(--u)));
      border-color: rgba(255, 255, 255, 0.7);
    }

    .included {
      height: calc(700 * var(--u));
    }

    .included-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      column-gap: calc(22 * var(--u));
      row-gap: calc(22 * var(--u));
    }

    .included-card {
      height: calc(174 * var(--u));
      align-items: flex-start;
      justify-content: flex-start;
      gap: calc(24 * var(--u));
      padding: calc(28 * var(--u));
      border: 1px solid #e3ecf8;
      border-radius: calc(16 * var(--u));
      background: #fff;
      box-shadow: 0 calc(1 * var(--u)) calc(2 * var(--u)) rgba(11, 26, 51, 0.05), 0 calc(8 * var(--u)) calc(22 * var(--u)) calc(-14 * var(--u)) rgba(11, 26, 51, 0.18);
      text-align: left;
    }

    .included-card-head {
      justify-content: flex-start;
    }

    .included-card .number-pill {
      width: calc(42 * var(--u));
      height: calc(42 * var(--u));
      border: 0;
      border-radius: calc(12 * var(--u));
      background: #0fa;
      color: #28333a;
      font-size: calc(15 * var(--u));
      font-weight: 900;
    }

    .included-card p {
      padding: 0;
      color: #0b1a33;
      font-size: calc(19 * var(--u));
      line-height: 1.38;
      font-weight: 800;
    }

    .included-cta {
      grid-column: 1 / -1;
      height: calc(118 * var(--u));
      flex-direction: row;
      justify-content: flex-start;
      gap: calc(24 * var(--u));
      padding: 0 calc(32 * var(--u));
      border-radius: calc(18 * var(--u));
      background: var(--accent);
      color: #04130d;
      font-size: calc(28 * var(--u));
      font-weight: 900;
      text-align: left;
      text-decoration: none;
      box-shadow: 0 calc(14 * var(--u)) calc(30 * var(--u)) calc(-12 * var(--u)) rgba(19, 194, 148, 0.62);
    }

    .included-cta-icon {
      width: calc(42 * var(--u));
      height: calc(42 * var(--u));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 calc(42 * var(--u));
    }

    .included-cta-icon img {
      width: calc(32 * var(--u));
      height: calc(46 * var(--u));
    }

    .included-cta-arrow {
      margin-left: auto;
      font-size: calc(32 * var(--u));
      line-height: 1;
    }

    .how {
      height: calc(690 * var(--u));
      min-height: 520px;
      background:
        radial-gradient(80% 70% at 82% -8%, rgba(47, 139, 251, 0.62) 0%, transparent 55%),
        radial-gradient(70% 80% at 8% 8%, rgba(25, 214, 245, 0.46) 0%, transparent 50%),
        linear-gradient(165deg, #0f2a59, #081a3d 70%);
    }

    .how .gradient-bg {
      background:
        radial-gradient(80% 70% at 82% -8%, rgba(47, 139, 251, 0.62) 0%, transparent 55%),
        radial-gradient(70% 80% at 8% 8%, rgba(25, 214, 245, 0.46) 0%, transparent 50%),
        linear-gradient(165deg, #0f2a59, #081a3d 70%);
    }

    .how-section-head {
      position: absolute;
      left: var(--section-gutter);
      top: calc(74 * var(--u));
      width: var(--section-inner-width);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .how-section-head span {
      justify-content: center;
    }

    .how-section-head .section-title {
      position: static;
      width: auto;
      display: block;
      text-align: center;
      white-space: normal;
    }

    .how-card {
      top: calc(250 * var(--u));
      width: calc((var(--section-inner-width) - 56 * var(--u)) / 3);
      height: calc(330 * var(--u));
      padding: calc(38 * var(--u)) calc(34 * var(--u));
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-left: calc(5 * var(--u)) solid var(--accent);
      border-radius: calc(24 * var(--u));
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
      overflow: hidden;
    }

    .how-card:nth-of-type(1) { left: var(--section-gutter); }
    .how-card:nth-of-type(2) { left: calc(var(--section-gutter) + ((var(--section-inner-width) - 56 * var(--u)) / 3) + 28 * var(--u)); }
    .how-card:nth-of-type(3) { left: calc(var(--section-gutter) + 2 * ((var(--section-inner-width) - 56 * var(--u)) / 3) + 56 * var(--u)); }

    .how-step {
      position: static;
      display: block;
      color: transparent;
      -webkit-text-stroke: calc(1.5 * var(--u)) rgba(255, 255, 255, 0.34);
      text-stroke: calc(1.5 * var(--u)) rgba(255, 255, 255, 0.34);
      font-size: calc(66 * var(--u));
      line-height: 1;
      font-weight: 900;
      margin-bottom: calc(24 * var(--u));
    }

    .how-step::before {
      display: none;
    }

    .how-card h3 {
      margin: 0 0 calc(14 * var(--u));
      color: #fff;
      font-size: calc(26 * var(--u));
      line-height: 1.18;
      font-weight: 900;
    }

    .how-card p {
      width: 100%;
      margin: 0;
      color: rgba(226, 244, 255, 0.78);
      font-size: calc(18 * var(--u));
      line-height: 1.55;
    }

    @media (max-width: 899px) {
      .program-detail {
        top: auto;
        height: auto;
        padding-bottom: 48px;
        gap: 26px;
      }

      .how-section-head {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        align-items: flex-start;
        text-align: left;
      }

      .how-section-head span {
        gap: 10px;
        margin-bottom: 16px;
        font-size: 12px;
      }

      .how-section-head span::before {
        width: 26px;
        height: 2px;
      }

      .how-section-head h2 {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.08;
      }

      .program-card-stack,
      .program-rates,
      .included-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .program-info-card {
        height: auto;
      }

      .program-card-media {
        height: 220px;
        flex-basis: 220px;
      }

      .program-card-title {
        margin: 18px 22px 12px;
        font-size: 20px;
      }

      .program-card-title::before {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 13px;
      }

      .program-card-body {
        margin: 0 22px 24px;
        font-size: 16px;
      }

      .program-rate,
      .program-rate.curator {
        min-height: 0;
        padding: 24px;
      }

      .program-rate-title,
      .program-rate.curator .program-rate-title {
        font-size: 24px;
      }

      .program-rate-copy {
        font-size: 16px;
      }

      .program-rate-cta {
        min-height: 52px;
        font-size: 15px;
      }

      .included {
        height: auto;
      }

      .included-card {
        height: auto;
        min-height: 132px;
        padding: 22px;
        gap: 18px;
      }

      .included-card .number-pill {
        width: 38px;
        height: 38px;
        font-size: 13px;
      }

      .included-card p {
        font-size: 17px;
      }

      .included-cta {
        grid-column: auto;
        min-height: 74px;
        height: auto;
        padding: 16px 18px;
        gap: 14px;
        font-size: 19px;
      }

      .included-cta-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
      }

      .how {
        height: auto;
        min-height: 0;
        padding-top: 62px;
        padding-bottom: 58px;
      }

      .how-section-head .section-title {
        text-align: left;
      }

      .how-card,
      .how-card:nth-of-type(1),
      .how-card:nth-of-type(2),
      .how-card:nth-of-type(3) {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        min-height: 220px;
        margin-top: 16px;
        padding: 30px 24px;
      }

      .how-step {
        font-size: 52px;
        margin-bottom: 20px;
      }

      .how-card h3 {
        font-size: 24px;
        text-align: left;
      }

      .how-card p {
        font-size: 16px;
        text-align: left;
      }
    }

    /* Footer and process-section layout. */
    .how,
    .how .gradient-bg {
      background:
        url("how-bg.webp") center / cover no-repeat,
        radial-gradient(ellipse calc(730 * var(--u)) calc(500 * var(--u)) at 18% 32%, rgba(255, 228, 164, 0.62), rgba(196, 159, 247, 0.52) 43%, transparent 70%),
        radial-gradient(ellipse calc(820 * var(--u)) calc(720 * var(--u)) at 91% 48%, rgba(50, 146, 255, 0.76), transparent 70%),
        radial-gradient(ellipse calc(830 * var(--u)) calc(580 * var(--u)) at 28% 86%, rgba(18, 222, 221, 0.84), transparent 70%),
        linear-gradient(126deg, #0a3156 0%, #1bbfd7 48%, #2486f4 100%);
    }

    .how-section-head span {
      display: none;
    }

    .how-card h3,
    .how-card p {
      text-shadow:
        0 calc(1 * var(--u)) calc(2 * var(--u)) rgba(0, 0, 0, 0.38),
        0 0 calc(8 * var(--u)) rgba(0, 0, 0, 0.18);
    }

    .how-step {
      color: transparent;
      -webkit-text-stroke: calc(1.2 * var(--u)) rgba(214, 230, 244, 0.68);
      text-stroke: calc(1.2 * var(--u)) rgba(214, 230, 244, 0.68);
      text-shadow:
        0 calc(1 * var(--u)) calc(2 * var(--u)) rgba(70, 94, 120, 0.28),
        0 0 calc(6 * var(--u)) rgba(255, 255, 255, 0.22);
    }

    .footer {
      height: auto;
      min-height: calc(445 * var(--u));
      padding: calc(66 * var(--u)) 0 calc(36 * var(--u));
      color: #bcedfa;
      background: #044376;
    }

    .footer-wrap {
      position: relative;
      z-index: 1;
      width: min(calc(1000 * var(--u)), calc(100% - 48px));
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.35fr 1fr 1fr;
      gap: calc(58 * var(--u));
      align-items: start;
      padding-bottom: calc(50 * var(--u));
      border-bottom: 1px solid rgba(188, 237, 250, 0.22);
    }

    .footer-brand-col .brand {
      position: static;
      width: auto;
      height: auto;
      display: inline-flex;
      align-items: center;
      gap: calc(9 * var(--u));
      color: #fff;
      font-size: calc(21 * var(--u));
      font-weight: 800;
      line-height: 1;
      text-decoration: none;
    }

    .footer-brand-col .brand img {
      width: calc(34 * var(--u));
      height: calc(34 * var(--u));
      border-radius: calc(7 * var(--u));
      object-fit: cover;
    }

    .footer-brand-col p {
      max-width: calc(260 * var(--u));
      margin: calc(18 * var(--u)) 0 0;
      color: rgba(188, 237, 250, 0.78);
      font-size: calc(14 * var(--u));
      line-height: 1.45;
    }

    .footer-col h4 {
      margin: 0 0 calc(18 * var(--u));
      color: rgba(188, 237, 250, 0.76);
      font-size: calc(12 * var(--u));
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .footer-col a {
      display: block;
      margin-bottom: calc(13 * var(--u));
      color: rgba(188, 237, 250, 0.88);
      font-size: calc(14 * var(--u));
      line-height: 1.25;
      text-decoration: none;
      transition: color 160ms ease;
    }

    .footer-col a:hover,
    .footer-col a:focus-visible {
      color: #fff;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: calc(24 * var(--u));
      padding-top: calc(24 * var(--u));
    }

    .footer-copy {
      position: static;
      left: auto;
      top: auto;
      margin: 0;
      color: rgba(188, 237, 250, 0.72);
      font-size: calc(13 * var(--u));
      line-height: 1.3;
      white-space: normal;
    }

    .footer-socials {
      display: flex;
      align-items: center;
      gap: calc(10 * var(--u));
      margin-top: 0;
    }

    .footer-social {
      position: relative;
      width: calc(34 * var(--u));
      height: calc(34 * var(--u));
      flex: 0 0 calc(34 * var(--u));
      border: 1px solid rgba(188, 237, 250, 0.22);
      border-radius: calc(9 * var(--u));
      background: rgba(255, 255, 255, 0.08);
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .footer-social img,
    .footer-social.instagram img,
    .footer-social.telegram img {
      position: static;
      width: 100%;
      height: 100%;
      max-width: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
    }

    @media (max-width: 899px) {
      .footer {
        min-height: 0;
        padding: 54px 0 32px;
      }

      .footer-wrap {
        width: calc(100% - 48px);
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-bottom: 30px;
      }

      .footer-brand-col .brand {
        font-size: 20px;
      }

      .footer-brand-col p {
        max-width: none;
        font-size: 14px;
      }

      .footer-col h4 {
        font-size: 12px;
      }

      .footer-col a {
        font-size: 14px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
      }

      .footer-social {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
      }
    }

    /* Visual corrections for inserted landing blocks. */
    .program-info-card {
      background: rgba(24, 116, 201, 0.32);
      border-color: rgba(255, 255, 255, 0.26);
    }

    .program-card-title,
    .program-card-body,
    .program-card-body p + p {
      color: #fff;
      text-shadow:
        0 calc(1 * var(--u)) calc(2 * var(--u)) rgba(0, 0, 0, 0.5),
        0 0 calc(7 * var(--u)) rgba(0, 0, 0, 0.18);
    }

    .program-card-body {
      margin-bottom: calc(48 * var(--u));
    }

    .program-card-body p + p {
      margin-top: calc(12 * var(--u));
      padding-top: calc(12 * var(--u));
    }

    .program-rates {
      margin-top: calc(18 * var(--u));
    }

    .program-rate {
      background: rgba(24, 116, 201, 0.32);
      border-color: rgba(255, 255, 255, 0.28);
    }

    .program-rate.curator {
      background: rgba(24, 116, 201, 0.32);
      border-color: rgba(255, 255, 255, 0.28);
    }

    .program-rate-title,
    .program-rate.curator .program-rate-title,
    .program-rate-meta,
    .program-rate-copy {
      color: #fff;
      text-shadow:
        0 calc(1 * var(--u)) calc(2 * var(--u)) rgba(0, 0, 0, 0.42),
        0 0 calc(7 * var(--u)) rgba(0, 0, 0, 0.16);
    }

    .program-rate-cta,
    .program-rate-cta.primary,
    .included-cta,
    .program-card-title::before,
    .included-card .number-pill {
      color: #fff;
      text-shadow:
        0 calc(1 * var(--u)) calc(2 * var(--u)) rgba(0, 0, 0, 0.42),
        0 0 calc(7 * var(--u)) rgba(0, 0, 0, 0.16);
    }

    .how-card h3,
    .how-card p {
      color: #fff;
      text-shadow:
        0 calc(1 * var(--u)) calc(2 * var(--u)) rgba(0, 0, 0, 0.38),
        0 0 calc(8 * var(--u)) rgba(0, 0, 0, 0.18);
    }

    .how-card,
    .how-card:nth-of-type(1),
    .how-card:nth-of-type(2),
    .how-card:nth-of-type(3) {
      background: rgba(24, 116, 201, 0.32);
    }

    .how-step {
      color: transparent;
      -webkit-text-stroke: calc(1.15 * var(--u)) rgba(218, 231, 244, 0.72);
      text-stroke: calc(1.15 * var(--u)) rgba(218, 231, 244, 0.72);
      text-shadow:
        0 calc(1 * var(--u)) calc(2 * var(--u)) rgba(54, 74, 96, 0.28),
        0 0 calc(6 * var(--u)) rgba(255, 255, 255, 0.22);
    }

    .footer-wrap {
      position: relative;
      left: var(--section-gutter);
      width: var(--section-inner-width);
      margin-left: var(--content-offset);
      margin-right: 0;
    }

    .footer-social {
      width: calc(46 * var(--u));
      height: calc(46 * var(--u));
      flex-basis: calc(46 * var(--u));
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .footer-socials {
      align-items: center;
    }

    .footer-social img,
    .footer-social.instagram img,
    .footer-social.telegram img {
      transform: scale(1.7);
      transform-origin: center;
    }

    .hero-btn,
    .small-btn,
    .program-rate-cta,
    .included-cta,
    .footer-social {
      transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        filter 180ms ease;
    }

    .hero-btn:hover,
    .hero-btn:focus-visible,
    .small-btn:hover,
    .small-btn:focus-visible,
    .program-rate-cta:hover,
    .program-rate-cta:focus-visible,
    .included-cta:hover,
    .included-cta:focus-visible,
    .footer-social:hover,
    .footer-social:focus-visible {
      transform: translateY(calc(-2 * var(--u)));
      box-shadow: 0 calc(16 * var(--u)) calc(34 * var(--u)) calc(-18 * var(--u)) rgba(5, 27, 48, 0.46);
      filter: brightness(1.04);
    }

    .hero-btn.secondary:hover,
    .hero-btn.secondary:focus-visible,
    .small-btn.details:hover,
    .small-btn.details:focus-visible,
    .program-rate-cta:not(.primary):hover,
    .program-rate-cta:not(.primary):focus-visible {
      border-color: rgba(255, 255, 255, 0.72);
      background-color: rgba(255, 255, 255, 0.08);
    }

    .hero-btn.primary:hover,
    .hero-btn.primary:focus-visible,
    .small-btn.cart:hover,
    .small-btn.cart:focus-visible,
    .program-rate-cta.primary:hover,
    .program-rate-cta.primary:focus-visible,
    .included-cta:hover,
    .included-cta:focus-visible {
      border-color: rgba(255, 255, 255, 0.38);
    }

    @media (max-width: 899px) {
      .program-rates {
        margin-top: 10px;
      }

      .footer-wrap {
        left: 24px;
        width: calc(100% - 48px);
        margin-left: 0;
      }
    }

    /* Keep the original catalog grid isolated from the preceding custom program block. */
    .catalog {
      position: relative;
      z-index: 4;
      isolation: isolate;
    }

    .catalog .gradient-bg {
      z-index: 0;
    }

    .catalog-container {
      position: relative;
      z-index: 1;
    }

    .hero-frame {
      background: rgba(24, 116, 201, 0.32);
    }

    .challenge-card {
      background: rgba(24, 116, 201, 0.32);
    }

    .hero-copy h1,
    .hero-highlight,
    .hero-description,
    .fact-label,
    .fact-card strong,
    .fact-card small,
    .hero-btn,
    .included-cta,
    .catalog .section-title,
    .how .section-title,
    .challenge-card h3,
    .challenge-actions .small-btn {
      color: #fff;
      text-shadow:
        0 calc(1 * var(--u)) calc(2 * var(--u)) rgba(0, 0, 0, 0.42),
        0 0 calc(7 * var(--u)) rgba(0, 0, 0, 0.16);
    }

    .hero-btn.primary,
    .small-btn.cart,
    .program-rate-cta.primary,
    .included-cta {
      border-color: transparent;
    }

    .catalog {
      padding-top: calc(64 * var(--u));
    }

    .footer-brand-col .brand {
      font-size: calc(24 * var(--u));
      color: #fff;
      text-shadow:
        0 calc(1 * var(--u)) calc(2 * var(--u)) rgba(0, 0, 0, 0.42),
        0 0 calc(7 * var(--u)) rgba(0, 0, 0, 0.16);
    }

    .footer-brand-col p {
      color: #fff;
      font-size: calc(18 * var(--u));
      line-height: 1.45;
      text-shadow:
        0 calc(1 * var(--u)) calc(2 * var(--u)) rgba(0, 0, 0, 0.42),
        0 0 calc(7 * var(--u)) rgba(0, 0, 0, 0.16);
    }

    .footer-copy {
      color: #fff;
      font-size: calc(17 * var(--u));
      text-shadow:
        0 calc(1 * var(--u)) calc(2 * var(--u)) rgba(0, 0, 0, 0.42),
        0 0 calc(7 * var(--u)) rgba(0, 0, 0, 0.16);
    }

    .footer-col h4,
    .footer-col a {
      color: #fff;
      text-shadow:
        0 calc(1 * var(--u)) calc(2 * var(--u)) rgba(0, 0, 0, 0.42),
        0 0 calc(7 * var(--u)) rgba(0, 0, 0, 0.16);
    }

    .footer-col h4 {
      font-size: calc(14 * var(--u));
    }

    .footer-col a {
      font-size: calc(16 * var(--u));
    }

    .language-form select {
      min-width: calc(224 * var(--u));
      padding: calc(13 * var(--u)) calc(48 * var(--u)) calc(13 * var(--u)) calc(20 * var(--u));
      background-color: rgba(24, 116, 201, 0.32);
      color: #fff;
      font-size: calc(18 * var(--u));
      line-height: 1.15;
      text-shadow:
        0 calc(1 * var(--u)) calc(2 * var(--u)) rgba(0, 0, 0, 0.42),
        0 0 calc(7 * var(--u)) rgba(0, 0, 0, 0.16);
    }

    @media (max-width: 899px) {
      .catalog {
        padding-top: clamp(30px, 7vw, 48px) !important;
      }

      .footer-brand-col .brand {
        font-size: 22px;
      }

      .footer-brand-col p {
        font-size: 16px;
      }

      .footer-copy,
      .footer-col a {
        font-size: 15px;
      }

      .footer-col h4 {
        font-size: 13px;
      }

      .language-form select {
        min-width: 172px;
        max-width: 172px;
        padding: 10px 36px 10px 14px;
        font-size: 15px;
      }
    }
