/* ==================================================
    OMIGLPRO
   Global Background Foundation
   ================================================== */


/* ==================================================
   01. DESIGN TOKENS
   ================================================== */

:root {
    --site-background: #0a0d2e;

    --header-text: #f8fafc;
    --header-muted: #c4ccda;
    --header-hover: rgba(125, 178, 255, 0.18);
    --header-border: rgba(255, 255, 255, 0.18);
    --header-control-background: rgba(9, 16, 39, 0.48);
    --header-primary-background: #f8fafc;
    --header-primary-text: #101828;
    --header-primary-hover: #cfe3ff;
    --header-focus: rgba(147, 197, 253, 0.55);

    --background-section-min-height: 100svh;

    --background-image-position: center top;
    --background-image-size: cover;

    --stars-top-position: center top;
    --stars-bottom-position: center bottom;

    /* Increase or decrease this value to adjust the twinkle speed. */
    --stars-animation-duration: 8s;

    --stars-pointer-events: none;
}

body[data-theme="light"] {
    --header-text: #101828;
    --header-muted: #475467;
    --header-hover: rgba(85, 156, 239, 0.18);
    --header-border: rgba(16, 24, 40, 0.18);
    --header-control-background: rgba(255, 255, 255, 0.62);
    --header-primary-background: #101828;
    --header-primary-text: #ffffff;
    --header-primary-hover: #29466f;
    --header-focus: rgba(37, 99, 235, 0.4);
}


/* ==================================================
   02. RESET / BASE
   ================================================== */

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

html {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;

    background-color: var(--site-background);

    overflow-x: hidden;
}

body {
    width: 100%;
    min-width: 0;
    min-height: 100%;
    margin: 0;
    padding: 0;

    background-color: var(--site-background);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
svg,
canvas {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* ==================================================
   03. MAIN SITE CONTAINER
   ================================================== */

.site-main {
    position: relative;

    width: 100%;
    min-width: 0;
    min-height: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;
}


/* ==================================================
   03A. HERO
   ================================================== */

.hero {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 100svh;
    padding: 128px 20px 72px;

    color: #ffffff;
    font-family: "Gento", Inter, system-ui, sans-serif;
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(32px, 7vw, 112px);

    width: min(100%, 1180px);
    margin: 0 auto;
}

.hero__content {
    max-width: 590px;
    animation: hero-fade-up 700ms ease both;
}

.hero__title {
    max-width: 560px;
    margin: 0;

    color: inherit;
    font-size: clamp(2.45rem, 5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.02;
}

.hero__accent {
    color: #55a8ff;
}

.hero__description {
    max-width: 510px;
    margin: 28px 0 0;

    color: color-mix(in srgb, currentColor 78%, transparent);
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.65;
}

.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
    animation: hero-fade-up 800ms 100ms ease both;
}

.hero + .background-section--part-one {
    /* Keep the first star layer at the top, behind the hero content. */
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.hero__image {
    display: block;
    width: min(100%, 620px);
    height: auto;
    max-height: 70svh;
    object-fit: contain;
}

body[data-theme="light"] .hero {
    color: #101828;
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 991px) {
    .hero {
        padding-top: 112px;
    }

    .hero__inner {
        gap: 40px;
    }

    .hero__title {
        font-size: clamp(2.25rem, 6vw, 3.8rem);
    }
}

@media screen and (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 116px 20px 64px;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 42px;
    }

    .hero__content {
        max-width: 620px;
    }

    .hero__title {
        font-size: clamp(2.3rem, 11vw, 3.5rem);
    }

    .hero__description {
        margin-top: 22px;
        font-size: 1rem;
    }

    .hero__visual {
        width: 100%;
    }

    .hero__image {
        width: min(100%, 500px);
        max-height: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__content,
    .hero__visual {
        animation: none;
    }
}


/* ==================================================
   04. BACKGROUND SECTION FOUNDATION
   ================================================== */

.background-section {
    position: relative;

    width: 100%;
    min-width: 0;
    min-height: var(--background-section-min-height);

    margin: 0;
    padding: 0;

    overflow: hidden;

    isolation: isolate;
}


/* ==================================================
   05. BACKGROUND PART 01
   ================================================== */

.background-section--part-one {
    background-color: var(--site-background);

    background-image: url("./assets/images/BG_PART2.webp");
    background-repeat: no-repeat;
    background-position: var(--background-image-position);
    background-size: var(--background-image-size);
}


/* ==================================================
   06. BACKGROUND PART 02
   ================================================== */

.background-section--part-two {
    background-color: var(--site-background);

    background-image: url("./assets/images/BG_PART2.webp");
    background-repeat: no-repeat;
    background-position: var(--background-image-position);
    background-size: var(--background-image-size);
}


/* ==================================================
   07. BACKGROUND PART 03
   ================================================== */

.background-section--part-three {
    background-color: var(--site-background);

    background-image: url("./assets/images/BG_PART3.webp");
    background-repeat: no-repeat;
    background-position: var(--background-image-position);
    background-size: var(--background-image-size);
}


/* ==================================================
   08. DECORATIVE STAR LAYER
   ================================================== */

.background-section__stars {
    position: absolute;

    z-index: 1;

    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    background-repeat: no-repeat;
    background-size: cover;

    pointer-events: var(--stars-pointer-events);

    user-select: none;

    animation: stars-twinkle var(--stars-animation-duration) ease-in-out infinite;
}

@keyframes stars-twinkle {
    0%,
    100% {
        opacity: 0.110;
    }

    50% {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .background-section__stars {
        animation: none;
        opacity: 1;
    }
}


/* ==================================================
   09. TOP STARS
   BG_STARS1
   Positioned at the top of PART 01
   ================================================== */

.background-section__stars--top {
    top: 0;
    left: 0;

    background-image: url("./assets/images/BG_STARS1.png");
    background-position: var(--stars-top-position);
}


/* ==================================================
   10. BOTTOM STARS
   BG_STARS2
   Positioned at the bottom of PART 03
   ================================================== */

.background-section__stars--bottom {
    right: 0;
    bottom: 0;
    left: 0;

    background-image: url("./assets/images/BG_STARS2.png");
    background-position: var(--stars-bottom-position);
}

/* Keep both decorative star layers fixed to the viewport, independent of later content. */
.site-main > .background-section {
    z-index: 0;
}

.site-main > .background-section--part-one .background-section__stars--top,
.site-main > .background-section--part-three .background-section__stars--bottom {
    position: fixed;
    z-index: 0;
    width: 100vw;
    height: 100svh;
}

.site-main > .background-section--part-one .background-section__stars--top {
    top: 0;
    right: 0;
    left: 0;
}

.site-main > .background-section--part-three .background-section__stars--bottom {
    right: 0;
    bottom: 0;
    left: 0;
}


/* ==================================================
   11. TABLET / SMALL DESKTOP
   ================================================== */

@media screen and (max-width: 991px) {

    .background-section {
        min-height: 100svh;
    }

    .background-section__stars {
        background-size: cover;
    }

}


/* ==================================================
   12. MOBILE
   ================================================== */

@media screen and (max-width: 767px) {

    .background-section {
        min-height: 100svh;
    }

    .background-section--part-one,
    .background-section--part-two,
    .background-section--part-three {
        background-position: center top;
        background-size: cover;
    }

    .background-section__stars {
        width: 100%;
        height: 100%;

        background-size: cover;
        background-repeat: no-repeat;
    }

}


/* ==================================================
   13. SMALL MOBILE
   ================================================== */

@media screen and (max-width: 480px) {

    .background-section {
        min-height: 100svh;
    }

    .background-section__stars {
        background-size: cover;
    }

}


/* ==================================================
   14. VERY SMALL DEVICES
   ================================================== */

@media screen and (max-width: 360px) {

    .background-section {
        min-height: 100svh;
    }

}


/* ==================================================
   15. SITE HEADER
   ================================================== */

.site-header {
    position: absolute;
    z-index: 10;

    width: 100%;
    min-height: 72px;

    background: transparent;
    border-bottom: 1px solid transparent;
}

.site-header__brand,
.site-header__nav,
.site-header__actions .site-header__button--login,
.site-header > .site-header__theme-toggle,
.site-header__menu-toggle {
    transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.site-header--scroll-hidden .site-header__brand,
.site-header--scroll-hidden .site-header__nav,
.site-header--scroll-hidden .site-header__actions .site-header__button--login,
.site-header--scroll-hidden > .site-header__theme-toggle,
.site-header--scroll-hidden .site-header__menu-toggle {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-120%);
}

.site-header--scrolled .site-header__button--primary {
    position: fixed;
    top: 14px;
    right: max(12px, calc((100vw - 1180px) / 2 - 8px));
    z-index: 11;
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 32px;

    width: min(100% - 40px, 1180px);
    min-height: 72px;
    margin: 0 auto;
}

.site-header__brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;

    min-height: 44px;

    color: var(--header-text);
    font-size: 19px;
    font-family: "Gento", Inter, system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;

    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.site-header__brand-name {
    display: inline-flex;
    align-items: center;
}

.site-header__brand-base {
    /* Keep Omigl's text independent from Pro's position and size. */
    display: inline-block;
}

.site-header__brand-pro {
    /* Adjust this value to move Pro vertically without moving Omigl. */
    position: relative;
    top: 1px;
    /* Adjust this value to resize Pro independently from Omigl. */
    font-size: 0.86em;
    line-height: 1;
    /* Only Pro receives the bluish background and rounded corners. */
    padding: 3px 5px;
    color: var(--header-text);
    background: rgba(40, 119, 238, 0.918);
    border-radius: 6px;
    
}

.site-header__logo {
    /* The logo scales with the viewport while staying within usable navbar bounds. */
    display: block;
    flex: 0 0 auto;
    width: clamp(28px, 3vw, 38px);
    height: clamp(28px, 3vw, 38px);
    max-width: 100%;
    object-fit: contain;
    border-radius: 9px;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.site-header__link,
.site-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    color: var(--header-muted);
    font-size: 14px;
    font-family: "Gento", Inter, system-ui, sans-serif;
    font-weight: 600;
    text-decoration: none;

    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.site-header__link:hover,
.site-header__link--active,
.site-header__link:focus-visible,
.site-header__button--login:hover,
.site-header__button--login:focus-visible {
    color: var(--header-text);
}

.site-header__brand:hover,
.site-header__brand:focus-visible,
.site-header__button--login:hover,
.site-header__button--login:focus-visible {
    transform: scale(1.06);
}

.site-header__brand:hover .site-header__logo,
.site-header__brand:focus-visible .site-header__logo {
    transform: scale(1.06);
}

.site-header__logo {
    transition: transform 180ms ease;
}

.site-header__link--active {
    font-weight: 700;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header__button {
    padding: 0 16px;
    border: 1px solid var(--header-border);
    border-radius: 8px;
}

.site-header__button--primary,
.site-header__button--primary:hover,
.site-header__button--primary:focus-visible {
    color: var(--header-primary-text);
    background: var(--header-primary-background);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(1, 10, 31, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.site-header__button--primary:hover,
.site-header__button--primary:focus-visible {
    background: var(--header-primary-hover);
    transform: translateY(-1px);
}

.site-header__nav:hover .site-header__link:not(:hover) {
    filter: blur(1px);
    opacity: 0.62;
}

.site-header__actions:hover .site-header__button:not(:hover) {
    filter: blur(1px);
    opacity: 0.62;
}

.site-header__nav .site-header__link:hover,
.site-header__nav .site-header__link:focus-visible {
    background: var(--header-hover);
    border-radius: 7px;
    transform: scale(1.06);
}

.site-header__nav .site-header__link {
    padding-right: 10px;
    padding-left: 10px;
}

.site-header__link:focus-visible,
.site-header__button:focus-visible,
.site-header__brand:focus-visible,
.site-header__menu-toggle:focus-visible,
.site-header__theme-toggle:focus-visible,
.site-header__mobile-link:focus-visible {
    outline: 3px solid var(--header-focus);
    outline-offset: 3px;
}

.site-header__menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 10px;

    color: var(--header-text);
    background: var(--header-control-background);
    border: 1px solid var(--header-border);
    border-radius: 8px;
    cursor: pointer;
}

.site-header__theme-toggle {
    display: inline-grid;
    place-items: center;

    width: 44px;
    height: 44px;
    padding: 10px;

    color: var(--header-text);
    background: var(--header-control-background);
    border: 1px solid var(--header-border);
    border-radius: 8px;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-header__theme-toggle:hover {
    background: var(--header-hover);
    transform: translateY(-1px);
}

.site-header__theme-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%);
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-header__theme-icon--moon {
    display: none;
}

body[data-theme="light"] .site-header__theme-icon--sparkle {
    display: none;
}

body[data-theme="light"] .site-header__theme-icon--moon {
    display: block;
    filter: brightness(0) saturate(100%);
}

.site-header__theme-toggle:hover .site-header__theme-icon {
    animation: theme-icon-hover 900ms ease-in-out infinite alternate;
}

.site-header__theme-icon--animate {
    animation: theme-icon-pop 420ms ease both;
}

@keyframes theme-icon-hover {
    to {
        transform: rotate(8deg) scale(1.08);
    }
}

@keyframes theme-icon-pop {
    0% {
        transform: scale(0.78) rotate(-12deg);
        opacity: 0.55;
    }

    60% {
        transform: scale(1.12) rotate(5deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.site-header__menu-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
}

.site-header__menu-icon--close {
    display: none;
}

.site-header__mobile-menu {
    display: none;
}

@media screen and (max-width: 820px) {
    .site-header__inner {
        width: min(100% - 32px, 1180px);
    }

    .site-header__nav {
        display: none;
    }

    .site-header__actions {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .site-header__actions .site-header__button--login {
        display: none;
    }

    .site-header__menu-toggle {
        display: inline-flex;
        order: 4;
    }

    .site-header__inner > .site-header__theme-toggle {
        display: none;
    }

    .site-header__mobile-menu {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;

        display: grid;
        grid-template-rows: 0fr;
        overflow: hidden;

        background: var(--header-control-background);
        border-bottom: 1px solid transparent;
        backdrop-filter: blur(18px);
        opacity: 0;
        pointer-events: none;
        transition: grid-template-rows 220ms ease, opacity 180ms ease, border-color 180ms ease;
    }

    .site-header__mobile-theme-toggle {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;

        width: 100%;
        min-height: 48px;
        margin: 8px 0;
        padding: 0 16px;

        color: var(--header-primary-text);
        background: var(--header-primary-background);
        border: 0;
        border-radius: 6px;
        font-family: "Gento", Inter, system-ui, sans-serif;
        font-size: 15px;
        font-weight: 600;
    }

    .site-header__mobile-theme-toggle:hover,
    .site-header__mobile-theme-toggle:focus-visible {
        color: var(--header-primary-text);
        background: var(--header-primary-hover);
    }

    .site-header__mobile-theme-toggle .site-header__theme-icon {
        flex: 0 0 auto;
    }

    .site-header__mobile-menu[aria-hidden="false"] {
        grid-template-rows: 1fr;
        border-bottom-color: var(--header-border);
        opacity: 1;
        pointer-events: auto;
    }

    .site-header__mobile-nav {
        min-height: 0;
        padding: 8px max(16px, calc((100% - 1180px) / 2));
        overflow: hidden;
    }

    .site-header__mobile-link {
        display: flex;
        align-items: center;

        min-height: 48px;
        padding: 0 8px;

        color: var(--header-muted);
        font-size: 15px;
        font-family: "Gento", Inter, system-ui, sans-serif;
        font-weight: 600;
        text-decoration: none;
        border-radius: 6px;
        transition: color 160ms ease, background-color 160ms ease;
    }

    .site-header__mobile-link:hover,
    .site-header__mobile-link:focus-visible {
        color: var(--header-text);
        background: var(--header-hover);
    }

    .site-header__mobile-link--primary {
        margin: 8px 0;
        padding: 0 16px;
        color: var(--header-primary-text);
        background: var(--header-primary-background);
    }

    .site-header__mobile-link--primary:hover,
    .site-header__mobile-link--primary:focus-visible {
        color: var(--header-primary-text);
        background: var(--header-primary-hover);
    }

    .site-header--menu-open .site-header__menu-icon--menu {
        display: none;
    }

    .site-header--menu-open .site-header__menu-icon--close {
        display: block;
    }

    .site-header__theme-toggle {
        margin-left: auto;
    }

    .site-header__menu-toggle {
        margin-left: 0;
    }

    .site-header--scrolled .site-header__button--primary {
        position: static;
        top: auto;
        right: auto;
        z-index: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header__mobile-menu,
    .site-header__link,
    .site-header__button,
    .site-header__mobile-link {
        transition: none;
    }

    .site-header__theme-toggle,
    .site-header__link,
    .site-header__button {
        transition: none;
    }

    .site-header__theme-icon {
        animation: none;
        transition: none;
    }
}


/* ==================================================
   03B. CONVERSATION SECTION
   ================================================== */

.conversation-section {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 100svh;
    padding: 96px 20px;

    color: #ffffff;
    font-family: "Gento", Inter, system-ui, sans-serif;
}

.conversation-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(36px, 8vw, 120px);

    width: min(100%, 1180px);
    margin: 0 auto;
}

.conversation-section__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.conversation-section__video {
    display: block;
    width: min(100%, 620px);
    height: auto;
    max-height: 72svh;
    object-fit: contain;
}

.conversation-section__content {
    min-width: 0;
}

.conversation-section__title,
.conversation-section__description {
    opacity: 1;
    transform: none;
    clip-path: none;
}

.conversation-section__title {
    max-width: 560px;
    margin: 0;

    font-size: clamp(2.35rem, 5vw, 4.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.04;
}

.conversation-section__accent {
    color: #55a8ff;
}

.conversation-section__description {
    max-width: 520px;
    margin: 28px 0 0;

    color: color-mix(in srgb, currentColor 78%, transparent);
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    font-weight: 400;
    line-height: 1.65;
}

.conversation-section__title.is-visible,
.conversation-section__description.is-visible {
    animation: none;
}

.conversation-section__description.is-visible {
    animation-delay: 0;
}

body[data-theme="light"] .conversation-section {
    color: #101828;
}

@keyframes conversation-reveal {
    from {
        opacity: 0;
        transform: translateY(18px);
        clip-path: inset(0 100% 0 0);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }
}

@media screen and (max-width: 991px) {
    .conversation-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .conversation-section__inner {
        gap: 44px;
    }
}

@media screen and (max-width: 767px) {
    .conversation-section {
        min-height: auto;
        padding: 72px 20px 88px;
    }

    .conversation-section__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 42px;
    }

    .conversation-section__visual {
        order: 2;
    }

    .conversation-section__content {
        order: 1;
        text-align: center;
    }

    .conversation-section__video {
        width: min(100%, 500px);
        max-height: none;
    }

    .conversation-section__title {
        font-size: clamp(2.25rem, 11vw, 3.5rem);
    }

    .conversation-section__description {
        margin-top: 22px;
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .conversation-section__title,
    .conversation-section__description {
        opacity: 1;
        transform: none;
        clip-path: none;
    }

    .conversation-section__title.is-visible,
    .conversation-section__description.is-visible {
        animation: none;
    }
}


/* ==================================================
   03B. CONVERSATION CTA
   ================================================== */

.conversation-cta {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px 104px;

    color: #ffffff;
    font-family: "Gento", Inter, system-ui, sans-serif;
}

.conversation-cta__link {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 18px;

    min-height: 64px;
    padding: 0 22px 0 28px;
    overflow: hidden;

    color: #ffffff;
    background: #2877ee;
    border: 1px solid rgba(133, 194, 255, 0.78);
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(31, 117, 238, 0.28), 0 0 0 6px rgba(85, 168, 255, 0.06);
    font-size: clamp(0.94rem, 1.3vw, 1.05rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
    text-decoration: none;
    transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, filter 220ms ease;
}

.conversation-cta__link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    width: 34%;

    background: rgba(255, 255, 255, 0.1);
    content: "";
    transform: skewX(-20deg) translateX(72%);
    transition: transform 300ms ease;
}

.conversation-cta__link:hover,
.conversation-cta__link:focus-visible {
    background: #3f8dff;
    box-shadow: 0 16px 38px rgba(31, 117, 238, 0.38), 0 0 0 7px rgba(85, 168, 255, 0.09);
    filter: brightness(1.06);
    transform: translateY(-3px);
}

.conversation-cta__link:hover::after,
.conversation-cta__link:focus-visible::after {
    transform: skewX(-20deg) translateX(-40%);
}

.conversation-cta__link:focus-visible {
    outline: 3px solid rgba(147, 197, 253, 0.78);
    outline-offset: 4px;
}

.conversation-cta__link span,
.conversation-cta__icon {
    position: relative;
    z-index: 1;
}

.conversation-cta__icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: transform 220ms ease;
}

.conversation-cta__link:hover .conversation-cta__icon,
.conversation-cta__link:focus-visible .conversation-cta__icon {
    transform: translateX(4px) rotate(-3deg);
}

body[data-theme="light"] .conversation-cta {
    color: #101828;
}

@media screen and (max-width: 767px) {
    .conversation-cta {
        padding: 0 20px 88px;
    }

    .conversation-cta__link {
        width: min(100%, 250px);
        justify-content: space-between;
        min-height: 60px;
        padding-left: 22px;
        font-size: 0.92rem;
    }

    .conversation-cta__link:active {
        filter: brightness(0.96);
        transform: scale(0.975);
    }
}

@media (prefers-reduced-motion: reduce) {
    .conversation-cta__link,
    .conversation-cta__icon,
    .conversation-cta__link::after {
        transition: none;
    }
}


/* ==================================================
   03C. CONNECTION SECTION
   ================================================== */

.connection-section {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 100svh;
    padding: 96px 20px;

    color: #ffffff;
    font-family: "Gento", Inter, system-ui, sans-serif;
}

.connection-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(36px, 8vw, 120px);

    width: min(100%, 1180px);
    margin: 0 auto;
}

.connection-section__content,
.connection-section__visual {
    min-width: 0;
    opacity: 0;
    transform: translateY(18px);
}

.connection-section__content {
    max-width: 590px;
}

.connection-section__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.connection-section__content.is-visible,
.connection-section__visual.is-visible {
    animation: connection-reveal 700ms ease both;
}

.connection-section__visual.is-visible {
    animation-delay: 100ms;
}

.connection-section__title {
    max-width: 560px;
    margin: 0;

    font-size: clamp(2.35rem, 5vw, 4.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.04;
}

.connection-section__accent {
    color: #55a8ff;
}

.connection-section__description {
    max-width: 520px;
    margin: 28px 0 0;

    color: color-mix(in srgb, currentColor 78%, transparent);
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    font-weight: 400;
    line-height: 1.65;
}

.connection-section__video {
    display: block;
    width: min(100%, 620px);
    height: auto;
    max-height: 72svh;
    object-fit: contain;
}

body[data-theme="light"] .connection-section {
    color: #101828;
}

@keyframes connection-reveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 991px) {
    .connection-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .connection-section__inner {
        gap: 44px;
    }
}

@media screen and (max-width: 767px) {
    .connection-section {
        min-height: auto;
        padding: 72px 20px 88px;
    }

    .connection-section__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 42px;
    }

    .connection-section__content {
        order: 1;
        max-width: 620px;
        text-align: center;
    }

    .connection-section__visual {
        order: 2;
        width: 100%;
    }

    .connection-section__video {
        width: min(100%, 500px);
        max-height: none;
    }

    .connection-section__title {
        font-size: clamp(2.25rem, 11vw, 3.5rem);
    }

    .connection-section__description {
        margin-top: 22px;
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .connection-section__content,
    .connection-section__visual {
        opacity: 1;
        transform: none;
        animation: none;
    }
}


/* ==================================================
   03D. FEATURES SECTION
   ================================================== */

.features-section {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;
    padding: 128px 20px 136px;

    color: #ffffff;
    font-family: "Gento", Inter, system-ui, sans-serif;
    scroll-margin-top: 84px;
}

.features-section__inner {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.features-section__intro {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    column-gap: clamp(32px, 8vw, 120px);
    align-items: end;
    max-width: 1000px;
    margin-bottom: 68px;
}

.features-section__label {
    grid-column: 1;
    margin: 0 0 18px;

    color: #55a8ff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
}

.features-section__title {
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: 700px;
    margin: 0;

    font-size: clamp(2.45rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.04;
}

.features-section__accent {
    color: #55a8ff;
}

.features-section__description {
    grid-column: 1;
    max-width: 280px;
    margin: 0;

    color: color-mix(in srgb, currentColor 70%, transparent);
    font-size: 1rem;
    line-height: 1.65;
}

.features-section__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.feature-item {
    position: relative;
    display: flex;
    grid-column: span 4;
    flex-direction: column;
    min-width: 0;
    min-height: 284px;
    padding: 30px 28px 26px;
    overflow: hidden;

    border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
    border-radius: 12px;
    background: color-mix(in srgb, currentColor 4%, transparent);
    transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.feature-item--wide {
    grid-column: span 6;
    min-height: 248px;
}

.feature-item::before {
    position: absolute;
    top: 0;
    left: 28px;
    width: 42px;
    height: 2px;

    background: #55a8ff;
    content: "";
    opacity: 0.35;
    transition: width 220ms ease, opacity 220ms ease;
}

.feature-item:hover {
    border-color: rgba(85, 168, 255, 0.62);
    background: color-mix(in srgb, #55a8ff 6%, transparent);
    box-shadow: 0 14px 34px rgba(1, 10, 31, 0.14);
    transform: translateY(-4px);
}

.feature-item:hover::before {
    width: 74px;
    opacity: 1;
}

.feature-item__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 36px;
    object-fit: contain;
}

.feature-item__body {
    margin-top: auto;
}

.feature-item__title {
    max-width: 260px;
    margin: 0;

    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.feature-item__description {
    max-width: 330px;
    margin: 12px 0 0;

    color: color-mix(in srgb, currentColor 66%, transparent);
    font-size: 0.94rem;
    line-height: 1.58;
}

.feature-item__number {
    position: absolute;
    top: 28px;
    right: 28px;

    color: color-mix(in srgb, currentColor 34%, transparent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

body[data-theme="light"] .features-section {
    color: #101828;
}

@keyframes features-reveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-section__intro,
.feature-item {
    opacity: 0;
    transform: translateY(18px);
}

.features-section.is-visible .features-section__intro,
.features-section.is-visible .feature-item {
    animation: features-reveal 650ms ease both;
}

.features-section.is-visible .feature-item:nth-child(2) {
    animation-delay: 70ms;
}

.features-section.is-visible .feature-item:nth-child(3) {
    animation-delay: 140ms;
}

.features-section.is-visible .feature-item:nth-child(4) {
    animation-delay: 210ms;
}

.features-section.is-visible .feature-item:nth-child(5) {
    animation-delay: 280ms;
}

.features-section.is-visible .feature-item:nth-child(6) {
    animation-delay: 350ms;
}

@media screen and (max-width: 991px) {
    .features-section {
        padding-top: 96px;
        padding-bottom: 104px;
    }

    .features-section__intro {
        margin-bottom: 52px;
    }

    .feature-item,
    .feature-item--wide {
        grid-column: span 6;
        min-height: 270px;
    }
}

@media screen and (max-width: 767px) {
    .features-section {
        min-height: auto;
        padding: 88px 20px 100px;
    }

    .features-section__intro {
        display: block;
        margin-bottom: 44px;
    }

    .features-section__label {
        margin-bottom: 20px;
    }

    .features-section__title {
        font-size: clamp(2.3rem, 11vw, 3.5rem);
    }

    .features-section__description {
        max-width: 420px;
        margin-top: 22px;
        font-size: 1rem;
    }

    .features-section__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-item,
    .feature-item--wide {
        grid-column: auto;
        min-height: 0;
        padding: 26px 22px 24px;
    }

    .feature-item__icon {
        width: 38px;
        height: 38px;
        margin-bottom: 42px;
    }

    .feature-item__number {
        top: 25px;
        right: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .features-section__intro,
    .feature-item {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .feature-item {
        transition: none;
    }
}


/* ==================================================
   03E. SAFETY SECTION
   ================================================== */

.safety-section {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;
    padding: 132px 20px 150px;

    color: #ffffff;
    font-family: "Gento", Inter, system-ui, sans-serif;
    scroll-margin-top: 84px;
}

.safety-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
    align-items: start;
    gap: clamp(48px, 9vw, 132px);

    width: min(100%, 1180px);
    margin: 0 auto;
}

.safety-section__intro {
    position: sticky;
    top: 112px;
    max-width: 400px;
}

.safety-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0 0 24px;

    color: #55a8ff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
}

.safety-section__eyebrow::before {
    width: 28px;
    height: 1px;

    background: currentColor;
    content: "";
}

.safety-section__title {
    max-width: 380px;
    margin: 0;

    font-size: clamp(2.65rem, 5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.safety-section__accent {
    color: #55a8ff;
}

.safety-section__description {
    max-width: 360px;
    margin: 26px 0 0;

    color: color-mix(in srgb, currentColor 70%, transparent);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.68;
}

.safety-section__signal {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 52px;

    color: color-mix(in srgb, currentColor 48%, transparent);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.safety-section__signal-mark {
    position: relative;

    display: block;
    width: 9px;
    height: 9px;

    border: 2px solid #55a8ff;
    border-radius: 50%;
}

.safety-section__signal-mark::after {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 17px;
    height: 17px;

    border: 1px solid rgba(85, 168, 255, 0.28);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
}

.safety-section__points {
    position: relative;

    display: grid;
    gap: 0;

    border-top: 1px solid color-mix(in srgb, currentColor 17%, transparent);
}

.safety-section__points::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;

    width: 1px;

    background: color-mix(in srgb, #55a8ff 35%, transparent);
    content: "";
}

.safety-point {
    position: relative;

    display: grid;
    grid-template-columns: 50px 48px minmax(0, 1fr);
    align-items: start;
    gap: 20px;

    min-width: 0;
    padding: 28px 0 30px;

    border-bottom: 1px solid color-mix(in srgb, currentColor 17%, transparent);
    transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.safety-point::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -18px;

    width: 2px;

    background: #55a8ff;
    content: "";
    opacity: 0;
    transform: scaleY(0.25);
    transform-origin: center;
    transition: opacity 220ms ease, transform 220ms ease;
}

.safety-point:hover {
    border-color: rgba(85, 168, 255, 0.5);
    transform: translateX(4px);
}

.safety-point:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.safety-point__number {
    padding-top: 5px;

    color: color-mix(in srgb, #55a8ff 75%, transparent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.safety-point__icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.safety-point__title {
    margin: 2px 0 0;

    font-size: clamp(1.08rem, 1.5vw, 1.3rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.safety-point__description {
    max-width: 570px;
    margin: 10px 0 0;

    color: color-mix(in srgb, currentColor 66%, transparent);
    font-size: 0.95rem;
    line-height: 1.6;
}

.safety-section__intro,
.safety-point {
    opacity: 0;
    transform: translateY(18px);
}

.safety-section.is-visible .safety-section__intro,
.safety-section.is-visible .safety-point {
    animation: safety-reveal 650ms ease both;
}

.safety-section.is-visible .safety-point:nth-child(2) {
    animation-delay: 80ms;
}

.safety-section.is-visible .safety-point:nth-child(3) {
    animation-delay: 160ms;
}

.safety-section.is-visible .safety-point:nth-child(4) {
    animation-delay: 240ms;
}

.safety-section.is-visible .safety-point:nth-child(5) {
    animation-delay: 320ms;
}

body[data-theme="light"] .safety-section {
    color: #101828;
}

@keyframes safety-reveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 991px) {
    .safety-section {
        padding-top: 104px;
        padding-bottom: 120px;
    }

    .safety-section__inner {
        gap: 56px;
    }

    .safety-section__intro {
        position: static;
    }
}

@media screen and (max-width: 767px) {
    .safety-section {
        min-height: auto;
        padding: 88px 20px 104px;
        scroll-margin-top: 20px;
    }

    .safety-section__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;
    }

    .safety-section__title {
        font-size: clamp(2.35rem, 11vw, 3.5rem);
    }

    .safety-section__description {
        margin-top: 22px;
        font-size: 1rem;
    }

    .safety-section__signal {
        margin-top: 36px;
    }

    .safety-section__points::before {
        left: 19px;
    }

    .safety-point {
        grid-template-columns: 38px 40px minmax(0, 1fr);
        gap: 14px;
        padding: 24px 0 26px;
    }

    .safety-point::before {
        left: -12px;
    }

    .safety-point__icon {
        width: 36px;
        height: 36px;
    }

    .safety-point__title {
        font-size: 1.05rem;
    }

    .safety-point__description {
        margin-top: 8px;
        font-size: 0.92rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .safety-section__intro,
    .safety-point {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .safety-point {
        transition: none;
    }
}


/* ==================================================
   03F. HOW IT WORKS SECTION
   ================================================== */

.how-section {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;
    padding: 138px 20px 154px;

    color: #ffffff;
    font-family: "Gento", Inter, system-ui, sans-serif;
    scroll-margin-top: 84px;
}

.how-section__inner {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.how-section__intro {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    align-items: end;
    column-gap: clamp(32px, 8vw, 120px);
    max-width: 960px;
    margin-bottom: 82px;
}

.how-section__eyebrow {
    grid-column: 1;
    margin: 0 0 20px;

    color: #55a8ff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
}

.how-section__title {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;

    font-size: clamp(2.65rem, 5.4vw, 4.9rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.how-section__accent {
    color: #55a8ff;
}

.how-section__description {
    grid-column: 1;
    max-width: 270px;
    margin: 0;

    color: color-mix(in srgb, currentColor 70%, transparent);
    font-size: 1rem;
    line-height: 1.65;
}

.how-section__flow {
    position: relative;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 5vw, 72px);
}

.how-section__flow::before {
    position: absolute;
    top: 27px;
    right: 10%;
    left: 10%;

    height: 1px;

    background: linear-gradient(90deg, transparent, rgba(85, 168, 255, 0.7), transparent);
    content: "";
}

.how-step {
    position: relative;
    min-width: 0;
}

.how-step__marker {
    position: relative;
    z-index: 1;

    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;

    color: #55a8ff;
    background: var(--site-background);
    border: 1px solid rgba(85, 168, 255, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 0 8px color-mix(in srgb, var(--site-background) 88%, transparent);
}

.how-step__marker span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.how-step__content {
    padding: 46px 28px 0 0;
}

.how-step__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 28px;
}

.how-step__title {
    max-width: 250px;
    margin: 0;

    font-size: clamp(1.15rem, 1.6vw, 1.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.how-step__description {
    max-width: 300px;
    margin: 13px 0 0;

    color: color-mix(in srgb, currentColor 67%, transparent);
    font-size: 0.95rem;
    line-height: 1.62;
}

body[data-theme="light"] .how-section {
    color: #101828;
}

body[data-theme="light"] .how-step__marker {
    background: var(--site-background);
}

.how-section__intro,
.how-step {
    opacity: 0;
    transform: translateY(18px);
}

.how-section.is-visible .how-section__intro,
.how-section.is-visible .how-step {
    animation: how-reveal 650ms ease both;
}

.how-section.is-visible .how-step:nth-child(2) {
    animation-delay: 110ms;
}

.how-section.is-visible .how-step:nth-child(3) {
    animation-delay: 220ms;
}

@keyframes how-reveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 991px) {
    .how-section {
        padding-top: 108px;
        padding-bottom: 124px;
    }

    .how-section__intro {
        margin-bottom: 64px;
    }

    .how-section__flow {
        gap: 28px;
    }

    .how-step__content {
        padding-right: 0;
    }
}

@media screen and (max-width: 767px) {
    .how-section {
        min-height: auto;
        padding: 88px 20px 108px;
        scroll-margin-top: 20px;
    }

    .how-section__intro {
        display: block;
        margin-bottom: 52px;
    }

    .how-section__eyebrow {
        margin-bottom: 20px;
    }

    .how-section__title {
        font-size: clamp(2.35rem, 11vw, 3.5rem);
    }

    .how-section__description {
        max-width: 400px;
        margin-top: 22px;
        font-size: 1rem;
    }

    .how-section__flow {
        display: block;
        padding-left: 18px;
    }

    .how-section__flow::before {
        top: 20px;
        right: auto;
        bottom: 38px;
        left: 45px;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, rgba(85, 168, 255, 0.7), transparent);
    }

    .how-step {
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 20px;
        margin-bottom: 42px;
    }

    .how-step:last-child {
        margin-bottom: 0;
    }

    .how-step__content {
        padding: 0;
    }

    .how-step__icon {
        width: 38px;
        height: 38px;
        margin-bottom: 22px;
    }

    .how-step__title {
        font-size: 1.08rem;
    }

    .how-step__description {
        margin-top: 9px;
        font-size: 0.92rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .how-section__intro,
    .how-step {
        opacity: 1;
        transform: none;
        animation: none;
    }
}


/* ==================================================
   03G. SITE FOOTER
   ================================================== */

.site-footer {
    position: relative;
    z-index: 2;

    width: 100%;
    padding: 76px 20px 24px;

    color: #ffffff;
    background: color-mix(in srgb, var(--site-background) 88%, #101b48 12%);
    border-top: 1px solid color-mix(in srgb, currentColor 15%, transparent);
    font-family: "Gento", Inter, system-ui, sans-serif;
}

.site-footer__inner,
.site-footer__bottom {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) repeat(3, minmax(0, 1fr));
    gap: clamp(32px, 6vw, 92px);
    padding-bottom: 72px;
}

.site-footer__brand-block {
    max-width: 260px;
}

.site-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: inherit;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer__brand:hover,
.site-footer__brand:focus-visible {
    color: #55a8ff;
    transform: translateY(-2px);
}

.site-footer__logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px;
}

.site-footer__brand-accent {
    margin-left: 2px;
    padding: 2px 4px;

    color: #ffffff;
    background: #2877ee;
    border-radius: 5px;
    font-size: 0.82em;
}

.site-footer__tagline {
    max-width: 220px;
    margin: 22px 0 0;

    color: color-mix(in srgb, currentColor 62%, transparent);
    font-size: 0.94rem;
    line-height: 1.65;
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.site-footer__heading {
    margin: 3px 0 10px;

    color: #55a8ff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.site-footer__link {
    color: color-mix(in srgb, currentColor 68%, transparent);
    font-size: 0.92rem;
    line-height: 1.35;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
    color: #55a8ff;
    transform: translateX(3px);
}

.site-footer__socials {
    display: flex;
    gap: 10px;
}

.site-footer__social-link {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;

    border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
    border-radius: 50%;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-footer__social-link img {
    width: 18px;
    height: 18px;
    transition: transform 180ms ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
    background: color-mix(in srgb, #55a8ff 12%, transparent);
    border-color: rgba(85, 168, 255, 0.65);
    transform: translateY(-2px);
}

.site-footer__social-link:hover img,
.site-footer__social-link:focus-visible img {
    transform: scale(1.1);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;

    color: color-mix(in srgb, currentColor 44%, transparent);
    border-top: 1px solid color-mix(in srgb, currentColor 13%, transparent);
    font-size: 0.75rem;
    line-height: 1.5;
}

body[data-theme="light"] .site-footer {
    color: #101828;
    background: color-mix(in srgb, #ffffff 92%, #dbeafe 8%);
}

@media screen and (max-width: 767px) {
    .site-footer {
        padding: 64px 20px 22px;
    }

    .site-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 28px;
        padding-bottom: 54px;
    }

    .site-footer__brand-block {
        grid-column: 1 / -1;
        max-width: 300px;
    }

    .site-footer__social-column {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-footer__brand,
    .site-footer__link,
    .site-footer__social-link,
    .site-footer__social-link img {
        transition: none;
    }
}

.site-main > .background-section {
    height: 0;
    min-height: 0;
    pointer-events: none;
}


/* ==================================================
   03D. FEATURES SECTION
   ================================================== */

.features-section {
    position: relative;
    z-index: 2;

    width: 100%;
    padding: clamp(104px, 12vw, 168px) 20px clamp(112px, 13vw, 180px);

    color: #ffffff;
    font-family: "Gento", Inter, system-ui, sans-serif;
    scroll-margin-top: 88px;
}

.features-section__inner {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.features-section__intro {
    max-width: 720px;
    margin-bottom: clamp(48px, 7vw, 84px);
}

.features-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin: 0 0 24px;

    color: #55a8ff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
}

.features-section__eyebrow::before {
    display: block;
    width: 28px;
    height: 1px;

    background: currentColor;
    content: "";
}

.features-section__title {
    max-width: 700px;
    margin: 0;

    font-size: clamp(2.45rem, 5.4vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.features-section__accent {
    color: #55a8ff;
}

.features-section__description {
    max-width: 560px;
    margin: 26px 0 0;

    color: color-mix(in srgb, currentColor 72%, transparent);
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.65;
}

.features-section__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.feature-item {
    position: relative;

    display: flex;
    grid-column: span 5;
    align-items: flex-start;
    gap: 22px;

    min-width: 0;
    min-height: 224px;
    padding: 30px 28px;
    overflow: hidden;

    border: 1px solid color-mix(in srgb, currentColor 16%, transparent);
    border-radius: 8px;
    background: color-mix(in srgb, currentColor 3%, transparent);
    transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.feature-item--wide {
    grid-column: span 7;
}

.feature-item::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 2px;

    background: #55a8ff;
    content: "";
    opacity: 0;
    transform: scaleY(0.35);
    transform-origin: center;
    transition: opacity 220ms ease, transform 220ms ease;
}

.feature-item:hover {
    border-color: color-mix(in srgb, #55a8ff 54%, transparent);
    background: color-mix(in srgb, #55a8ff 5%, transparent);
    transform: translateY(-3px);
}

.feature-item:hover::after,
.feature-item:focus-within::after {
    opacity: 1;
    transform: scaleY(1);
}

.feature-item__icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
}

.feature-item__body {
    min-width: 0;
}

.feature-item__title {
    margin: 2px 0 0;

    color: inherit;
    font-size: clamp(1.1rem, 1.55vw, 1.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.feature-item__description {
    max-width: 390px;
    margin: 14px 0 0;

    color: color-mix(in srgb, currentColor 68%, transparent);
    font-size: 0.98rem;
    line-height: 1.6;
}

.feature-item__number {
    position: absolute;
    right: 24px;
    bottom: 19px;

    color: color-mix(in srgb, #55a8ff 52%, transparent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.features-section__intro,
.feature-item {
    opacity: 0;
    transform: translateY(18px);
}

.features-section.is-visible .features-section__intro,
.features-section.is-visible .feature-item {
    animation: features-reveal 650ms ease both;
}

.features-section.is-visible .feature-item:nth-child(2) {
    animation-delay: 70ms;
}

.features-section.is-visible .feature-item:nth-child(3) {
    animation-delay: 120ms;
}

.features-section.is-visible .feature-item:nth-child(4) {
    animation-delay: 170ms;
}

.features-section.is-visible .feature-item:nth-child(5) {
    animation-delay: 220ms;
}

.features-section.is-visible .feature-item:nth-child(6) {
    animation-delay: 270ms;
}

body[data-theme="light"] .features-section {
    color: #101828;
}

@keyframes features-reveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 991px) {
    .feature-item,
    .feature-item--wide {
        grid-column: span 6;
    }
}

@media screen and (max-width: 767px) {
    .features-section {
        padding: 92px 20px 112px;
        scroll-margin-top: 20px;
    }

    .features-section__intro {
        margin-bottom: 46px;
    }

    .features-section__title {
        font-size: clamp(2.25rem, 11vw, 3.5rem);
    }

    .features-section__description {
        margin-top: 22px;
        font-size: 1rem;
    }

    .features-section__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .feature-item,
    .feature-item--wide {
        grid-column: auto;
        min-height: 0;
        padding: 25px 22px 30px;
    }

    .feature-item__icon {
        width: 40px;
        height: 40px;
    }

    .feature-item__description {
        margin-top: 11px;
        font-size: 0.94rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .feature-item {
        transition: none;
    }

    .features-section__intro,
    .feature-item {
        opacity: 1;
        transform: none;
        animation: none;
    }
}


/* ==================================================
   11. START CHAT MODAL
   ================================================== */

.chat-modal {
    position: fixed;
    z-index: 20;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 260ms ease, opacity 260ms ease;
}

.chat-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.chat-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 8, 28, 0.68);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.chat-modal__dialog {
    position: relative;
    width: min(100%, 510px);
    max-height: calc(100svh - 48px);
    padding: 42px clamp(24px, 5vw, 48px) 38px;
    overflow-y: auto;
    color: #101828;
    background: #f8fbff;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
    transform: translateY(10px) scale(0.96);
    transition: transform 320ms cubic-bezier(.22, .75, .25, 1);
}

.chat-modal.is-open .chat-modal__dialog {
    transform: translateY(0) scale(1);
}

.chat-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    color: #475467;
    background: #eaf1f8;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 25px;
    line-height: 1;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.chat-modal__close:hover,
.chat-modal__close:focus-visible {
    color: #101828;
    background: #d9e8f8;
    transform: rotate(8deg);
}

.chat-modal__close:focus-visible,
.chat-form__input:focus-visible,
.country-picker__trigger:focus-visible,
.country-picker__search:focus-visible,
.chat-form__submit:focus-visible,
.gender-option__input:focus-visible + .gender-option__content {
    outline: 3px solid rgba(85, 168, 255, 0.42);
    outline-offset: 3px;
}

.chat-modal__eyebrow {
    margin: 0 0 12px;
    color: #2877ee;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.chat-modal__title {
    max-width: 390px;
    margin: 0;
    font-size: clamp(1.7rem, 4vw, 2.2rem);
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.chat-modal__description {
    margin: 12px 0 0;
    color: #667085;
    font-size: 0.95rem;
    line-height: 1.55;
}

.chat-form {
    display: grid;
    gap: 20px;
    margin-top: 28px;
}

.chat-form__field {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.chat-form__label,
.chat-form__gender-field legend {
    display: block;
    margin: 0 0 8px;
    color: #344054;
    font-size: 0.8rem;
    font-weight: 700;
}

.chat-form__input,
.country-picker__trigger,
.country-picker__search {
    width: 100%;
    min-height: 50px;
    padding: 0 15px;
    color: #101828;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    outline: 0;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.chat-form__input::placeholder,
.country-picker__search::placeholder {
    color: #98a2b3;
}

.chat-form__input:focus,
.country-picker__trigger:focus,
.country-picker__search:focus {
    border-color: #55a8ff;
    box-shadow: 0 0 0 4px rgba(85, 168, 255, 0.13);
}

.chat-form__message {
    min-height: 16px;
    margin: 6px 0 0;
    color: #c0394b;
    font-size: 0.75rem;
}

.chat-form__gender-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.gender-option {
    position: relative;
    min-width: 0;
}

.gender-option__input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.gender-option__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 58px;
    color: #667085;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.gender-option__content img {
    width: 24px;
    height: 24px;
    color: #98a2b3;
}

.gender-option__content:hover {
    border-color: #98caff;
    transform: translateY(-1px);
}

.gender-option__input:checked + .gender-option__content {
    color: #18784f;
    background: #ecfdf3;
    border-color: #42c887;
    box-shadow: inset 0 0 0 1px #42c887;
}

.gender-option__input:checked + .gender-option__content img {
    color: #20a464;
    padding: 4px;
    background: #20a464;
    border-radius: 50%;
    filter: brightness(0) invert(1);
}

.country-picker {
    position: relative;
}

.country-picker__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.country-picker__selected,
.country-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-picker__selected img,
.country-option img {
    width: 22px;
    height: 16px;
    flex: 0 0 auto;
}

.country-picker__placeholder {
    color: #98a2b3;
}

.country-picker__chevron {
    color: #667085;
    font-size: 1.25rem;
    transform: translateY(-2px);
}

.country-picker__menu {
    position: absolute;
    z-index: 2;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.16);
}

.country-picker__search {
    min-height: 42px;
    font-size: 0.85rem;
}

.country-picker__list {
    display: grid;
    gap: 2px;
    max-height: 184px;
    margin: 8px 0 0;
    padding: 0;
    overflow-y: auto;
    list-style: none;
    scrollbar-color: #b9cce0 transparent;
}

.country-option {
    width: 100%;
    min-height: 38px;
    padding: 7px 9px;
    color: #344054;
    background: transparent;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    text-align: left;
    transition: background-color 150ms ease, color 150ms ease;
}

.country-option:hover,
.country-option:focus-visible {
    color: #18784f;
    background: #ecfdf3;
    outline: 0;
}

.country-picker__empty {
    margin: 12px 4px 4px;
    color: #98a2b3;
    font-size: 0.8rem;
}

.chat-form__check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #667085;
    cursor: pointer;
    font-size: 0.8rem;
    line-height: 1.45;
}

.chat-form__checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.chat-form__checkmark {
    display: grid;
    place-items: center;
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    margin-top: 1px;
    background: #ffffff;
    border: 1px solid #b8c3d1;
    border-radius: 5px;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.chat-form__checkbox:checked + .chat-form__checkmark {
    background: #20a464;
    border-color: #20a464;
}

.chat-form__checkbox:checked + .chat-form__checkmark::after {
    width: 8px;
    height: 4px;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    content: "";
    transform: rotate(-45deg) translate(1px, -1px);
}

.chat-form__checkbox:focus-visible + .chat-form__checkmark {
    outline: 3px solid rgba(85, 168, 255, 0.42);
    outline-offset: 3px;
}

.chat-form__submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 0 18px 0 20px;
    color: #ffffff;
    background: #20a464;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.chat-form__submit:not(:disabled):hover,
.chat-form__submit:not(:disabled):focus-visible {
    background: #188a52;
    box-shadow: 0 10px 24px rgba(32, 164, 100, 0.23);
    transform: translateY(-2px);
}

.chat-form__submit:disabled {
    cursor: not-allowed;
    opacity: 0.42;
}

body.modal-is-open {
    overflow: hidden;
}

@media screen and (min-width: 601px) {
    .chat-modal__dialog {
        width: min(100%, 460px);
        max-height: calc(100svh - 32px);
        padding: 30px 34px 26px;
        overflow: hidden;
    }

    .chat-modal__eyebrow {
        margin-bottom: 8px;
        font-size: 0.64rem;
    }

    .chat-modal__title {
        font-size: 1.85rem;
    }

    .chat-modal__description {
        margin-top: 8px;
        font-size: 0.85rem;
    }

    .chat-form {
        gap: 12px;
        margin-top: 18px;
    }

    .chat-form__label,
    .chat-form__gender-field legend {
        margin-bottom: 5px;
        font-size: 0.74rem;
    }

    .chat-form__input,
    .country-picker__trigger {
        min-height: 44px;
        padding-right: 13px;
        padding-left: 13px;
    }

    .chat-form__message {
        min-height: 12px;
        margin-top: 3px;
        font-size: 0.68rem;
    }

    .chat-form__gender-options {
        gap: 10px;
    }

    .gender-option__content {
        min-height: 48px;
        font-size: 0.82rem;
    }

    .country-picker__menu {
        padding: 8px;
    }

    .country-picker__search {
        min-height: 38px;
    }

    .country-picker__list {
        max-height: 152px;
        margin-top: 6px;
    }

    .country-option {
        min-height: 32px;
        padding-top: 5px;
        padding-bottom: 5px;
        font-size: 0.78rem;
    }

    .chat-form__check-label {
        font-size: 0.74rem;
    }

    .chat-form__submit {
        min-height: 46px;
        font-size: 0.86rem;
    }
}

@media screen and (max-width: 600px) {
    .chat-modal {
        align-items: end;
        padding: 0;
    }

    .chat-modal__dialog {
        width: 100%;
        max-height: min(92svh, 760px);
        padding: 36px 20px 24px;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 24px 24px 0 0;
        transform: translateY(100%);
        transition: transform 380ms cubic-bezier(.22, .75, .25, 1);
    }

    .chat-modal.is-open .chat-modal__dialog {
        transform: translateY(0);
    }

    .chat-modal__close {
        top: 12px;
        right: 14px;
    }

    .chat-modal__description {
        max-width: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .chat-modal,
    .chat-modal__dialog,
    .chat-modal__close,
    .gender-option__content,
    .chat-form__submit {
        transition: none;
    }
}