/* =========================================================
   LOCAL FONTS
   ========================================================= */



@font-face {
    font-family: "xc61e0b0a33_Manrope";
    src: url("../fonts/Manrope/Manrope-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
}




















/* =========================================================
   GLOBAL DESIGN VARIABLES

   Только то, что действительно должно меняться глобально:
   palette / typography / root preset.
   Никаких --header-* и --hero-*.
   ========================================================= */

/* =========================================================
   BASIC RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #11151c;
    color: #eef4ff;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}


/* =========================================================
   HEADER 1
   Classic horizontal header
   ========================================================= */

.xc61e0b0a33_site-header {
    position: relative;
    z-index: 100;
    width: 100%;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
}

.xc61e0b0a33_site-header--1 {
    min-height: 76px;
    background: #11151c;
    color: #eef4ff;
    border-bottom: 1px solid rgba(238, 244, 255, 0.16);
}

.xc61e0b0a33_site-header__container {
    width: min(
        calc(100% - (24px * 2)),
        1200px
    );
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* logo */

.xc61e0b0a33_site-header__brand {
    flex: 0 0 auto;
}

.xc61e0b0a33_site-header__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #eef4ff;
    text-decoration: none;
}

.xc61e0b0a33_site-header__logo-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 48px;
    max-height: 42px;
}

.xc61e0b0a33_site-header__logo-text {
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

/* navigation */

.xc61e0b0a33_site-header__nav {
    margin-left: auto;
}

.xc61e0b0a33_site-header__nav-list {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.xc61e0b0a33_site-header__nav-item {
    margin: 0;
    padding: 0;
}

.xc61e0b0a33_site-header__nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
    color: #9aa8ba;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: color 180ms ease;
}

.xc61e0b0a33_site-header__nav-link:hover,
.xc61e0b0a33_site-header__nav-link:focus-visible {
    color: #eef4ff;
}

.xc61e0b0a33_site-header__nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 180ms ease;
}

.xc61e0b0a33_site-header__nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

/* header button */

.xc61e0b0a33_site-header__actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.xc61e0b0a33_site-header__button,
.xc61e0b0a33_site-header__mobile-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 21px;
    border-radius: 999px;
    background: #5b9cff;
    color: #08111f;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color 180ms ease,
        transform 180ms ease;
}

.xc61e0b0a33_site-header__button:hover,
.xc61e0b0a33_site-header__mobile-button:hover {
    background: #7bb0ff;
    transform: translateY(-1px);
}


/* =========================================================
   HEADER 1 — MOBILE MENU
   ========================================================= */

.xc61e0b0a33_site-header__mobile {
    position: relative;
    display: none;
    margin-left: auto;
}

.xc61e0b0a33_site-header__mobile summary {
    list-style: none;
}

.xc61e0b0a33_site-header__mobile summary::-webkit-details-marker {
    display: none;
}

.xc61e0b0a33_site-header__mobile-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(238, 244, 255, 0.16);
    border-radius: 12px;
    background: #1d2633;
    color: #eef4ff;
    cursor: pointer;
}

.xc61e0b0a33_site-header__burger {
    width: 18px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.xc61e0b0a33_site-header__burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    border-radius: 999px;
    transition:
        transform 180ms ease,
        opacity 180ms ease;
}

.xc61e0b0a33_site-header__mobile[open] .xc61e0b0a33_site-header__burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.xc61e0b0a33_site-header__mobile[open] .xc61e0b0a33_site-header__burger span:nth-child(2) {
    opacity: 0;
}

.xc61e0b0a33_site-header__mobile[open] .xc61e0b0a33_site-header__burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.xc61e0b0a33_site-header__mobile-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, calc(100vw - 32px));
    padding: 12px;
    background: #1d2633;
    border: 1px solid rgba(238, 244, 255, 0.16);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
}

.xc61e0b0a33_site-header__mobile-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    list-style: none;
}

.xc61e0b0a33_site-header__mobile-link {
    display: block;
    padding: 13px 14px;
    border-radius: 12px;
    color: #eef4ff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 180ms ease;
}

.xc61e0b0a33_site-header__mobile-link:hover {
    background: #171e29;
}

.xc61e0b0a33_site-header__mobile-button {
    width: 100%;
    min-height: 44px;
    margin-top: 12px;
}


/* =========================================================
   HERO 1
   Split content + information panel
   ========================================================= */

.xc61e0b0a33_hero--1 {
    position: relative;
    overflow: hidden;
    background: #11151c;
    color: #eef4ff;
}

.xc61e0b0a33_hero--1::before {
    content: "";
    position: absolute;
    top: -280px;
    right: -220px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: color-mix(in srgb, #5b9cff 10%, transparent);
    filter: blur(4px);
    pointer-events: none;
}

.xc61e0b0a33_hero-1__container {
    position: relative;
    z-index: 1;
    width: min(
        calc(100% - (24px * 2)),
        1200px
    );
    min-height: 610px;
    margin: 0 auto;
    padding: 96px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: 72px;
}

.xc61e0b0a33_hero--1-single .xc61e0b0a33_hero-1__container {
    grid-template-columns: 1fr;
}

.xc61e0b0a33_hero--1-single .xc61e0b0a33_hero-1__content {
    max-width: 900px;
}

.xc61e0b0a33_hero-1__content {
    min-width: 0;
}

.xc61e0b0a33_hero-1__eyebrow {
    width: fit-content;
    margin-bottom: 24px;
    padding: 8px 12px;
    border: 1px solid color-mix(in srgb, #5b9cff 22%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, #5b9cff 10%, transparent);
    color: #5b9cff;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.025em;
}

.xc61e0b0a33_hero-1__title {
    max-width: 920px;
    margin: 0;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 650;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.xc61e0b0a33_hero-1__text {
    max-width: 720px;
    margin: 32px 0 0;
    color: #9aa8ba;
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.55;
}

.xc61e0b0a33_hero-1__actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.xc61e0b0a33_hero-1__button {
    min-height: 48px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.xc61e0b0a33_hero-1__button:hover {
    transform: translateY(-1px);
}

.xc61e0b0a33_hero-1__button--primary {
    background: #5b9cff;
    color: #08111f;
}

.xc61e0b0a33_hero-1__button--primary:hover {
    background: #7bb0ff;
}

.xc61e0b0a33_hero-1__button--secondary {
    border-color: rgba(238, 244, 255, 0.16);
    background: transparent;
    color: #eef4ff;
}

.xc61e0b0a33_hero-1__button--secondary:hover {
    background: #171e29;
}

.xc61e0b0a33_hero-1__button-arrow {
    font-size: 17px;
    line-height: 1;
}


/* =========================================================
   HERO 1 — PANEL
   ========================================================= */

.xc61e0b0a33_hero-1__panel {
    position: relative;
    padding: clamp(24px, 3vw, 38px);
    border: 1px solid rgba(238, 244, 255, 0.16);
    border-radius: 28px;
    background: #171e29;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.xc61e0b0a33_hero-1__panel-label {
    margin-bottom: 32px;
    color: #9aa8ba;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.xc61e0b0a33_hero-1__panel-list {
    display: flex;
    flex-direction: column;
}

.xc61e0b0a33_hero-1__panel-item {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(238, 244, 255, 0.16);
}

.xc61e0b0a33_hero-1__panel-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.xc61e0b0a33_hero-1__panel-item:last-child {
    padding-bottom: 0;
}

.xc61e0b0a33_hero-1__panel-number {
    padding-top: 2px;
    color: #5b9cff;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.xc61e0b0a33_hero-1__panel-title {
    color: #eef4ff;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.xc61e0b0a33_hero-1__panel-text {
    margin-top: 7px;
    color: #9aa8ba;
    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {
    .xc61e0b0a33_hero-1__container {
        min-height: auto;
        padding: 76px 0;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
        gap: 48px;
    }
}

@media (max-width: 820px) {
    html.site-header--1,
    .xc61e0b0a33_site-header__container {
        min-height: 68px;
    }

    .xc61e0b0a33_site-header__nav,
    .xc61e0b0a33_site-header__actions {
        display: none;
    }

    .xc61e0b0a33_site-header__mobile {
        display: block;
    }
}

@media (max-width: 760px) {
    .xc61e0b0a33_hero-1__container {
        padding: 62px 0;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .xc61e0b0a33_hero-1__title {
        font-size: clamp(42px, 12vw, 64px);
    }

    .xc61e0b0a33_hero-1__panel {
        max-width: none;
    }
}

@media (max-width: 480px) {
    html.site-header__logo-text {
        font-size: 20px;
    }

    .xc61e0b0a33_site-header__logo-image {
        max-width: 42px;
        max-height: 36px;
    }

    .xc61e0b0a33_hero-1__container {
        padding: 48px 0;
    }

    .xc61e0b0a33_hero-1__eyebrow {
        margin-bottom: 16px;
    }

    .xc61e0b0a33_hero-1__title {
        font-size: clamp(38px, 12.5vw, 52px);
    }

    .xc61e0b0a33_hero-1__text {
        margin-top: 24px;
    }

    .xc61e0b0a33_hero-1__actions {
        margin-top: 24px;
        align-items: stretch;
    }

    .xc61e0b0a33_hero-1__button {
        width: 100%;
    }

    .xc61e0b0a33_hero-1__panel {
        padding: 24px;
        border-radius: 20px;
    }
}


/* =========================================================
   FEATURES 1
   Editorial index: intro + numbered rows
   Без карточек, иконок и специальных root-переменных.
   ========================================================= */

.xc61e0b0a33_feature-index--1 {
    position: relative;
    overflow: clip;
    padding: 88px 0;
    background: #eef4ff;
    color: #11151c;
}

.xc61e0b0a33_feature-index--1::after {
    content: "";
    position: absolute;
    left: -9vw;
    bottom: -22vw;
    width: 42vw;
    aspect-ratio: 1;
    border: 1px solid color-mix(in srgb, #11151c 10%, transparent);
    border-radius: 50%;
    pointer-events: none;
}

.xc61e0b0a33_feature-index__container {
    position: relative;
    z-index: 1;
    width: min(
        calc(100% - (24px * 2)),
        1200px
    );
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(56px, 8vw, 130px);
    align-items: start;
}

.xc61e0b0a33_feature-index__intro {
    position: sticky;
    top: 32px;
}

.xc61e0b0a33_feature-index__kicker {
    margin-bottom: 32px;
    color: #5b9cff;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.xc61e0b0a33_feature-index__title {
    max-width: 520px;
    margin: 0;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 520;
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.xc61e0b0a33_feature-index__lead {
    max-width: 470px;
    margin: 32px 0 0;
    color: color-mix(in srgb, #11151c 62%, transparent);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.6;
}

.xc61e0b0a33_feature-index__list {
    border-top: 1px solid color-mix(in srgb, #11151c 20%, transparent);
}

.xc61e0b0a33_feature-index__item {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(150px, 0.72fr) minmax(220px, 1fr);
    gap: clamp(18px, 3vw, 42px);
    align-items: start;
    padding: clamp(28px, 4vw, 48px) 0;
    border-bottom: 1px solid color-mix(in srgb, #11151c 20%, transparent);
}

.xc61e0b0a33_feature-index__item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: #5b9cff;
    transition: width 320ms ease;
}

.xc61e0b0a33_feature-index__item:hover::before {
    width: 100%;
}

.xc61e0b0a33_feature-index__number {
    padding-top: 5px;
    color: #5b9cff;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
}

.xc61e0b0a33_feature-index__item-title {
    margin: 0;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: clamp(21px, 2vw, 30px);
    font-weight: 550;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.xc61e0b0a33_feature-index__item-text {
    max-width: 520px;
    margin: 0;
    color: color-mix(in srgb, #11151c 58%, transparent);
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 860px) {
    .xc61e0b0a33_feature-index__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .xc61e0b0a33_feature-index__intro {
        position: static;
    }

    .xc61e0b0a33_feature-index__title,
    .xc61e0b0a33_feature-index__lead {
        max-width: 720px;
    }
}

@media (max-width: 620px) {
    .xc61e0b0a33_feature-index--1 {
        padding: 64px 0;
    }

    .xc61e0b0a33_feature-index__item {
        grid-template-columns: 38px 1fr;
        gap: 16px;
    }

    .xc61e0b0a33_feature-index__item-text {
        grid-column: 2;
    }
}




/* =========================================================
   COLUMNS 2 — EDITORIAL DUET
   ========================================================= */


/* =========================================================
   COLUMNS 3 — OFFSET TRIPTYCH
   ========================================================= */

.xc61e0b0a33_triptych--1 {
    padding: calc(88px * 1.15) 0 calc(88px * 1.5);
    overflow: hidden;
    background: #11151c;
}

.xc61e0b0a33_triptych__container {
    width: min(calc(100% - (24px * 2)), 1200px);
    margin: 0 auto;
}

.xc61e0b0a33_triptych__head {
    display: grid;
    grid-template-columns: .4fr 1.6fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 48px;
}

.xc61e0b0a33_triptych__kicker {
    padding-bottom: 8px;
    color: #5b9cff;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.xc61e0b0a33_triptych__title {
    max-width: 850px;
    margin: 0;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: clamp(40px, 5.5vw, 78px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.055em;
}

.xc61e0b0a33_triptych__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(238, 244, 255, 0.16);
}

.xc61e0b0a33_triptych__item {
    position: relative;
    min-height: 470px;
    padding: 38px clamp(24px, 3vw, 44px) 40px;
    border-left: 1px solid rgba(238, 244, 255, 0.16);
}

.xc61e0b0a33_triptych__item:last-child {
    border-right: 1px solid rgba(238, 244, 255, 0.16);
}

.xc61e0b0a33_triptych__item:nth-child(2) {
    transform: translateY(54px);
}

.xc61e0b0a33_triptych__item:nth-child(3) {
    transform: translateY(108px);
}

.xc61e0b0a33_triptych__number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: color-mix(in srgb, #eef4ff 8%, transparent);
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: clamp(70px, 9vw, 138px);
    font-weight: 700;
    line-height: .8;
    letter-spacing: -.08em;
}

.xc61e0b0a33_triptych__eyebrow {
    position: relative;
    z-index: 1;
    margin-bottom: clamp(100px, 13vw, 175px);
    color: #9aa8ba;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.xc61e0b0a33_triptych__item-title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: clamp(27px, 3vw, 40px);
    font-weight: 560;
    line-height: 1.02;
    letter-spacing: -.04em;
}

.xc61e0b0a33_triptych__text {
    position: relative;
    z-index: 1;
    max-width: 360px;
    margin: 24px 0 0;
    color: #9aa8ba;
    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   STEPS — STAIR ROUTE
   ========================================================= */


/* =========================================================
   FAQ — QUESTION RAIL
   ========================================================= */


/* =========================================================
   CTA — COMMAND STRIP
   ========================================================= */

.xc61e0b0a33_command--1 {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 8vw, 110px) 0;
    background: #5b9cff;
    color: #08111f;
}

.xc61e0b0a33_command--1::before {
    content: "";
    position: absolute;
    right: -10vw;
    top: -22vw;
    width: 46vw;
    aspect-ratio: 1;
    border: 1px solid color-mix(in srgb, #08111f 28%, transparent);
    border-radius: 50%;
}

.xc61e0b0a33_command__container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - (24px * 2)), 1200px);
    margin: 0 auto;
}

.xc61e0b0a33_command__kicker {
    margin-bottom: 32px;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .7;
}

.xc61e0b0a33_command__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(40px, 7vw, 110px);
    align-items: end;
}

.xc61e0b0a33_command__title {
    max-width: 920px;
    margin: 0;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: clamp(48px, 7.4vw, 108px);
    font-weight: 560;
    line-height: .86;
    letter-spacing: -.065em;
    text-wrap: balance;
}

.xc61e0b0a33_command__text {
    max-width: 660px;
    margin: 32px 0 0;
    font-size: 17px;
    line-height: 1.55;
    opacity: .75;
}

.xc61e0b0a33_command__button {
    width: clamp(160px, 15vw, 210px);
    aspect-ratio: 1;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid color-mix(in srgb, #08111f 55%, transparent);
    border-radius: 50%;
    color: #08111f;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.xc61e0b0a33_command__button:hover {
    background: #08111f;
    color: #5b9cff;
    transform: rotate(-4deg);
}

.xc61e0b0a33_command__arrow {
    align-self: flex-end;
    font-size: 30px;
    line-height: 1;
}


/* =========================================================
   RELATED — LINK MATRIX
   ========================================================= */


/* =========================================================
   INTERLINKS — GENERATED LANDING GRAPH
   ========================================================= */

.xc61e0b0a33_interlinks--1 {
    padding: calc(88px * 1.05) 0;
    background: #171e29;
    color: #eef4ff;
}

.xc61e0b0a33_interlinks__container {
    width: min(calc(100% - (24px * 2)), 1200px);
    margin: 0 auto;
}

.xc61e0b0a33_interlinks__head {
    display: grid;
    grid-template-columns: minmax(150px, .35fr) minmax(0, 1.65fr);
    gap: 32px;
    align-items: end;
    margin-bottom: 32px;
}

.xc61e0b0a33_interlinks__kicker {
    padding-bottom: 7px;
    color: #5b9cff;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.xc61e0b0a33_interlinks__title {
    max-width: 820px;
    margin: 0;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: clamp(36px, 4.8vw, 68px);
    font-weight: 540;
    line-height: 1;
    letter-spacing: -.05em;
}

.xc61e0b0a33_interlinks__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    background: rgba(238, 244, 255, 0.16);
}

.xc61e0b0a33_interlinks__card {
    min-height: 290px;
    display: flex;
    flex-direction: column;
    padding: clamp(24px, 3vw, 38px);
    background: #11151c;
    color: inherit;
    text-decoration: none;
    transition: background-color 180ms ease, transform 180ms ease;
}

.xc61e0b0a33_interlinks__card:hover {
    z-index: 1;
    background: color-mix(in srgb, #5b9cff 8%, #11151c);
    transform: translateY(-4px);
}

.xc61e0b0a33_interlinks__topline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 46px;
    color: #9aa8ba;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.xc61e0b0a33_interlinks__number { color: #5b9cff; }
.xc61e0b0a33_interlinks__meta { text-align: right; }

.xc61e0b0a33_interlinks__label {
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: clamp(23px, 2.2vw, 34px);
    font-weight: 560;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.xc61e0b0a33_interlinks__text {
    margin-top: 16px;
    color: #9aa8ba;
    font-size: 14px;
    line-height: 1.6;
}

.xc61e0b0a33_interlinks__more {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 32px;
    color: #08111f;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .09em;
    text-transform: uppercase;
}


/* =========================================================
   TIMELINE — CENTRAL AXIS
   ========================================================= */

.xc61e0b0a33_axis--1 {
    padding: calc(88px * 1.3) 0;
    background: #171e29;
    overflow: hidden;
}

.xc61e0b0a33_axis__container {
    width: min(calc(100% - (24px * 2)), 1200px);
    margin: 0 auto;
}

.xc61e0b0a33_axis__head {
    display: grid;
    grid-template-columns: .38fr 1.62fr;
    gap: 32px;
    margin-bottom: clamp(80px, 10vw, 140px);
}

.xc61e0b0a33_axis__kicker {
    padding-top: 9px;
    color: #5b9cff;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.xc61e0b0a33_axis__title {
    max-width: 850px;
    margin: 0;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: clamp(42px, 5.4vw, 78px);
    font-weight: 520;
    line-height: .98;
    letter-spacing: -.055em;
}

.xc61e0b0a33_axis__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.xc61e0b0a33_axis__track::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(238, 244, 255, 0.16);
}

.xc61e0b0a33_axis__item {
    min-height: 360px;
    position: relative;
    display: grid;
    grid-template-rows: 1fr 42px 1fr;
    padding: 0 clamp(12px, 2vw, 24px);
}

.xc61e0b0a33_axis__content {
    max-width: 245px;
}

.xc61e0b0a33_axis__item:nth-child(odd) .xc61e0b0a33_axis__content { grid-row: 1; align-self: end; padding-bottom: 24px; }
.xc61e0b0a33_axis__item:nth-child(even) .xc61e0b0a33_axis__content { grid-row: 3; padding-top: 24px; }
.xc61e0b0a33_axis__item:nth-child(odd) .xc61e0b0a33_axis__node { grid-row: 2; }
.xc61e0b0a33_axis__item:nth-child(even) .xc61e0b0a33_axis__node { grid-row: 2; }

.xc61e0b0a33_axis__node {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(238, 244, 255, 0.16);
    border-radius: 50%;
    background: #171e29;
    color: #5b9cff;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
}

.xc61e0b0a33_axis__meta {
    margin-bottom: 7px;
    color: #9aa8ba;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.xc61e0b0a33_axis__item-title {
    margin: 0;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: clamp(21px, 2.2vw, 30px);
    font-weight: 560;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.xc61e0b0a33_axis__text {
    margin: 10px 0 0;
    color: #9aa8ba;
    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   COMPARISON — VERSUS AXIS
   ========================================================= */


/* =========================================================
   HIGHLIGHT — SIGNAL
   ========================================================= */

.xc61e0b0a33_signal--1 {
    padding: clamp(62px, 8vw, 110px) 0;
    background: #171e29;
    border-top: 8px solid #5b9cff;
}

.xc61e0b0a33_signal__container {
    width: min(calc(100% - (24px * 2)), 1200px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) minmax(160px, .35fr);
    gap: clamp(30px, 5vw, 80px);
    align-items: start;
}

.xc61e0b0a33_signal__mark {
    color: #5b9cff;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .18em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.xc61e0b0a33_signal__title {
    max-width: 900px;
    margin: 0;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: clamp(44px, 6vw, 86px);
    font-weight: 520;
    line-height: .94;
    letter-spacing: -.06em;
}

.xc61e0b0a33_signal__text {
    max-width: 760px;
    margin: 32px 0 0;
    color: #9aa8ba;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.6;
}

.xc61e0b0a33_signal__aside {
    padding-top: 8px;
    color: #9aa8ba;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.55;
    border-top: 1px solid rgba(238, 244, 255, 0.16);
}


/* =========================================================
   IMAGE + TEXT — MEDIA STORY
   ========================================================= */


/* =========================================================
   TABLE — DATA SHEET
   ========================================================= */


/* =========================================================
   FOOTER 1 — TYPOGRAPHIC ENDING
   ========================================================= */

.xc61e0b0a33_site-footer--1 {
    overflow: hidden;
    padding: 72px 0 24px;
    background: #eef4ff;
    color: #11151c;
}

.xc61e0b0a33_site-footer__container {
    width: min(calc(100% - (24px * 2)), 1200px);
    margin: 0 auto;
}

.xc61e0b0a33_site-footer__top {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
    gap: clamp(50px, 8vw, 120px);
    padding-bottom: 70px;
}

.xc61e0b0a33_site-footer__brand-small {
    margin-bottom: 24px;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 24px;
    font-weight: 650;
    letter-spacing: -.04em;
}

.xc61e0b0a33_site-footer__text {
    max-width: 430px;
    margin: 0;
    color: color-mix(in srgb, #11151c 52%, transparent);
    font-size: 14px;
    line-height: 1.65;
}

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

.xc61e0b0a33_site-footer__group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.xc61e0b0a33_site-footer__group-title {
    margin-bottom: 10px;
    color: color-mix(in srgb, #11151c 36%, transparent);
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.xc61e0b0a33_site-footer__link {
    color: #11151c;
    font-size: 14px;
    text-decoration: none;
    opacity: .78;
    transition: opacity 180ms ease, transform 180ms ease;
}

.xc61e0b0a33_site-footer__link:hover { opacity: 1; transform: translateX(3px); }

.xc61e0b0a33_site-footer__brand {
    white-space: nowrap;
    margin-left: -.045em;
    color: #11151c;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: clamp(90px, 18vw, 260px);
    font-weight: 700;
    line-height: .72;
    letter-spacing: -.085em;
    opacity: .95;
}

.xc61e0b0a33_site-footer__bottom {
    margin-top: 54px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid color-mix(in srgb, #11151c 18%, transparent);
    color: color-mix(in srgb, #11151c 42%, transparent);
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* =========================================================
   SHORTEXT 1 — TWO-COLUMN EDITORIAL COPY
   ========================================================= */


.xc61e0b0a33_longtext__container {
    width: min(1200px, calc(100% - (24px * 2)));
    margin: 0 auto;
}


.xc61e0b0a33_longtext__kicker {
    padding-top: 8px;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .14em;
    text-transform: uppercase;
}


.xc61e0b0a33_longtext__title {
    margin: 0;
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 650;
    line-height: 1.02;
    letter-spacing: -.055em;
}


.xc61e0b0a33_longtext__paragraph {
    margin: 0;
    font-size: 17px;
    line-height: 1.85;
}


/* =========================================================
   LONGTEXT 1 — NUMBERED LONG-FORM COPY
   ========================================================= */

.xc61e0b0a33_longtext {
    padding: calc(88px * 1.15) 0;
    background: #eef4ff;
    color: #11151c;
}

.xc61e0b0a33_longtext__head {
    max-width: 900px;
}

.xc61e0b0a33_longtext__kicker {
    margin-bottom: 24px;
    color: color-mix(in srgb, #11151c 55%, transparent);
}

.xc61e0b0a33_longtext__body {
    margin-top: 64px;
    border-top: 1px solid color-mix(in srgb, #11151c 18%, transparent);
}

.xc61e0b0a33_longtext__item {
    padding: 32px 0;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 32px;
    border-bottom: 1px solid color-mix(in srgb, #11151c 18%, transparent);
}

.xc61e0b0a33_longtext__number {
    padding-top: 4px;
    color: color-mix(in srgb, #11151c 42%, transparent);
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .14em;
}

.xc61e0b0a33_longtext__paragraph {
    max-width: 920px;
    color: color-mix(in srgb, #11151c 76%, transparent);
}


/* =========================================================
   NEW BLOCKS — RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
    .xc61e0b0a33_triptych__item:nth-child(2) { transform: translateY(34px); }
    .xc61e0b0a33_triptych__item:nth-child(3) { transform: translateY(68px); }

    .xc61e0b0a33_axis__track { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 0; }
    .xc61e0b0a33_axis__track::before { display: none; }
    .xc61e0b0a33_axis__item {
        min-height: 260px;
        grid-template-rows: 42px 1fr;
        border-top: 1px solid rgba(238, 244, 255, 0.16);
        padding-top: 20px;
    }
    .xc61e0b0a33_axis__item:nth-child(n) .xc61e0b0a33_axis__node { grid-row: 1; }
    .xc61e0b0a33_axis__item:nth-child(n) .xc61e0b0a33_axis__content { grid-row: 2; align-self: start; padding: 16px 0 0; }
}

@media (max-width: 820px) {
    
    .xc61e0b0a33_triptych__grid,
    .xc61e0b0a33_interlinks__grid,
    .xc61e0b0a33_site-footer__top {
        grid-template-columns: 1fr;
    }

    .xc61e0b0a33_triptych__head,
    .xc61e0b0a33_interlinks__head,
    .xc61e0b0a33_axis__head {
        grid-template-columns: 1fr;
    }

    .xc61e0b0a33_triptych__grid { border-bottom: 1px solid rgba(238, 244, 255, 0.16); }
    .xc61e0b0a33_triptych__item,
    .xc61e0b0a33_triptych__item:nth-child(2),
    .xc61e0b0a33_triptych__item:nth-child(3) {
        min-height: auto;
        transform: none;
        border-right: 1px solid rgba(238, 244, 255, 0.16);
        border-bottom: 0;
    }
    .xc61e0b0a33_triptych__eyebrow { margin-bottom: 80px; }
    .xc61e0b0a33_interlinks__grid { grid-template-columns: 1fr; }
    .xc61e0b0a33_interlinks__card { min-height: 240px; }

    .xc61e0b0a33_signal__container { grid-template-columns: 70px minmax(0, 1fr); }
    .xc61e0b0a33_signal__aside { grid-column: 2; }

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

@media (max-width: 620px) {

    .xc61e0b0a33_command__row { grid-template-columns: 1fr; }
    .xc61e0b0a33_command__button { width: 150px; justify-self: end; }

    .xc61e0b0a33_axis__track { grid-template-columns: 1fr; }
    .xc61e0b0a33_axis__item { min-height: auto; padding: 22px 0 34px; }

    .xc61e0b0a33_signal__container { grid-template-columns: 1fr; }
    .xc61e0b0a33_signal__mark { writing-mode: initial; transform: none; }
    .xc61e0b0a33_signal__aside { grid-column: auto; }

    .xc61e0b0a33_site-footer__groups { grid-template-columns: 1fr 1fr; }
    .xc61e0b0a33_site-footer__bottom { flex-direction: column; }

    .xc61e0b0a33_longtext__item {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 16px;
    }
}


/* =========================================================
   CSS STYLE PRESETS

   Три полноценные композиции поверх общей разметки блоков.
   Никаких дополнительных изображений или HTML-компонентов:
   пресет выбирается атрибутом data-style на <html>.
   ========================================================= */


/* =========================================================
   STYLE — EDITORIAL IMPACT
   Крупная типографика, плоские контрастные плоскости,
   прямые углы и журнальная асимметрия.
   ========================================================= */


/* =========================================================
   STYLE — MODULAR POP
   Воздушный центрированный макет, плавающие модули,
   мягкие тени и яркие акцентные элементы.
   ========================================================= */

html[data-style="modular-pop"] body {
    background:
        radial-gradient(circle at 8% 22%, color-mix(in srgb, #5b9cff 9%, transparent) 0 4%, transparent 4.2%),
        radial-gradient(circle at 88% 34%, color-mix(in srgb, #5b9cff 12%, transparent) 0 5%, transparent 5.2%),
        #11151c;
}

html[data-style="modular-pop"] .xc61e0b0a33_site-header--1 {
    width: min(860px, calc(100% - 32px));
    min-height: 68px;
    margin: 22px auto 0;
    border: 1px solid rgba(238, 244, 255, 0.16);
    border-radius: 999px;
    background: color-mix(in srgb, #1d2633 92%, transparent);
    box-shadow: 0 22px 60px color-mix(in srgb, #eef4ff 13%, transparent);
    backdrop-filter: blur(18px);
}

html[data-style="modular-pop"] .xc61e0b0a33_site-header__container {
    width: auto;
    min-height: 66px;
    padding: 0 10px 0 24px;
}

html[data-style="modular-pop"] .xc61e0b0a33_site-header__logo-image {
    max-width: 38px;
    max-height: 34px;
}

html[data-style="modular-pop"] .xc61e0b0a33_site-header__logo-text {
    font-weight: 850;
}

html[data-style="modular-pop"] .xc61e0b0a33_site-header__nav-list {
    gap: 20px;
}

html[data-style="modular-pop"] .xc61e0b0a33_site-header__button,
html[data-style="modular-pop"] .xc61e0b0a33_site-header__mobile-button {
    box-shadow: 0 10px 24px color-mix(in srgb, #5b9cff 30%, transparent);
}

html[data-style="modular-pop"] .xc61e0b0a33_hero--1 {
    overflow: clip;
    background: transparent;
}

html[data-style="modular-pop"] .xc61e0b0a33_hero--1::before {
    top: 8%;
    right: 5%;
    width: 128px;
    height: 128px;
    border: 18px solid color-mix(in srgb, #5b9cff 60%, #11151c);
    border-radius: 28px;
    background: #1d2633;
    box-shadow: 0 26px 60px color-mix(in srgb, #eef4ff 18%, transparent);
    filter: none;
    transform: rotate(11deg);
}

html[data-style="modular-pop"] .xc61e0b0a33_hero--1::after {
    content: "01  /  FOCUS";
    position: absolute;
    left: 6%;
    bottom: 12%;
    z-index: 2;
    padding: 24px 28px;
    border: 1px solid rgba(238, 244, 255, 0.16);
    border-radius: 24px;
    background: #1d2633;
    color: #eef4ff;
    box-shadow: 0 24px 70px color-mix(in srgb, #eef4ff 16%, transparent);
    font-family: "xc61e0b0a33_Manrope", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    transform: rotate(-5deg);
}

html[data-style="modular-pop"] .xc61e0b0a33_hero-1__container {
    min-height: 850px;
    padding: 120px 0 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 58px;
    text-align: center;
}

html[data-style="modular-pop"] .xc61e0b0a33_hero-1__content {
    position: relative;
    z-index: 3;
    max-width: 1120px;
    margin: 0 auto;
}

html[data-style="modular-pop"] .xc61e0b0a33_hero-1__eyebrow {
    margin: 0 auto 32px;
    box-shadow: 0 12px 30px color-mix(in srgb, #5b9cff 16%, transparent);
}

html[data-style="modular-pop"] .xc61e0b0a33_hero-1__title {
    max-width: none;
    font-size: clamp(58px, 8.4vw, 132px);
    font-weight: 850;
    line-height: .89;
    letter-spacing: -.075em;
}

html[data-style="modular-pop"] .xc61e0b0a33_hero-1__text {
    max-width: 720px;
    margin: 32px auto 0;
    font-size: clamp(18px, 1.55vw, 23px);
}

html[data-style="modular-pop"] .xc61e0b0a33_hero-1__actions {
    justify-content: center;
}

html[data-style="modular-pop"] .xc61e0b0a33_hero-1__button {
    min-height: 56px;
    padding-inline: 28px;
    box-shadow: 0 14px 32px color-mix(in srgb, #eef4ff 14%, transparent);
}

html[data-style="modular-pop"] .xc61e0b0a33_hero-1__button--primary {
    box-shadow: 0 18px 38px color-mix(in srgb, #5b9cff 33%, transparent);
}

html[data-style="modular-pop"] .xc61e0b0a33_hero-1__panel {
    position: relative;
    z-index: 3;
    width: min(880px, 86%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    text-align: left;
    box-shadow: 0 32px 90px color-mix(in srgb, #eef4ff 18%, transparent);
    transform: rotate(1deg);
}

html[data-style="modular-pop"] .xc61e0b0a33_hero-1__panel-label {
    grid-column: 1 / -1;
}

html[data-style="modular-pop"] .xc61e0b0a33_hero-1__panel-list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

html[data-style="modular-pop"] .xc61e0b0a33_hero-1__panel-item {
    padding: 0 22px;
    display: block;
    border-top: 0;
    border-left: 1px solid rgba(238, 244, 255, 0.16);
}

html[data-style="modular-pop"] .xc61e0b0a33_hero-1__panel-item:first-child {
    border-left: 0;
}

html[data-style="modular-pop"] .xc61e0b0a33_hero-1__panel-number {
    margin-bottom: 12px;
}

html[data-style="modular-pop"] :is(
    .xc61e0b0a33_triptych__item,
    .xc61e0b0a33_interlinks__card,
    .xc61e0b0a33_signal__container
) {
    border-radius: 20px;
    box-shadow: 0 22px 60px color-mix(in srgb, #eef4ff 12%, transparent);
}

html[data-style="modular-pop"] :is(.xc61e0b0a33_triptych__grid, .xc61e0b0a33_interlinks__grid) {
    gap: 24px;
    border: 0;
}

html[data-style="modular-pop"] :is(.xc61e0b0a33_triptych__item, .xc61e0b0a33_interlinks__card) {
    overflow: hidden;
    border: 1px solid rgba(238, 244, 255, 0.16);
    background: #1d2633;
}

html[data-style="modular-pop"] .xc61e0b0a33_triptych__item:nth-child(2) {
    transform: translateY(28px) rotate(1.5deg);
}

html[data-style="modular-pop"] .xc61e0b0a33_triptych__item:nth-child(3) {
    transform: rotate(-1.5deg);
}

html[data-style="modular-pop"] .xc61e0b0a33_interlinks__card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 32px 74px color-mix(in srgb, #5b9cff 22%, transparent);
}

html[data-style="modular-pop"] .xc61e0b0a33_command__button {
    box-shadow: 0 18px 40px color-mix(in srgb, #eef4ff 22%, transparent);
}


/* =========================================================
   STYLE — TECHNICAL GRID
   Тёмная инженерная сетка, резкие цветовые панели,
   прямые углы, крупные цифры и жёсткие тени.
   ========================================================= */


/* =========================================================
   STYLE PRESETS — RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {
    html[data-style="modular-pop"] .xc61e0b0a33_hero--1::after {
        left: 3%;
        bottom: 6%;
    }
}

@media (max-width: 820px) {

    html[data-style="modular-pop"] .xc61e0b0a33_site-header--1 {
        margin-top: 12px;
    }

    html[data-style="modular-pop"] .xc61e0b0a33_hero-1__panel,
    html[data-style="modular-pop"] .xc61e0b0a33_hero-1__panel-list {
        grid-template-columns: 1fr;
    }

    html[data-style="modular-pop"] .xc61e0b0a33_hero-1__panel-item {
        padding: 20px 0;
        border-left: 0;
        border-top: 1px solid rgba(238, 244, 255, 0.16);
    }

    html[data-style="modular-pop"] .xc61e0b0a33_hero-1__panel-item:first-child {
        border-top: 0;
    }

    html[data-style="modular-pop"] .xc61e0b0a33_triptych__item:nth-child(n) {
        transform: none;
    }
}

@media (max-width: 620px) {

    html[data-style="modular-pop"] .xc61e0b0a33_hero-1__container {
        min-height: auto;
        padding: 92px 0 110px;
    }

    html[data-style="modular-pop"] .xc61e0b0a33_hero--1::before {
        width: 82px;
        height: 82px;
        border-width: 12px;
    }

    html[data-style="modular-pop"] .xc61e0b0a33_hero--1::after {
        display: none;
    }

    html[data-style="modular-pop"] .xc61e0b0a33_hero-1__title {
        font-size: clamp(48px, 15vw, 74px);
    }

    html[data-style="modular-pop"] .xc61e0b0a33_hero-1__panel {
        width: 100%;
        transform: none;
    }
}
