@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

:root {
    --color-white: #F7F7F7;
    --color-blue: #31AFE1;
    --color-black: #171717;
    --color-blue-dark: #00243E;
    --color-gray: #F0F0F0;
}

.t-header {
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

    @media (width <= 800px) {
        font-size: 54px;
    }
}

.t-subheader {
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    @media (width <= 800px) {
        font-size: 24px;
    }
}

.t-button {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    @media (width <= 800px) {
        font-size: 18px;
    }
}

.t-text {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 135%;

    @media (width <= 800px) {
        font-size: 18px;
    }
}

body {
    background-color: var(--color-white);
    font-family: "Roboto", sans-serif;
    position: relative;
}

p a {
    color: var(--color-blue);
}

a:hover {
    text-decoration: underline;
}

b {
    font-weight: 700;
}

.bg-images {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out;

    @media (width <= 800px) {
        opacity: 0.35;
    }
}

.bg-top-left {
    background-image: url("/static/svg/bg_top_left.svg");
    position: absolute;
    left: 0;
    top: 0;
    width: 558px;
    height: 1696px;
    pointer-events: none;
}

.bg-mid-right-1 {
    background-image: url("/static/svg/bg_mid_right_1.svg");
    position: absolute;
    right: 0;
    top: 550px;
    width: 826px;
    height: 1558px;
    pointer-events: none;
}

.bg-mid-right-2 {
    background-image: url("/static/svg/bg_mid_right_2.svg");
    position: absolute;
    right: 0;
    top: 2350px;
    width: 612px;
    height: 940px;
    pointer-events: none;
}

.bg-mid-left {
    background-image: url("/static/svg/bg_mid_left.svg");
    position: absolute;
    left: 0;
    top: 2000px;
    width: 613px;
    height: 2395px;
    pointer-events: none;
}

.page-content {
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    min-height: 100vh;
    position: relative;
    z-index: 10;
    padding-top: 32px;
    margin: 0 auto;

    @media (width <= 1440px) {
        padding-left: 24px;
        padding-righT: 24px;
    }
}

.menu-top {
    background-color: var(--color-blue-dark);
    border-radius: 32px;
    display: flex;
    justify-content: space-around;
    width: 608px;
    padding: 0 30px;
    margin: 0 auto 80px;
    position: sticky;
    top: 0;

    @media (width <= 800px) {
        width: 100%;
    }

    @media (width <= 450px) {
        padding: 0 15px;
    }
}

.menu-item {
    padding: 24px 12px;
    color: var(--color-white);
    font-weight: 300;
    position: relative;
}

.menu-item.active::before,
.menu-item:hover::before {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
    left: 2px;
    right: 2px;
    top: 7px;
    bottom: 7px;
    border-radius: 24px;
    background-color: #31AFE133;
}

@media (width <= 800px) {
    .menu-item.active::before,
    .menu-item:hover::before {
        left: 1px;
        right: 1px;
    }
}


.menu-item:hover .dropdown,
.menu-item:active .dropdown {
    visibility: visible;
}

.menu-item .dropdown {
    width: 220px;
    position: absolute;
    left: -35px;
    top: 50px;
    z-index: 10;
    visibility: hidden;
    font-size: 20px;
}

.icon-chevron {
    background-image: url("/static/svg/icon_chevron_right.svg");
    width: 8px;
    height: 13px;
    transition: transform 0.3s ease-in-out;
}

.menu-item .dropdown > .level-one {
    background-color: var(--color-white);
    color: var(--color-black);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px 12px 24px;
    cursor: pointer;
}

.menu-item .dropdown > .level-one:hover .icon-chevron {
    transform: rotate(-0.5turn);
}

.menu-item .dropdown > .level-one:first-child {
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

.menu-item .dropdown > .level-one:last-child {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}

.menu-item .dropdown > .level-one > a {
    display: block;
    flex-grow: 1;
}

.menu-item .dropdown > .level-one:hover,
.menu-item .dropdown > .level-one:active {
    color: var(--color-blue);
    background-color: var(--color-gray);
}

.menu-item .dropdown > .level-one:hover .dropdown-nested,
.menu-item .dropdown > .level-one:active .dropdown-nested {
    visibility: visible;
}

.menu-item .dropdown > .level-one .dropdown-nested {
    position: absolute;
    left: 220px;
    padding: 24px;
    background-color: var(--color-white);
    color: var(--color-black);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    min-width: 320px;
    visibility: hidden;

    @media (width <= 800px) {
        left: -50px;
        right: 50px;
    }
}

.menu-item .dropdown-nested.tools {
    top: 80px;
}

.menu-item .dropdown-nested.descriptions {
    top: 130px;
}

.menu-item .dropdown-nested.howto {
    top: 175px;
}

.menu-item .dropdown > .level-one .dropdown-nested::before {
    display: block;
    content: "";
    background-color: transparent;
    position: absolute;
    left: -10px;
    right: 100%;
    top: 0;
    bottom: 0;
}

.menu-item .dropdown > .level-one .dropdown-nested .title {
    color: var(--color-blue);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.menu-item .dropdown > .level-one .dropdown-nested .title img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 12px;
}

.menu-item .dropdown > .level-one .dropdown-nested a:hover {
    color: var(--color-blue);
}

.menu-item .dropdown > .level-one .dropdown-nested ul {
    margin-bottom: 24px;
    list-style: disc;
    padding-left: 64px;
}

.menu-item .dropdown > .level-one .dropdown-nested ul li + li {
    padding-top: 8px;
}

.menu-item .dropdown > .level-one .dropdown-nested ul.two-columns {
    columns: 2;
    min-width: 700px;
    column-gap: 40px;

    @media (width <= 900px) {
        columns: 1;
        min-width: unset;
    }
}

.block-top {
    width: 100%;
    display: grid;
    gap: 100px;
    grid-template-columns: 1fr 569px;
    justify-content: space-between;
    margin-bottom: 150px;
    overflow: hidden;

    @media (width <= 1400px) {
        gap: 40px;
    }

    @media (width <= 800px) {
        grid-template-columns: 1fr 200px;
    }
}

.block-top-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
}

.block-top-left-logo {
    margin-bottom: 37px;
    width: 391px;

    @media (width <= 800px) {
        width: 200px;
    }
}

.btn-cta {
    padding: 16px 48px;
    border: 2px solid var(--color-black);
    border-radius: 32px;
    transition: all 0.5s ease-in-out;
}

.btn-cta:hover {
    background-color: var(--color-blue-dark);
    color: var(--color-white);
}

.block-top-left .t-header {
    margin-bottom: 58px;
}

.block-top-left .t-subheader {
    margin-bottom: 59px;
}

.block-top-right img {
    width: 569px;
    height: 569px;
}


h2 {
    color: var(--color-blue);
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.page-heading {
    max-width: 1180px;
    margin: 46px auto 24px;
    color: var(--color-blue-dark);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

@media (width <= 800px) {
    .page-heading {
        margin: 28px 20px 16px;
        font-size: 34px;
    }
}

h4 {
    font-size: 30px;
    padding-bottom: 15px;
}

.block-about {
    margin-bottom: 206px;
}

.block-about .containers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 62px;

    @media (width <= 800px) {
        grid-template-columns: 1fr;
    }
}

.block-about h2 {
    margin-bottom: 46px;
}

.about-container {
    border-radius: 32px;
    background: var(--color-gray);
    padding: 38px 50px;
    color: var(--color-black);
    max-width: 687px;
}

.about-container:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.about-container .t-subheader {
    margin-bottom: 45px;
}

.icon-circle {
    background-size: contain;
    width: 46px;
    height: 46px;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-circle-plus {
    background-image: url("/static/svg/icon_plus.svg");
}

.icon-circle-pc {
    background-image: url("/static/svg/icon_pc.svg");
}

.icon-circle-wrench {
    background-image: url("/static/svg/icon_wrench.svg");
}

.icon-circle-lock {
    background-image: url("/static/svg/icon_lock.svg");
}

.icon-arrow-br {
    background-image: url("/static/svg/icon_arrow_br.svg");
    background-size: contain;
    width: 69px;
    height: 70px;
}

.block-you-can {
    margin-bottom: 90px;
}

.block-you-can h2 {
    margin-bottom: 72px;
}

.block-you-can .containers {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.block-you-can .you-can-container .header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--color-black);
    padding: 16px 0 5px;
    cursor: pointer;
}

.block-you-can .you-can-container .header .icon-circle {
    margin-right: 17px;
}

.block-you-can .you-can-container .header .t-subheader {
    flex-grow: 1;
}

.block-you-can .you-can-container ul {
    list-style: disc;
    padding-left: 25px;
    padding-top: 15px;
    max-height: 0;
    transition: max-height 0.5s ease-in-out;
    overflow: hidden;
}

.block-you-can .you-can-container.opened ul {
    max-height: 500px;
}

.block-you-can .btn-all-features {
    color: var(--color-blue);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.block-gallery {
    margin-bottom: 100px;

    @media (width <= 1440px) {
        max-width: 100%;
        overflow: hidden;
    }
}

.block-gallery .screenshots {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-gallery .screenshots a {
    position: absolute;
    transition: all 0.2s ease-in-out;
}

.block-gallery .screenshots a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.block-gallery h2 {
    margin-bottom: 120px;
}

.block-gallery .swiper {
    width: 1400px;
    height: 300px;
}

.block-footer {
    margin-bottom: 100px;
}

.block-footer .links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;

    @media (width <= 800px) {
        flex-direction: column;
    }
}

.modal-backdrop {
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100vh;
    min-width: 100vw;
    justify-content: center;
    align-items: center;
    z-index: 10;
    backdrop-filter: blur(10px);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.5s, opacity 0.5s ease-in-out;
}

.modal-backdrop.opened {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop .modal {
    background-color: var(--color-white);
    padding: 59px 59px;
    border-radius: 32px;
    position: relative;
    bottom: -600px;
    transition: bottom 0.5s ease-in-out;
    overflow: scroll;
    max-height: 100vh;
}

.modal-backdrop.opened .modal {
    bottom: 0;
}

.modal-backdrop .modal h3 {
    color: var(--color-blue);
    margin-bottom: 54px;
}

.modal-backdrop .modal .two-lists {
    display: flex;
    justify-content: space-between;
    gap: 90px;

    @media (width <= 800px) {
        flex-direction: column;
    }
}

.modal-backdrop .modal ul {
    list-style: disc;
    padding-left: 25px;
    max-width: 430px;

    @media (width <= 800px) {
        max-width: unset;
    }
}

.modal-backdrop .modal .close {
    position: absolute;
    right: 78px;
    top: 78px;
    background-image: url("/static/svg/icon_close.svg");
    background-size: contain;
    width: 45px;
    height: 44px;

    @media (width <= 800px) {
        right: 50px;
        top: 50px;
    }
}

.block-installation-links {
    margin-bottom: 10px;
}

.block-installation-links ul {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 56px;
}

.block-installation-links ul a {
    font-size: 24px;
    color: var(--color-blue-dark);
}

.block-os-support {
    padding: 70px 132px;
    background: var(--color-blue-dark);
    border-radius: 48px;
    color: var(--color-white);
    margin-top: 40px;
    margin-left: -82px;
    margin-right: -82px;

    @media (width <= 800px) {
        margin-left: 0;
        margin-right: 0;
        padding: 24px 40px;
    }
}

.block-os-support h2 {
    color: var(--color-white);
    margin-bottom: 56px;
}

.block-os-support-container {
    display: flex;
    gap: 20px;
    align-items: center;

    @media (width <= 800px) {
        flex-direction: column;
    }
}

.block-os-support h3 {
    font-size: 24px;
    margin-bottom: 48px;
}

.block-os-support ul {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    gap: 32px;
    font-weight: 300;
}

.block-installation-on h2 {
    margin-bottom: 16px;
    padding-top: 68px;
}

.block-installation-on h3 {
    font-size: 32px;
    color: var(--color-blue-dark);
    margin-bottom: 32px;
}

.block-hint {
    display: flex;
    align-items: center;
    gap: 24px;
    border-radius: 32px;
    padding: 35px 30px;
    background: #31AFE166;
    color: var(--color-black);
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 32px;
}

.block-code {
    border-radius: 32px;
    background: #F0F0F099;
    padding: 23px 88px;
    color: var(--color-blue-dark);
    font-weight: 400;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New;
    margin-bottom: 32px;

    @media (width <= 800px) {
        padding: 14px 32px;
    }
}

.block-code li::before {
    content: counter(list-item)"\a0\a0\a0";
}

.block-installation-on p {
    color: var(--color-blue-dark);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 32px;
}

.flex-two {
    display: flex;
    gap: 20px;

    @media (width <= 800px) {
        flex-direction: column;
    }
}

.flex-two > * {
    width: 50%;

    @media (width <= 800px) {
        width: 100%;
    }
}

.color-blue {
    color: var(--color-blue);
}

.block-pricing-container {
    display: flex;
    gap: 20px;
    margin-top: 80px;
    margin-bottom: 120px;

    @media (width <= 800px) {
        flex-direction: column;
    }
}

.block-pricing-container .tarif {
    padding: 45px 36px;
    background: var(--color-gray);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    height: 530px;
}

.block-pricing-container .tarif.premium {
    background: var(--color-blue-dark);
    color: var(--color-white);
}

.block-pricing-container .tarif.premium .description {
    border-bottom-color: var(--color-white);
}

.block-pricing-container .tarif.premium .btn {
    border-color: var(--color-white);
}

.block-pricing-container .tarif .header {
    display: flex;
    gap: 8px;
    font-size: 36px;
    margin-bottom: 22px;
    align-items: center;
    flex-grow: 0;
}

.block-pricing-container .tarif .description {
    font-weight: 300;
    font-size: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-black);
    margin-bottom: 40px;
    flex-grow: 0;
}

.block-pricing-container .tarif .btn {
    border: 2px solid var(--color-black);
    border-radius: 32px;
    width: 100%;
    padding: 16px 48px;
    text-align: center;
    font-size: 24px;
}

.block-pricing-container .tarif .btn-description {
    font-weight: 300;
    font-size: 16px;
    text-align: center;
    padding-top: 12px;
}

.block-pricing-container .tarif ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 16px;
    font-weight: 300;
    flex-grow: 1;
}

.block-pricing-container .tarif li::before {
    content: "";
    display: inline-block;
    background: url("/static/svg/icon_tarif_li.svg");
    width: 16px;
    height: 16px;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 1px;
}

.block-pricing-container .tarif li {
    display: flex;
    align-items: start;
}
.overviewHead:hover {
    background-color: #f4f9f3e6;
}
.padding10 {
    padding: 10px 10px 10px 0;
    border: none;
    width: 15%;
}
.just_ul {
    font-size: 20px;
}
.changelog {
    margin-bottom: 25px;
}
.changelog h3 {
    color: var(--color-blue);
    margin-bottom: 10px;
    scroll-margin-top: 110px;
}
.changelog ol {
    list-style: auto;
    margin-left: 20px;
}
.block-installation-links > .changelog {
    max-width: 1100px;
    margin-bottom: 64px;
    padding: 38px 42px;
    border: 1px solid #d9e5ec;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 48px rgba(0, 36, 62, 0.08);
}
.block-installation-links > .changelog h3 {
    margin-bottom: 34px;
    font-size: 38px;
}
.block-installation-links > .changelog h4 {
    margin: 32px 0 14px;
    color: var(--color-blue-dark);
    font-size: 25px;
    font-weight: 700;
}
.block-installation-links > .changelog h5 {
    margin: 27px 0 12px;
    color: var(--color-blue-dark);
    font-size: 20px;
    font-weight: 700;
}
.block-installation-links > .changelog ul {
    display: block;
    gap: 0;
    margin: 0 0 0 22px;
    padding-top: 0;
    list-style: disc;
}
.block-installation-links > .changelog ul ul {
    margin-top: 8px;
    list-style: circle;
}
.block-installation-links > .changelog li {
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.5;
}
.block-installation-links > .changelog code {
    padding: 2px 7px;
    border-radius: 6px;
    background: #e8f3f7;
    color: #0b5676;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.9em;
    overflow-wrap: anywhere;
}
.changelog-component {
    margin-top: 42px;
    padding-top: 12px;
    border-top: 2px solid #d9e5ec;
}
@media (max-width: 700px) {
    .block-installation-links > .changelog {
        padding: 28px 20px;
        border-radius: 22px;
    }
    .block-installation-links > .changelog h3 {
        font-size: 31px;
    }
    .block-installation-links > .changelog h4 {
        font-size: 22px;
    }
    .block-installation-links > .changelog li {
        font-size: 16px;
    }
}
.related-docs {
    max-width: 1200px;
    margin: 48px auto;
    padding: 32px;
    box-sizing: border-box;
    border: 1px solid #d9e5ec;
    border-radius: 24px;
    background: #f4f8fa;
}

.related-docs h2 {
    margin: 0 0 24px;
    color: #123047;
    font-size: 28px;
}

.related-docs ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.related-docs li {
    padding: 20px;
    border: 1px solid #d9e5ec;
    border-radius: 16px;
    background: #fff;
}

.related-docs a {
    color: #0c73a8;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.related-docs a:hover {
    text-decoration: underline;
}

.related-docs p {
    margin: 10px 0 0;
    color: #41566a;
    font-size: 15px;
    line-height: 1.45;
}

@media (max-width: 700px) {
    .related-docs {
        margin: 32px 16px;
        padding: 24px 18px;
    }
}

/* Homepage — conversion-focused product story */
html:has(.home-page),
body:has(.home-page) {
    overflow-x: clip;
}

body:has(.home-page) {
    background: #f8fbfc;
}

body:has(.home-page) .bg-images {
    opacity: 0.42;
}

body:has(.home-page) .page-content {
    width: 100%;
    box-sizing: border-box;
}

body:has(.home-page) .menu-top {
    z-index: 80;
    top: 16px;
    width: auto;
    max-width: 760px;
    box-sizing: border-box;
    margin-bottom: 28px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 36, 62, 0.94);
    box-shadow: 0 18px 40px rgba(0, 36, 62, 0.16);
    backdrop-filter: blur(18px);
}

body:has(.home-page) .menu-item {
    padding: 17px 14px;
    white-space: nowrap;
}

body:has(.home-page) .menu-item:hover::before,
body:has(.home-page) .menu-item.active::before {
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
}

body:has(.home-page) .menu-item-cta {
    margin-left: 4px;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 25px;
    background: #31afe1;
    color: #00243e;
    font-weight: 700;
}

body:has(.home-page) .menu-item-cta:hover::before {
    display: none;
}

.menu-top .menu-item-cta {
    margin-left: 4px;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 25px;
    background: #31afe1;
    color: #00243e;
    font-weight: 700;
}

.menu-top .menu-item-cta:hover::before {
    display: none;
}

.home-page {
    --home-navy: #00243e;
    --home-blue: #31afe1;
    --home-cyan: #73dcf2;
    --home-ink: #0a2537;
    --home-muted: #526a79;
    --home-line: #dce8ed;
    width: 100%;
    color: var(--home-ink);
}

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

.home-page h1,
.home-page h2,
.home-page h3,
.home-page p,
.home-page figure {
    margin: 0;
}

.home-page a {
    text-decoration: none;
}

.home-page a:focus-visible,
.home-page button:focus-visible,
.home-page summary:focus-visible {
    outline: 3px solid rgba(49, 175, 225, 0.55);
    outline-offset: 4px;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.97fr);
    align-items: center;
    gap: clamp(42px, 6vw, 96px);
    min-height: 670px;
    padding: 50px 24px 108px;
}

.home-hero-copy {
    position: relative;
    z-index: 2;
}

.home-eyebrow,
.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #167da9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.home-eyebrow span {
    width: 26px;
    height: 2px;
    background: var(--home-blue);
}

.home-hero h1 {
    max-width: 790px;
    margin-top: 22px;
    color: var(--home-navy);
    font-size: clamp(54px, 5.75vw, 84px);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.home-hero h1 span {
    display: block;
    color: #159bcc;
}

.home-lead {
    max-width: 670px;
    margin-top: 30px !important;
    color: var(--home-muted);
    font-size: clamp(18px, 1.5vw, 21px);
    font-weight: 300;
    line-height: 1.6;
}

.home-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 58px;
    padding: 0 27px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.home-button:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.home-button-primary {
    background: var(--home-navy);
    color: white;
    box-shadow: 0 16px 30px rgba(0, 36, 62, 0.18);
}

.home-button-primary:hover {
    box-shadow: 0 20px 40px rgba(0, 36, 62, 0.25);
}

.home-button-primary span,
.home-button-light span {
    font-size: 22px;
    transition: transform 180ms ease;
}

.home-button-primary:hover span,
.home-button-light:hover span {
    transform: translateX(4px);
}

.home-button-secondary {
    border-color: #b9cbd4;
    color: var(--home-navy);
    background: rgba(255, 255, 255, 0.48);
}

.home-button-secondary:hover {
    border-color: var(--home-blue);
    background: white;
}

.home-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 25px;
    margin: 26px 0 0;
    padding: 0;
    color: #5c7180;
    font-size: 13px;
    list-style: none;
}

.home-proof li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    margin-right: 7px;
    border-radius: 50%;
    background: #dff5ed;
    color: #16865e;
    font-size: 11px;
    font-weight: 700;
}

.home-monitor-wrap {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.home-monitor-wrap::before {
    content: "";
    position: absolute;
    z-index: -2;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle at 34% 30%, #bcebf5, #55bede 48%, #0e719d 100%);
    box-shadow: 0 45px 90px rgba(0, 95, 137, 0.24);
}

.home-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(23, 142, 185, 0.21);
    border-radius: 50%;
    pointer-events: none;
}

.home-orbit-one { width: 500px; height: 500px; }
.home-orbit-two { width: 570px; height: 570px; border-style: dashed; }

.home-orbit-two::before,
.home-orbit-two::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--home-blue);
    box-shadow: 0 0 0 7px rgba(49, 175, 225, 0.13);
}

.home-orbit-two::before { top: 73px; right: 63px; }
.home-orbit-two::after { bottom: 84px; left: 50px; }

.home-monitor-card {
    width: min(100%, 520px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 32px 70px rgba(0, 36, 62, 0.26);
    backdrop-filter: blur(18px);
}

.home-monitor-head,
.home-monitor-summary,
.home-service-row {
    display: flex;
    align-items: center;
}

.home-monitor-head {
    justify-content: space-between;
    padding: 24px 26px 20px;
    border-bottom: 1px solid #e6eef1;
}

.home-monitor-head > div,
.home-monitor-summary > div:last-child,
.home-event-card > span:last-child,
.home-service-row > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.home-monitor-label {
    margin-bottom: 5px;
    color: #758994;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.home-monitor-head strong { font-size: 18px; }

.home-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #e3f7ef;
    color: #137653;
    font-size: 12px;
    font-weight: 700;
}

.home-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #26b37d;
    box-shadow: 0 0 0 4px rgba(38, 179, 125, 0.15);
}

.home-monitor-summary {
    gap: 17px;
    padding: 22px 26px;
}

.home-score {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: conic-gradient(#23ae7a 99.98%, #dce9e4 0);
}

.home-score::before {
    content: "";
    grid-area: 1 / 1;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: white;
}

.home-score span {
    grid-area: 1 / 1;
    z-index: 1;
    font-size: 16px;
    font-weight: 700;
}

.home-score small { font-size: 10px; }
.home-monitor-summary strong { font-size: 16px; }
.home-monitor-summary > div > span { margin-top: 6px; color: #728691; font-size: 12px; }
.home-service-list { border-top: 1px solid #e6eef1; }

.home-service-row {
    display: grid;
    grid-template-columns: 10px minmax(105px, 1fr) 82px 63px;
    gap: 12px;
    min-height: 72px;
    padding: 12px 26px;
    border-bottom: 1px solid #edf2f4;
}

.home-service-row:last-child { border-bottom: 0; }
.home-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #25b17a; box-shadow: 0 0 0 4px #e2f6ee; }
.home-service-row strong { font-size: 13px; }
.home-service-row small { margin-top: 5px; color: #7b8d96; font-size: 10px; }
.home-service-row b { font-size: 12px; text-align: right; }

.home-sparkline {
    height: 28px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.home-sparkline-one { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 82 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 20L10 17L18 19L27 10L36 14L45 8L54 16L63 12L72 15L81 5' fill='none' stroke='%2331afe1' stroke-width='2'/%3E%3C/svg%3E"); }
.home-sparkline-two { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 82 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 14L10 16L18 12L27 14L36 13L45 15L54 11L63 13L72 10L81 12' fill='none' stroke='%2325b17a' stroke-width='2'/%3E%3C/svg%3E"); }
.home-sparkline-three { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 82 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 19L10 15L18 17L27 14L36 15L45 9L54 13L63 8L72 12L81 7' fill='none' stroke='%2331afe1' stroke-width='2'/%3E%3C/svg%3E"); }

.home-event-card {
    position: absolute;
    right: -14px;
    bottom: 29px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 205px;
    padding: 14px 17px;
    border: 1px solid #dce9ed;
    border-radius: 16px;
    background: white;
    box-shadow: 0 20px 45px rgba(0, 36, 62, 0.19);
}

.home-event-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: #dff6ed; color: #13815a; font-weight: 700; }
.home-event-card strong { font-size: 12px; }
.home-event-card small { margin-top: 4px; color: #7d909a; font-size: 10px; }

.home-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    margin: 0 24px;
    border-radius: 28px;
    background: var(--home-navy);
    color: white;
    box-shadow: 0 25px 60px rgba(0, 36, 62, 0.16);
}

.home-stats > div {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 38px;
}

.home-stats > div:not(:last-child)::after { content: ""; position: absolute; top: 30%; right: 0; width: 1px; height: 40%; background: rgba(255,255,255,.15); }
.home-stats strong { color: var(--home-cyan); font-size: clamp(29px, 3vw, 42px); font-weight: 700; letter-spacing: -0.04em; }
.home-stats span { margin-top: 7px; color: #b9cbd4; font-size: 13px; }

.home-section { padding: 140px 24px; }
.home-section-heading { max-width: 820px; margin-bottom: 58px; }
.home-section-heading h2,
.home-final-cta h2 { margin-top: 15px; color: var(--home-navy); font-size: clamp(42px, 5vw, 68px); font-weight: 700; letter-spacing: -0.05em; line-height: 1.03; }
.home-section-heading p { max-width: 650px; margin-top: 20px; color: var(--home-muted); font-size: 19px; font-weight: 300; line-height: 1.55; }

.home-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.home-value-card { position: relative; display: flex; flex-direction: column; min-height: 450px; padding: 36px; overflow: hidden; border: 1px solid var(--home-line); border-radius: 28px; background: rgba(255,255,255,.82); box-shadow: 0 16px 45px rgba(17, 64, 86, .07); transition: transform 220ms ease, box-shadow 220ms ease; }
.home-value-card:hover { transform: translateY(-7px); box-shadow: 0 25px 60px rgba(17, 64, 86, .13); }
.home-card-number { align-self: flex-end; color: #9eb0b9; font-size: 12px; font-weight: 700; }
.home-card-icon { position: relative; width: 72px; height: 72px; margin-top: 22px; border-radius: 22px; background: #e6f6fb; }
.home-card-icon-pulse::after { content: ""; position: absolute; inset: 22px 14px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 44 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 17h9l4-11 7 20 6-15 4 6h12' fill='none' stroke='%230b8fc1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.home-card-icon-globe::before { content: ""; position: absolute; inset: 17px; border: 2px solid currentColor; border-radius: 50%; }
.home-card-icon-globe::after { content: ""; position: absolute; top: 17px; bottom: 17px; left: 29px; width: 14px; border-right: 2px solid currentColor; border-left: 2px solid currentColor; border-radius: 50%; }
.home-card-icon-bell::after { content: ""; position: absolute; inset: 17px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 38 38' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 27h18l-2.5-4V16a6.5 6.5 0 00-13 0v7L10 27zm6 3a3 3 0 006 0' fill='none' stroke='%230b8fc1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.home-value-card h3 { margin-top: 34px; color: var(--home-navy); font-size: 27px; line-height: 1.15; }
.home-value-card p { margin-top: 16px; color: var(--home-muted); font-size: 16px; font-weight: 300; line-height: 1.6; }
.home-value-card a { margin-top: auto; padding-top: 30px; color: #087ca9; font-size: 14px; font-weight: 700; }
.home-value-card a span { margin-left: 8px; transition: margin 180ms ease; }
.home-value-card a:hover span { margin-left: 14px; }
.home-value-card-dark { border-color: var(--home-navy); background: var(--home-navy); color: white; }
.home-value-card-dark .home-card-number { color: #7293a7; }
.home-value-card-dark .home-card-icon { background: rgba(49,175,225,.16); color: #6fd7ed; }
.home-value-card-dark h3 { color: white; }
.home-value-card-dark p { color: #b7c9d2; }
.home-value-card-dark a { color: var(--home-cyan); }

.home-tour { margin: 0 24px; padding-right: clamp(28px, 5vw, 72px); padding-left: clamp(28px, 5vw, 72px); border-radius: 40px; background: var(--home-navy); color: white; }
.home-section-heading-light h2 { color: white; }
.home-section-heading-light p { color: #b5cad5; }
.home-tour .home-kicker { color: var(--home-cyan); }
.home-tour-shell { overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: #07324d; box-shadow: 0 35px 80px rgba(0,0,0,.2); }
.home-tour-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid rgba(255,255,255,.12); }
.home-tour-tab { position: relative; padding: 22px 18px; border: 0; border-right: 1px solid rgba(255,255,255,.1); background: transparent; color: #91abb9; cursor: pointer; font: inherit; font-size: 14px; font-weight: 700; text-align: left; transition: color 180ms ease, background 180ms ease; }
.home-tour-tab:last-child { border-right: 0; }
.home-tour-tab span { margin-right: 10px; color: #54798e; font-size: 10px; }
.home-tour-tab::after { content: ""; position: absolute; right: 18px; bottom: -1px; left: 18px; height: 3px; border-radius: 3px 3px 0 0; background: var(--home-blue); transform: scaleX(0); transition: transform 180ms ease; }
.home-tour-tab:hover { color: white; background: rgba(255,255,255,.03); }
.home-tour-tab.is-active { color: white; background: rgba(49,175,225,.08); }
.home-tour-tab.is-active::after { transform: scaleX(1); }
.home-tour-panel { display: grid; grid-template-columns: minmax(270px, .82fr) minmax(420px, 1.18fr); align-items: center; gap: clamp(40px, 6vw, 84px); min-height: 550px; padding: clamp(40px, 6vw, 78px); }
.home-tour-panel[hidden] { display: none; }
.home-tour-label { color: var(--home-cyan); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.home-tour-copy h3 { margin-top: 17px; color: white; font-size: clamp(30px, 3.25vw, 46px); letter-spacing: -.035em; line-height: 1.08; }
.home-tour-copy p { margin-top: 20px; color: #aec3ce; font-size: 17px; font-weight: 300; line-height: 1.65; }
.home-tour-copy a { display: inline-block; margin-top: 28px; color: var(--home-cyan); font-size: 14px; font-weight: 700; }
.home-tour-copy a span { margin-left: 8px; }
.home-product-shot { overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: white; box-shadow: 0 24px 55px rgba(0,0,0,.28); transform: perspective(1000px) rotateY(-2deg); }
.home-product-shot img { display: block; width: 100%; height: auto; }
.home-product-shot-status img { aspect-ratio: 16/10; object-fit: cover; object-position: top; }
.home-metrics-card { padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: #082b40; box-shadow: 0 25px 60px rgba(0,0,0,.23); }
.home-metrics-head { display: flex; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.1); color: #d9e7ed; font-size: 14px; }
.home-metrics-head b { padding: 5px 9px; border-radius: 6px; background: rgba(41,183,128,.15); color: #68dcae; font-size: 11px; }
.home-metric { display: grid; grid-template-columns: 105px 1fr 52px; align-items: center; gap: 13px; margin-top: 22px; color: #9db5c1; font-size: 11px; }
.home-metric i { position: relative; height: 7px; overflow: hidden; border-radius: 9px; background: rgba(255,255,255,.08); }
.home-metric i::after { content: ""; position: absolute; inset: 0; width: var(--metric); border-radius: inherit; background: linear-gradient(90deg, #31afe1, #75ddee); }
.home-metric b { color: white; font-size: 11px; text-align: right; }
.home-alert-stack { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.home-alert-message { display: flex; align-items: flex-start; gap: 14px; padding: 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: #0a3a56; box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.home-alert-message > span { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 auto; border-radius: 12px; font-weight: 700; }
.home-alert-message > div { display: flex; flex-direction: column; gap: 6px; }
.home-alert-message small { color: #91acba; font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.home-alert-message strong { font-size: 15px; }
.home-alert-message p { color: #9eb6c2; font-size: 12px; }
.home-alert-message-incident > span { background: rgba(240,136,103,.15); color: #ff9d80; }
.home-alert-message-recovery > span { background: rgba(39,183,129,.15); color: #66dbad; }
.home-alert-route { display: flex; align-items: center; gap: 10px; padding: 0 12px; color: #7796a7; font-size: 10px; text-transform: uppercase; }
.home-alert-route span { height: 1px; flex: 1; background: rgba(255,255,255,.13); }

.home-workflow { padding-bottom: 110px; }
.home-steps { margin: 0; padding: 0; border-top: 1px solid var(--home-line); list-style: none; }
.home-steps li { display: grid; grid-template-columns: minmax(120px,.35fr) 1fr; gap: 30px; padding: 38px 10px; border-bottom: 1px solid var(--home-line); }
.home-steps li > span { color: #9cb0ba; font-size: 13px; font-weight: 700; }
.home-steps li > div { display: grid; grid-template-columns: .7fr 1fr auto; align-items: center; gap: 34px; }
.home-steps h3 { color: var(--home-navy); font-size: 26px; }
.home-steps p { color: var(--home-muted); font-size: 15px; font-weight: 300; line-height: 1.5; }
.home-steps a { color: #087da9; font-size: 13px; font-weight: 700; white-space: nowrap; }

.home-faq { display: grid; grid-template-columns: minmax(280px,.7fr) minmax(420px,1fr); gap: clamp(50px, 8vw, 130px); padding-top: 90px; }
.home-faq .home-section-heading { position: sticky; top: 130px; align-self: start; }
.home-faq-list { border-top: 1px solid var(--home-line); }
.home-faq details { border-bottom: 1px solid var(--home-line); }
.home-faq summary { position: relative; padding: 27px 55px 27px 0; color: var(--home-navy); cursor: pointer; font-size: 19px; font-weight: 700; line-height: 1.4; list-style: none; }
.home-faq summary::-webkit-details-marker { display: none; }
.home-faq summary span,
.home-faq summary span::after { position: absolute; top: 50%; right: 3px; width: 18px; height: 2px; background: var(--home-blue); content: ""; transition: transform 180ms ease; }
.home-faq summary span::after { top: 0; right: 0; transform: rotate(90deg); }
.home-faq details[open] summary span::after { transform: rotate(0); }
.home-faq details p { max-width: 690px; padding: 0 50px 28px 0; color: var(--home-muted); font-size: 16px; font-weight: 300; line-height: 1.65; }

.home-final-cta { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; margin: 20px 24px 120px; padding: clamp(48px, 6vw, 80px); overflow: hidden; border-radius: 38px; background: radial-gradient(circle at 90% 0, rgba(93,211,237,.3), transparent 38%), linear-gradient(135deg, #06324e, #00243e 60%); color: white; box-shadow: 0 30px 70px rgba(0,36,62,.2); }
.home-final-cta > div:first-child { max-width: 750px; }
.home-final-cta .home-kicker { color: var(--home-cyan); }
.home-final-cta h2 { color: white; }
.home-final-cta p { margin-top: 20px; color: #b6cbd5; font-size: 18px; font-weight: 300; line-height: 1.55; }
.home-final-cta .home-actions { flex-direction: column; align-items: stretch; min-width: 235px; }
.home-button-light { background: white; color: var(--home-navy); }
.home-button-outline { border-color: rgba(255,255,255,.32); color: white; }
.home-button-outline:hover { border-color: white; background: rgba(255,255,255,.07); }

.home-js .home-reveal { opacity: 0; transform: translateY(25px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.home-js .home-reveal.is-visible { opacity: 1; transform: translateY(0); }
.home-js .home-value-card:nth-child(2) { transition-delay: 90ms; }
.home-js .home-value-card:nth-child(3) { transition-delay: 180ms; }

@media (max-width: 1120px) {
    .home-hero { grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr); gap: 30px; }
    .home-hero h1 { font-size: clamp(50px, 6.5vw, 70px); }
    .home-monitor-wrap { transform: scale(.9); transform-origin: center right; }
    .home-value-card { padding: 30px; }
    .home-tour-panel { grid-template-columns: .8fr 1.2fr; gap: 38px; padding: 45px; }
    .home-steps li > div { grid-template-columns: .7fr 1fr; }
    .home-steps li a { grid-column: 2; }
    .home-final-cta { grid-template-columns: 1fr; align-items: start; }
    .home-final-cta .home-actions { flex-direction: row; }
}

@media (max-width: 850px) {
    body:has(.home-page) .menu-top { max-width: 100%; margin-bottom: 24px; }
    body:has(.home-page) .menu-item { padding: 14px 8px; font-size: 14px; }
    body:has(.home-page) .menu-item-cta { padding-right: 14px; padding-left: 14px; }
    .home-hero { grid-template-columns: 1fr; padding-top: 50px; text-align: center; }
    .home-eyebrow { justify-content: center; }
    .home-lead { margin-right: auto; margin-left: auto; }
    .home-actions, .home-proof { justify-content: center; }
    .home-monitor-wrap { min-height: 540px; transform: none; }
    .home-stats { grid-template-columns: repeat(2, 1fr); }
    .home-stats > div:nth-child(2)::after { display: none; }
    .home-stats > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
    .home-section { padding-top: 105px; padding-bottom: 105px; }
    .home-value-grid { grid-template-columns: 1fr; }
    .home-value-card { min-height: 350px; }
    .home-tour-tabs { grid-template-columns: repeat(2, 1fr); }
    .home-tour-tab:nth-child(2) { border-right: 0; }
    .home-tour-tab:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
    .home-tour-panel { grid-template-columns: 1fr; }
    .home-product-shot { transform: none; }
    .home-faq { grid-template-columns: 1fr; gap: 20px; }
    .home-faq .home-section-heading { position: static; }
}

@media (max-width: 620px) {
    .menu-top .menu-item-cta { display: none; }
    body:has(.home-page) .page-content { padding-right: 14px; padding-left: 14px; }
    body:has(.home-page) .menu-top { justify-content: center; gap: 1px; top: 8px; padding: 4px; }
    body:has(.home-page) .menu-item { padding: 12px 6px; font-size: 12px; }
    body:has(.home-page) .menu-item-cta { display: none; }
    .home-hero { min-height: auto; padding: 42px 4px 78px; }
    .home-hero h1 { font-size: clamp(44px, 13vw, 62px); }
    .home-lead { font-size: 17px; }
    .home-actions { align-items: stretch; flex-direction: column; }
    .home-button { width: 100%; }
    .home-proof { align-items: flex-start; flex-direction: column; width: max-content; max-width: 100%; margin-right: auto; margin-left: auto; text-align: left; }
    .home-monitor-wrap { min-height: 455px; }
    .home-monitor-wrap::before { width: 320px; height: 320px; }
    .home-orbit-one { width: 360px; height: 360px; }
    .home-orbit-two { width: 410px; height: 410px; }
    .home-monitor-card { border-radius: 22px; }
    .home-monitor-head { padding: 19px; }
    .home-monitor-summary { padding: 17px 19px; }
    .home-score { width: 62px; height: 62px; }
    .home-score::before { width: 50px; height: 50px; }
    .home-service-row { grid-template-columns: 8px 1fr 55px; gap: 9px; padding: 10px 19px; }
    .home-sparkline { display: none; }
    .home-event-card { right: -5px; bottom: 3px; transform: scale(.88); transform-origin: right bottom; }
    .home-stats { margin: 0; border-radius: 22px; }
    .home-stats > div { padding: 25px 20px; }
    .home-stats span { font-size: 11px; }
    .home-section { padding: 88px 4px; }
    .home-section-heading { margin-bottom: 40px; }
    .home-section-heading h2, .home-final-cta h2 { font-size: clamp(39px, 11vw, 54px); }
    .home-section-heading p { font-size: 17px; }
    .home-tour { margin: 0; padding: 68px 14px; border-radius: 28px; }
    .home-tour-shell { border-radius: 20px; }
    .home-tour-tab { padding: 17px 12px; font-size: 12px; }
    .home-tour-tab span { display: none; }
    .home-tour-panel { min-height: 580px; padding: 30px 20px; }
    .home-tour-copy h3 { font-size: 31px; }
    .home-metric { grid-template-columns: 86px 1fr 44px; gap: 8px; }
    .home-metrics-card { padding: 19px; }
    .home-steps li { grid-template-columns: 42px 1fr; gap: 7px; padding: 30px 0; }
    .home-steps li > div { grid-template-columns: 1fr; gap: 12px; }
    .home-steps li a { grid-column: auto; margin-top: 5px; }
    .home-faq { padding-top: 70px; }
    .home-faq summary { font-size: 17px; }
    .home-final-cta { margin: 10px 0 80px; padding: 40px 24px; border-radius: 28px; }
    .home-final-cta .home-actions { flex-direction: column; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .home-page *, .home-page *::before, .home-page *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
