/*
=========================================================
MINDLYCHAT
WELCOME PAGE
Apple Liquid Glass / Light
=========================================================
*/


/* =====================================================
   RESET
===================================================== */

.welcome-body {
    margin: 0;
    padding: 0;

    min-height: 100vh;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(190, 220, 255, .65),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(225, 205, 255, .55),
            transparent 30%
        ),
        radial-gradient(
            circle at 50% 90%,
            rgba(190, 245, 231, .5),
            transparent 34%
        ),
        #f4f7fb;

    color: #18202d;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


.welcome-page {
    position: relative;

    min-height: 100vh;

    overflow: hidden;
}


/* =====================================================
   AMBIENT LIGHT
===================================================== */

.welcome-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(60px);

    opacity: .7;

    z-index: 0;
}


.glow-one {
    width: 420px;
    height: 420px;

    top: 100px;
    left: -180px;

    background:
        rgba(107, 173, 255, .28);
}


.glow-two {
    width: 460px;
    height: 460px;

    top: 460px;
    right: -200px;

    background:
        rgba(180, 130, 255, .24);
}


.glow-three {
    width: 500px;
    height: 500px;

    top: 1100px;
    left: 30%;

    background:
        rgba(92, 220, 186, .18);
}


.welcome-orb {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(1px);

    opacity: .6;

    z-index: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.9),
            rgba(255,255,255,.15)
        );

    border:
        1px solid rgba(255,255,255,.9);

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,.9),
        0 20px 70px rgba(75,100,140,.12);
}


.orb-one {
    width: 130px;
    height: 130px;

    top: 220px;
    right: 9%;
}


.orb-two {
    width: 70px;
    height: 70px;

    top: 760px;
    left: 8%;
}


/* =====================================================
   HEADER
===================================================== */

.welcome-header {
    position: relative;

    z-index: 20;

    width: min(
        calc(100% - 48px),
        1280px
    );

    margin: 0 auto;

    padding:
        24px
        0;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.welcome-brand {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #151c29;

    text-decoration: none;

    font-weight: 800;

    letter-spacing: -.04em;
}


.brand-symbol {
    position: relative;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.96),
            rgba(225,235,248,.65)
        );

    border:
        1px solid rgba(255,255,255,.95);

    box-shadow:
        0 10px 30px rgba(75,95,125,.14),
        inset 0 1px 1px rgba(255,255,255,1);

    overflow: hidden;
}


.brand-symbol::before {
    content: "";

    position: absolute;

    width: 34px;
    height: 17px;

    left: 2px;
    top: -4px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.8);

    filter: blur(6px);
}


.brand-symbol span {
    position: absolute;

    width: 17px;
    height: 8px;

    border-radius: 8px;

    background:
        linear-gradient(
            90deg,
            #7baaff,
            #9d7cff
        );

    box-shadow:
        0 3px 10px rgba(120,140,255,.35);

    transform: rotate(-18deg);
}


.brand-symbol span:first-child {
    top: 12px;
    left: 7px;
}


.brand-symbol span:last-child {
    bottom: 10px;
    right: 6px;

    transform: rotate(18deg);
}


.brand-name {
    font-size: 17px;

    letter-spacing: -.045em;
}


.welcome-nav {
    display: flex;

    align-items: center;

    gap: 10px;
}


.header-login,
.header-register {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 18px;

    border-radius: 14px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 650;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.header-login {
    color: #445064;
}


.header-login:hover {
    transform: translateY(-1px);

    color: #151c29;
}


.header-register {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #638ff5,
            #806de5
        );

    box-shadow:
        0 9px 24px rgba(103,120,225,.24);
}


.header-register:hover {
    transform: translateY(-2px);

    box-shadow:
        0 13px 30px rgba(103,120,225,.32);
}


/* =====================================================
   MAIN
===================================================== */

.welcome-main {
    position: relative;

    z-index: 5;
}


/* =====================================================
   HERO
===================================================== */

.hero-section {
    width: min(
        calc(100% - 40px),
        900px
    );

    margin: 0 auto;

    padding:
        110px 0 80px;

    text-align: center;
}


.hero-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding:
        8px
        13px;

    border-radius: 999px;

    color: #69758a;

    background:
        rgba(255,255,255,.55);

    border:
        1px solid rgba(255,255,255,.85);

    box-shadow:
        0 8px 30px rgba(65,85,115,.07),
        inset 0 1px 1px rgba(255,255,255,.95);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .02em;
}


.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        #69c79b;

    box-shadow:
        0 0 0 4px rgba(105,199,155,.12),
        0 0 15px rgba(105,199,155,.5);
}


.hero-title {
    margin:
        26px
        auto
        0;

    max-width: 850px;

    font-size:
        clamp(
            48px,
            8vw,
            88px
        );

    line-height: .98;

    letter-spacing: -.065em;

    font-weight: 800;

    color: #18202d;
}


.hero-title span {
    display: block;

    background:
        linear-gradient(
            110deg,
            #4e7de0,
            #7667dc 45%,
            #58a6bc
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.hero-description {
    max-width: 600px;

    margin:
        30px
        auto
        0;

    color: #6d7789;

    font-size:
        clamp(
            16px,
            2vw,
            19px
        );

    line-height: 1.65;

    letter-spacing: -.015em;
}


.hero-actions {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 34px;
}


.hero-button {
    min-height: 52px;

    padding:
        0 22px;

    border-radius: 17px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    box-sizing: border-box;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: -.01em;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.hero-button.primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #638ff5,
            #806de5
        );

    box-shadow:
        0 14px 34px rgba(103,120,225,.28);
}


.hero-button.primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 42px rgba(103,120,225,.36);
}


.hero-button.primary svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.hero-button.secondary {
    color: #667186;

    background:
        rgba(255,255,255,.58);

    border:
        1px solid rgba(255,255,255,.85);

    box-shadow:
        0 9px 28px rgba(65,85,115,.07),
        inset 0 1px 1px rgba(255,255,255,.95);

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);
}


.hero-button.secondary:hover {
    transform: translateY(-2px);

    color: #252e3d;

    box-shadow:
        0 14px 32px rgba(65,85,115,.11);
}


.hero-trust {
    margin-top: 30px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

    color: #8a94a5;

    font-size: 11px;

    font-weight: 600;
}


.trust-item {
    display: inline-flex;

    align-items: center;

    gap: 6px;
}


.trust-icon {
    color: #65ae8b;

    font-size: 12px;
}


.trust-separator {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #c5ccd6;
}


/* =====================================================
   CHAT PREVIEW
===================================================== */

.preview-section {
    position: relative;

    width: min(
        calc(100% - 32px),
        930px
    );

    margin:
        0 auto
        120px;

    min-height: 610px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.preview-shadow {
    position: absolute;

    width: 70%;
    height: 45%;

    bottom: 0;

    border-radius: 50%;

    background:
        rgba(84,100,145,.18);

    filter: blur(65px);

    z-index: -1;
}


.phone-window {
    position: relative;

    width: min(
        100%,
        520px
    );

    height: 590px;

    overflow: hidden;

    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.78),
            rgba(245,248,253,.65)
        );

    border:
        1px solid rgba(255,255,255,.95);

    box-shadow:
        0 40px 100px rgba(70,88,120,.18),
        0 10px 30px rgba(70,88,120,.08),
        inset 0 1px 1px rgba(255,255,255,1);

    backdrop-filter:
        blur(30px);

    -webkit-backdrop-filter:
        blur(30px);

    transform:
        perspective(1200px)
        rotateX(1deg);

    transition:
        transform .5s ease,
        box-shadow .5s ease;
}


.phone-window:hover {
    transform:
        perspective(1200px)
        rotateX(0deg)
        translateY(-5px);

    box-shadow:
        0 50px 120px rgba(70,88,120,.21),
        0 10px 30px rgba(70,88,120,.08),
        inset 0 1px 1px rgba(255,255,255,1);
}


.phone-window::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 120px;

    background:
        radial-gradient(
            ellipse at 50% -30%,
            rgba(255,255,255,.95),
            transparent 70%
        );

    pointer-events: none;

    z-index: 5;
}


/* =====================================================
   PREVIEW HEADER
===================================================== */

.preview-header {
    position: relative;

    height: 76px;

    padding:
        0 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid rgba(150,160,180,.12);
}


.preview-user {
    display: flex;

    align-items: center;

    gap: 11px;
}


.preview-avatar {
    position: relative;

    width: 42px;
    height: 42px;

    border-radius: 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 15px;

    font-weight: 750;

    background:
        linear-gradient(
            145deg,
            #73a7f5,
            #7185e6
        );

    box-shadow:
        0 7px 18px rgba(92,120,220,.2);
}


.preview-avatar span {
    position: absolute;

    right: -1px;
    bottom: -1px;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #67c595;

    border: 2px solid #f5f8fc;
}


.preview-user strong {
    display: block;

    color: #252d3a;

    font-size: 13px;
}


.preview-user small {
    display: block;

    margin-top: 3px;

    color: #79a88f;

    font-size: 10px;
}


.preview-actions {
    display: flex;

    align-items: center;

    gap: 4px;
}


.preview-actions span {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #aab3c0;
}


/* =====================================================
   MESSAGES
===================================================== */

.preview-messages {
    height: 430px;

    padding:
        24px 20px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    gap: 9px;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(165,195,255,.08),
            transparent 40%
        );
}


.message {
    display: flex;

    flex-direction: column;

    max-width: 76%;
}


.message-other {
    align-self: flex-start;

    align-items: flex-start;
}


.message-own {
    align-self: flex-end;

    align-items: flex-end;
}


.message-bubble {
    padding:
        10px
        14px;

    border-radius: 17px;

    color: #3b4657;

    background:
        rgba(255,255,255,.78);

    border:
        1px solid rgba(255,255,255,.9);

    box-shadow:
        0 6px 18px rgba(80,95,120,.06);

    font-size: 13px;

    line-height: 1.45;
}


.message-other .message-bubble {
    border-bottom-left-radius: 6px;
}


.message-own .message-bubble {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #7198ef,
            #8174df
        );

    border-color:
        rgba(255,255,255,.15);

    border-bottom-right-radius: 6px;

    box-shadow:
        0 8px 20px rgba(105,120,220,.16);
}


.message time {
    margin:
        3px
        5px
        0;

    color: #a4acb9;

    font-size: 8px;
}


/* =====================================================
   TYPING
===================================================== */

.message-bubble.typing {
    display: flex;

    align-items: center;

    gap: 4px;

    padding:
        12px
        14px;
}


.typing i {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #8994a6;

    animation:
        typing-dot 1.3s infinite ease-in-out;
}


.typing i:nth-child(2) {
    animation-delay: .15s;
}


.typing i:nth-child(3) {
    animation-delay: .3s;
}


@keyframes typing-dot {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: .45;
    }

    30% {
        transform: translateY(-3px);
        opacity: 1;
    }

}


/* =====================================================
   PREVIEW INPUT
===================================================== */

.preview-input {
    height: 72px;

    padding:
        0 16px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-top:
        1px solid rgba(150,160,180,.12);
}


.fake-input {
    flex: 1;

    height: 43px;

    padding:
        0 14px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    border-radius: 14px;

    color: #a6adba;

    background:
        rgba(235,239,246,.55);

    border:
        1px solid rgba(255,255,255,.85);

    font-size: 11px;
}


.preview-input button {
    width: 43px;
    height: 43px;

    border: 0;

    border-radius: 14px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #6f96ef,
            #8174df
        );

    box-shadow:
        0 7px 18px rgba(100,120,220,.2);
}


.preview-input button svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =====================================================
   FLOATING CARDS
===================================================== */

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        12px
        15px;

    border-radius: 17px;

    background:
        rgba(255,255,255,.72);

    border:
        1px solid rgba(255,255,255,.92);

    box-shadow:
        0 20px 50px rgba(65,85,115,.12),
        inset 0 1px 1px rgba(255,255,255,.95);

    backdrop-filter:
        blur(22px);

    -webkit-backdrop-filter:
        blur(22px);

    z-index: 5;

    animation:
        floating-card 5s ease-in-out infinite;
}


.floating-card strong {
    display: block;

    color: #354052;

    font-size: 11px;

    font-weight: 700;
}


.floating-card small {
    display: block;

    margin-top: 3px;

    color: #98a1b0;

    font-size: 9px;
}


.card-online {
    left: -45px;
    top: 150px;
}


.card-message {
    right: -50px;
    bottom: 130px;

    animation-delay: -2.2s;
}


@keyframes floating-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


.floating-icon {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-size: 10px;
}


.online-icon {
    color: #62b88e;

    background:
        rgba(101,196,150,.12);
}


.message-icon {
    color: #8172dc;

    background:
        rgba(130,112,220,.11);
}


/* =====================================================
   FEATURES
===================================================== */

.features-section {
    width: min(
        calc(100% - 40px),
        1100px
    );

    margin:
        0 auto
        140px;
}


.section-intro {
    margin-bottom: 42px;
}


.section-intro > span {
    color: #738ee1;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .12em;
}


.section-intro h2 {
    margin:
        12px
        0
        14px;

    color: #1d2634;

    font-size:
        clamp(
            34px,
            5vw,
            58px
        );

    line-height: 1;

    letter-spacing: -.055em;
}


.section-intro p {
    max-width: 520px;

    margin: 0;

    color: #7b8596;

    font-size: 15px;

    line-height: 1.65;
}


.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 14px;
}


.feature-card {
    position: relative;

    min-height: 250px;

    padding: 28px;

    box-sizing: border-box;

    border-radius: 27px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.74),
            rgba(245,248,252,.55)
        );

    border:
        1px solid rgba(255,255,255,.92);

    box-shadow:
        0 20px 60px rgba(70,90,120,.07),
        inset 0 1px 1px rgba(255,255,255,.98);

    backdrop-filter:
        blur(22px);

    -webkit-backdrop-filter:
        blur(22px);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.feature-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 28px 70px rgba(70,90,120,.11),
        inset 0 1px 1px rgba(255,255,255,.98);
}


.feature-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    bottom: -100px;

    border-radius: 50%;

    background:
        rgba(130,155,255,.08);

    filter: blur(20px);
}


.feature-large {
    min-height: 310px;
}


.feature-wide {
    grid-column: 1 / -1;

    min-height: 240px;
}


.feature-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    margin-bottom: 28px;
}


.feature-icon svg {
    width: 22px;
    height: 22px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.feature-icon.blue {
    color: #5d8de9;

    background:
        rgba(99,148,240,.11);
}


.feature-icon.purple {
    color: #8271dc;

    background:
        rgba(132,113,220,.11);
}


.feature-icon.green {
    color: #57aa87;

    background:
        rgba(83,176,139,.11);
}


.feature-icon.orange {
    color: #d49b62;

    background:
        rgba(220,157,94,.11);
}


.feature-card h3 {
    margin:
        0
        0
        10px;

    color: #293344;

    font-size: 19px;

    letter-spacing: -.025em;
}


.feature-card p {
    max-width: 420px;

    margin: 0;

    color: #818b9b;

    font-size: 13px;

    line-height: 1.65;
}


.feature-wide-content {
    display: grid;

    grid-template-columns:
        1fr
        260px;

    gap: 40px;

    align-items: center;
}


.mini-interface {
    height: 145px;

    padding: 20px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 10px;

    border-radius: 22px;

    background:
        rgba(235,239,247,.48);

    border:
        1px solid rgba(255,255,255,.8);
}


.mini-line {
    width: 85%;
    height: 10px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            rgba(106,143,228,.24),
            rgba(130,113,220,.08)
        );
}


.mini-line.short {
    width: 60%;
}


.mini-line.shorter {
    width: 45%;
}


/* =====================================================
   FINAL CTA
===================================================== */

.final-section {
    position: relative;

    width: min(
        calc(100% - 40px),
        1100px
    );

    min-height: 430px;

    margin:
        0 auto
        100px;

    border-radius: 38px;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(232,239,255,.78),
            rgba(239,235,255,.74),
            rgba(226,247,241,.7)
        );

    border:
        1px solid rgba(255,255,255,.95);

    box-shadow:
        0 30px 90px rgba(70,90,120,.1),
        inset 0 1px 1px rgba(255,255,255,1);
}


.final-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    top: -220px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        rgba(255,255,255,.65);

    filter: blur(35px);
}


.final-content {
    position: relative;

    z-index: 2;

    max-width: 620px;

    padding: 50px 20px;
}


.final-mark {
    width: 52px;
    height: 52px;

    margin:
        0
        auto
        25px;

    border-radius: 17px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,.65);

    border:
        1px solid rgba(255,255,255,.95);

    box-shadow:
        0 12px 30px rgba(80,100,140,.1);
}


.final-mark span {
    position: absolute;

    width: 21px;
    height: 9px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #688ff0,
            #8872df
        );
}


.final-mark span:first-child {
    transform: translate(-4px,-5px) rotate(-18deg);
}


.final-mark span:last-child {
    transform: translate(4px,5px) rotate(18deg);
}


.final-content h2 {
    margin: 0;

    color: #202a39;

    font-size:
        clamp(
            38px,
            6vw,
            64px
        );

    line-height: .98;

    letter-spacing: -.06em;
}


.final-content p {
    max-width: 480px;

    margin:
        22px
        auto
        28px;

    color: #798496;

    font-size: 14px;

    line-height: 1.65;
}


.final-button {
    display: inline-flex;
}


/* =====================================================
   FOOTER
===================================================== */

.welcome-footer {
    position: relative;

    z-index: 5;

    width: min(
        calc(100% - 40px),
        1100px
    );

    margin:
        0 auto;

    padding:
        26px 0
        35px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 20px;

    border-top:
        1px solid rgba(120,135,160,.12);

    color: #99a2b0;

    font-size: 10px;
}


.footer-brand {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #667184;

    font-size: 11px;

    font-weight: 750;
}


.footer-mark {
    position: relative;

    width: 23px;
    height: 23px;

    border-radius: 7px;

    background:
        rgba(255,255,255,.7);

    border:
        1px solid rgba(255,255,255,.9);
}


.footer-mark span {
    position: absolute;

    width: 10px;
    height: 4px;

    border-radius: 4px;

    background:
        #7d86df;
}


.footer-mark span:first-child {
    top: 7px;
    left: 4px;

    transform: rotate(-18deg);
}


.footer-mark span:last-child {
    bottom: 6px;
    right: 4px;

    transform: rotate(18deg);
}


.footer-copy {
    text-align: center;
}


.footer-links {
    display: flex;

    justify-content: flex-end;

    gap: 18px;
}


.footer-links a {
    color: inherit;

    text-decoration: none;

    transition:
        color .2s ease;
}


.footer-links a:hover {
    color: #5d6b81;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 800px) {

    .welcome-header {
        width: min(
            calc(100% - 30px),
            1280px
        );

        padding-top: 17px;
    }


    .header-register {
        display: none;
    }


    .hero-section {
        padding-top: 85px;
    }


    .preview-section {
        margin-bottom: 90px;
    }


    .card-online {
        left: -10px;
    }


    .card-message {
        right: -10px;
    }


    .feature-grid {
        grid-template-columns: 1fr;
    }


    .feature-wide {
        grid-column: auto;
    }


    .feature-wide-content {
        grid-template-columns: 1fr;
    }


    .mini-interface {
        display: none;
    }


    .welcome-footer {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .footer-brand,
    .footer-links {
        justify-content: center;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .welcome-header {
        width: calc(100% - 28px);

        padding-top: 14px;
    }


    .brand-symbol {
        width: 34px;
        height: 34px;

        border-radius: 11px;
    }


    .brand-name {
        font-size: 15px;
    }


    .header-login {
        padding: 0 10px;

        min-height: 38px;

        font-size: 13px;
    }


    .hero-section {
        width: calc(100% - 30px);

        padding:
            76px 0
            55px;
    }


    .hero-eyebrow {
        font-size: 10px;

        padding:
            7px
            11px;
    }


    .hero-title {
        margin-top: 23px;

        font-size:
            clamp(
                43px,
                13vw,
                62px
            );
    }


    .hero-description {
        margin-top: 22px;

        font-size: 14px;

        line-height: 1.6;
    }


    .hero-actions {
        margin-top: 27px;

        flex-direction: column;

        width: 100%;
    }


    .hero-button {
        width: 100%;

        min-height: 51px;
    }


    .hero-trust {
        gap: 9px;

        font-size: 9px;
    }


    .trust-separator {
        display: none;
    }


    .preview-section {
        width: calc(100% - 18px);

        min-height: 530px;

        margin-bottom: 85px;
    }


    .phone-window {
        width: 100%;

        height: 530px;

        border-radius: 28px;
    }


    .preview-header {
        height: 67px;

        padding: 0 16px;
    }


    .preview-avatar {
        width: 38px;
        height: 38px;
    }


    .preview-messages {
        height: 375px;

        padding:
            18px 15px;
    }


    .preview-input {
        height: 62px;
    }


    .floating-card {
        display: none;
    }


    .features-section {
        width: calc(100% - 30px);

        margin-bottom: 85px;
    }


    .section-intro h2 {
        font-size: 39px;
    }


    .section-intro p {
        font-size: 13px;
    }


    .feature-card {
        min-height: 220px;

        padding: 23px;

        border-radius: 23px;
    }


    .feature-large {
        min-height: 240px;
    }


    .final-section {
        width: calc(100% - 24px);

        min-height: 390px;

        margin-bottom: 65px;

        border-radius: 29px;
    }


    .final-content h2 {
        font-size: 43px;
    }


    .final-content p {
        font-size: 13px;
    }


    .welcome-footer {
        width: calc(100% - 30px);

        padding-bottom:
            calc(
                25px +
                env(safe-area-inset-bottom)
            );
    }


    .orb-one {
        width: 90px;
        height: 90px;

        right: -20px;
    }


    .orb-two {
        width: 55px;
        height: 55px;

        left: -15px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .hero-title {
        font-size: 40px;
    }


    .hero-description {
        font-size: 13px;
    }


    .hero-trust {
        display: none;
    }


    .phone-window {
        height: 500px;
    }


    .preview-messages {
        height: 345px;
    }


    .final-content h2 {
        font-size: 38px;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }

}