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

@font-face {
    font-family: "x72bb2ae4da_Onest";
    src: url("../fonts/Onest/Onest-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}



















@font-face {
    font-family: "x72bb2ae4da_Roboto_Slab";
    src: url("../fonts/Roboto_Slab/RobotoSlab-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 100 900;
    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: #ffffff;
    color: #050505;
    font-family: "x72bb2ae4da_Onest", 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
   ========================================================= */

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

.x72bb2ae4da_site-header--1 {
    min-height: 76px;
    background: #ffffff;
    color: #050505;    
}

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

/* logo */

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

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

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

.x72bb2ae4da_site-header__logo-text {
    font-family: "x72bb2ae4da_Roboto_Slab", Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

/* navigation */

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

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

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

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

.x72bb2ae4da_site-header__nav-link:hover,
.x72bb2ae4da_site-header__nav-link:focus-visible {
    color: #050505;
}

.x72bb2ae4da_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;
}

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

/* header button */

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

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

.x72bb2ae4da_site-header__button:hover,
.x72bb2ae4da_site-header__mobile-button:hover {
    background: #303030;
    transform: translateY(-1px);
}


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

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

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

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

.x72bb2ae4da_site-header__mobile-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(5, 5, 5, 0.18);
    border-radius: 12px;
    background: #ffffff;
    color: #050505;
    cursor: pointer;
}

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

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

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

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

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

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

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

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

.x72bb2ae4da_site-header__mobile-link:hover {
    background: #f1f1f1;
}

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


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

.x72bb2ae4da_hero--1 {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #050505;
}

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

.x72bb2ae4da_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;
}

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

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

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

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

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

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

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

.x72bb2ae4da_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: "x72bb2ae4da_Onest", 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;
}

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

.x72bb2ae4da_hero-1__button--primary {
    background: #050505;
    color: #ffffff;
}

.x72bb2ae4da_hero-1__button--primary:hover {
    background: #303030;
}

.x72bb2ae4da_hero-1__button--secondary {
    border-color: rgba(5, 5, 5, 0.18);
    background: transparent;
    color: #050505;
}

.x72bb2ae4da_hero-1__button--secondary:hover {
    background: #f1f1f1;
}

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


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

.x72bb2ae4da_hero-1__panel {
    position: relative;
    padding: clamp(24px, 3vw, 38px);
    border: 1px solid rgba(5, 5, 5, 0.18);
    border-radius: 28px;
    background: #f1f1f1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.x72bb2ae4da_hero-1__panel-item {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(5, 5, 5, 0.18);
}

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

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

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

.x72bb2ae4da_hero-1__panel-title {
    color: #050505;
    font-family: "x72bb2ae4da_Roboto_Slab", Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

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


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

@media (max-width: 960px) {
    .x72bb2ae4da_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,
    .x72bb2ae4da_site-header__container {
        min-height: 68px;
    }

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

    .x72bb2ae4da_site-header__mobile {
        display: block;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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


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

.x72bb2ae4da_feature-index--1 {
    position: relative;
    overflow: clip;
    padding: 88px 0;
    background: #050505;
    color: #ffffff;
}

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

.x72bb2ae4da_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;
}

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

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

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

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

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

.x72bb2ae4da_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, #ffffff 20%, transparent);
}

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

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

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

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

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

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

    .x72bb2ae4da_feature-index__intro {
        position: static;
    }

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

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

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

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




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

.x72bb2ae4da_duet--1 {
    padding: calc(88px * 1.1) 0;
    background: #f1f1f1;
}

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

.x72bb2ae4da_duet__kicker {
    margin-bottom: 32px;
    color: #050505;
    font-family: "x72bb2ae4da_Onest", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.x72bb2ae4da_duet__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(5, 5, 5, 0.18);
    border-bottom: 1px solid rgba(5, 5, 5, 0.18);
}

.x72bb2ae4da_duet__column {
    min-height: 520px;
    padding: clamp(34px, 5vw, 72px);
}

.x72bb2ae4da_duet__column + .x72bb2ae4da_duet__column {
    padding-top: clamp(110px, 12vw, 170px);
    border-left: 1px solid rgba(5, 5, 5, 0.18);
}

.x72bb2ae4da_duet__meta {
    margin-bottom: 48px;
    color: #050505;
    font-family: "x72bb2ae4da_Onest", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}

.x72bb2ae4da_duet__title {
    max-width: 560px;
    margin: 0;
    font-family: "x72bb2ae4da_Roboto_Slab", Georgia, serif;
    font-size: clamp(36px, 4.6vw, 68px);
    font-weight: 520;
    line-height: .98;
    letter-spacing: -.05em;
    text-wrap: balance;
}

.x72bb2ae4da_duet__text {
    max-width: 520px;
    margin: 32px 0 0;
    color: #595959;
    font-size: 17px;
    line-height: 1.65;
}

.x72bb2ae4da_duet__list {
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(5, 5, 5, 0.18);
}

.x72bb2ae4da_duet__list li {
    position: relative;
    padding: 13px 0 13px 24px;
    border-bottom: 1px solid rgba(5, 5, 5, 0.18);
    color: #050505;
    font-size: 14px;
}

.x72bb2ae4da_duet__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 1px;
    background: #050505;
}

.x72bb2ae4da_duet__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    font-family: "x72bb2ae4da_Onest", Arial, sans-serif;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.x72bb2ae4da_duet__link span {
    color: #050505;
    transition: transform 180ms ease;
}

.x72bb2ae4da_duet__link:hover span {
    transform: translate(3px, -3px);
}


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


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


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


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

.x72bb2ae4da_command--1 {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 8vw, 110px) 0;
    background: #050505;
    color: #ffffff;
}

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

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

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

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

.x72bb2ae4da_command__title {
        max-width: 820px;
    margin: 0;
    font-family: "x72bb2ae4da_Roboto_Slab", Georgia, serif;
    font-size: 52px;
    font-weight: 560;
    color: #666464;
    line-height: 1.15;
    letter-spacing: 0;
    text-wrap: balance;
}

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

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

.x72bb2ae4da_command__button:hover {
    background: #ffffff;
    color: #050505;
    transform: rotate(-4deg);
}

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


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


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

.x72bb2ae4da_interlinks--1 {
    padding: calc(88px * 1.05) 0;
    background: #f1f1f1;
    color: #050505;
}

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

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

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

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

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

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

.x72bb2ae4da_interlinks__card:hover {
    z-index: 1;
    background: color-mix(in srgb, #050505 8%, #ffffff);
    transform: translateY(-4px);
}

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

.x72bb2ae4da_interlinks__number { color: #050505; }
.x72bb2ae4da_interlinks__meta { text-align: right; }

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

.x72bb2ae4da_interlinks__text {
    margin-top: 16px;
    color: #595959;
    font-size: 14px;
    line-height: 1.6;
}

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


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

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

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

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

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

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

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

.x72bb2ae4da_axis__track::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(5, 5, 5, 0.18);
}

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

.x72bb2ae4da_axis__content {
    max-width: 245px;
}

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

.x72bb2ae4da_axis__node {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(5, 5, 5, 0.18);
    border-radius: 50%;
    background: #f1f1f1;
    color: #050505;
    font-family: "x72bb2ae4da_Onest", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
}

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

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

.x72bb2ae4da_axis__text {
    margin: 10px 0 0;
    color: #595959;
    font-size: 13px;
    line-height: 1.55;
}


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


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

.x72bb2ae4da_signal--1 {
    padding: clamp(62px, 8vw, 110px) 0;
    background: #f1f1f1;
    border-top: 8px solid #050505;
}

.x72bb2ae4da_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;
}

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

.x72bb2ae4da_signal__title {
    max-width: 900px;
    margin: 0;
    font-family: "x72bb2ae4da_Roboto_Slab", Georgia, serif;
    font-size: clamp(44px, 5vw, 86px);
    font-weight: 520;
    line-height: .94;
    letter-spacing: -.06em;
}

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

.x72bb2ae4da_signal__aside {
    padding-top: 18px;
    color: #595959;
    font-family: "x72bb2ae4da_Onest", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.55;
    border-top: 1px solid rgba(5, 5, 5, 0.18);
}


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


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


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

.x72bb2ae4da_site-footer--1 {
    overflow: hidden;
    padding: 72px 0 24px;
    background: #050505;
    color: #ffffff;
}

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

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

.x72bb2ae4da_site-footer__brand-small {
    margin-bottom: 24px;
    font-family: "x72bb2ae4da_Roboto_Slab", Georgia, serif;
    font-size: 24px;
    font-weight: 650;
    letter-spacing: -.04em;
}

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

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

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

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

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

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

.x72bb2ae4da_site-footer__brand {
    white-space: nowrap;
    margin-left: -.045em;
    color: #2c2c2c;
    font-family: "x72bb2ae4da_Roboto_Slab", Georgia, serif;
    font-size: clamp(90px, 13vw, 260px);
    font-weight: 700;
    line-height: .72;
    letter-spacing: -.085em;
    opacity: .95;
}

.x72bb2ae4da_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, #ffffff 18%, transparent);
    color: color-mix(in srgb, #ffffff 42%, transparent);
    font-family: "x72bb2ae4da_Onest", Arial, sans-serif;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}


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

.x72bb2ae4da_shortext {
    padding: 88px 0;
    background: #f1f1f1;
    border-top: 1px solid rgba(5, 5, 5, 0.18);
    border-bottom: 1px solid rgba(5, 5, 5, 0.18);
}

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

.x72bb2ae4da_shortext__head {
    display: grid;
    grid-template-columns: minmax(150px, .36fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

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

.x72bb2ae4da_shortext__kicker { color: #050505; }

.x72bb2ae4da_shortext__title,
.x72bb2ae4da_longtext__title {
    margin: 0;
    font-family: "x72bb2ae4da_Roboto_Slab", Georgia, serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 650;
    line-height: 1.02;
    letter-spacing: -.055em;
}

.x72bb2ae4da_shortext__title { max-width: 780px; }

.x72bb2ae4da_shortext__body {
    margin-top: 64px;
    padding-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    border-top: 1px solid rgba(5, 5, 5, 0.18);
}

.x72bb2ae4da_shortext__paragraph,
.x72bb2ae4da_longtext__paragraph {
    margin: 0;
    font-size: 17px;
    line-height: 1.85;
}

.x72bb2ae4da_shortext__paragraph { color: #595959; }


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

.x72bb2ae4da_longtext {
    padding: calc(88px * 1.15) 0;
    background: #050505;
    color: #ffffff;
}

.x72bb2ae4da_longtext__head {
    max-width: 900px;
}

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

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

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

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

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


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

@media (max-width: 980px) {

    .x72bb2ae4da_axis__track { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 0; }
    .x72bb2ae4da_axis__track::before { display: none; }
    .x72bb2ae4da_axis__item {
        min-height: 260px;
        grid-template-rows: 42px 1fr;
        border-top: 1px solid rgba(5, 5, 5, 0.18);
        padding-top: 20px;
    }
    .x72bb2ae4da_axis__item:nth-child(n) .x72bb2ae4da_axis__node { grid-row: 1; }
    .x72bb2ae4da_axis__item:nth-child(n) .x72bb2ae4da_axis__content { grid-row: 2; align-self: start; padding: 16px 0 0; }
}

@media (max-width: 820px) {
    .x72bb2ae4da_duet__grid,
    .x72bb2ae4da_interlinks__grid,
    .x72bb2ae4da_site-footer__top {
        grid-template-columns: 1fr;
    }

    .x72bb2ae4da_duet__column { min-height: auto; padding: 42px 0; }
    .x72bb2ae4da_duet__column + .x72bb2ae4da_duet__column { padding-top: 42px; border-left: 0; border-top: 1px solid rgba(5, 5, 5, 0.18); }

    
    .x72bb2ae4da_interlinks__head,
    .x72bb2ae4da_axis__head,
    .x72bb2ae4da_shortext__head {
        grid-template-columns: 1fr;
    }

    .x72bb2ae4da_shortext__body { grid-template-columns: 1fr; }
    .x72bb2ae4da_interlinks__grid { grid-template-columns: 1fr; }
    .x72bb2ae4da_interlinks__card { min-height: 240px; }

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

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

@media (max-width: 620px) {

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

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

    .x72bb2ae4da_signal__container { grid-template-columns: 1fr; }
    .x72bb2ae4da_signal__mark { writing-mode: initial; transform: none; }
    .x72bb2ae4da_signal__aside { grid-column: auto; }

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

    .x72bb2ae4da_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, #050505 9%, transparent) 0 4%, transparent 4.2%),
        radial-gradient(circle at 88% 34%, color-mix(in srgb, #050505 12%, transparent) 0 5%, transparent 5.2%),
        #ffffff;
}

html[data-style="modular-pop"] .x72bb2ae4da_site-header--1 {
    width: min(860px, calc(100% - 32px));
    min-height: 68px;
    margin: 22px auto 0;    
    backdrop-filter: blur(18px);
}

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

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

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

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

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

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

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

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

html[data-style="modular-pop"] .x72bb2ae4da_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"] .x72bb2ae4da_hero-1__content {
    position: relative;
    z-index: 3;
    max-width: 1120px;
    margin: 0 auto;
}

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

html[data-style="modular-pop"] .x72bb2ae4da_hero-1__title {
       max-width: 860px;
    font-size: 61px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0;
}

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

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

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

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

html[data-style="modular-pop"] .x72bb2ae4da_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, #050505 18%, transparent);
    transform: rotate(1deg);
}

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

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

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

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

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

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

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

html[data-style="modular-pop"] :is( .x72bb2ae4da_interlinks__card) {
    overflow: hidden;
    border: 1px solid rgba(5, 5, 5, 0.18);
    background: #ffffff;
}

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

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


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


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

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

@media (max-width: 820px) {

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

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

    html[data-style="modular-pop"] .x72bb2ae4da_hero-1__panel-item {
        padding: 20px 0;
        border-left: 0;
        border-top: 1px solid rgba(5, 5, 5, 0.18);
    }

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

@media (max-width: 620px) {

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

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

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

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

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