:root {
    --white: #ffffff;
    --white-soft: rgba(255,255,255,0.72);
    --dark: #07110e;
    --dark-soft: #0d1814;
    --green: #9ed6ae;
    --green-light: #d5f5dc;
    --border: rgba(255,255,255,0.16);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: auto;
}


body {
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}


body,
button,
input,
select {
    font-family: Roboto;
}


a {
    text-decoration: none;
    color: inherit;
}


.container {
    width: min(1380px, calc(100% - 80px));
    margin-inline: auto;
}


/* ========================================
BACKGROUND
======================================== */

.hero {
    min-height: 100svh;
    position: relative;
    background-image:
        url("WEB.jpeg");
    background-size: cover;
    background-position: 35% center;
     background-repeat: no-repeat;
    background-attachment: scroll;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


.hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(169, 239, 189, 0.12),
            transparent 35%
        );

    pointer-events: none;
}


.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;

    opacity: 0.035;

    z-index: 999;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.9'/%3E%3C/svg%3E");
}


.ambient {
    width: 420px;
    height: 420px;
    position: fixed;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    opacity: 0.17;
}


.ambient-one {
    background: #91e8ac;
    left: -180px;
    top: 10%;
}


.ambient-two {
    background: #e0fff0;
    right: -250px;
    bottom: -120px;
}


/* ========================================
NAV
======================================== */

.navbar {
    height: 110px;

    position: relative;
    z-index: 5;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid rgba(255,255,255,0.12);
}


.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}


.brand-symbol {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.5);

    font-size: 21px;

    border-radius: 50%;
}


.brand-text {
    display: flex;
    flex-direction: column;

    font-size: 15px;

    letter-spacing: 3px;
    font-weight: 600;
}


.brand-text small {
    margin-top: 4px;

    opacity: .55;

    font-size: 7px;
    letter-spacing: 1.7px;

    font-weight: 400;
}


.nav-tag {
    border: 1px solid #ffffff;
    background-color: #ffffff;
    padding: 10px 17px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #000000;
    font-family: Roboto;
}


/* ========================================
MAIN HERO
======================================== */

.hero-content {
    position: relative;
    z-index: 3;

    flex: 1;

    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(400px, .65fr);

    align-items: center;

    gap: 80px;

    padding-block: 60px;
}


/* ========================================
LEFT SIDE
======================================== */

.content-side {
    max-width: 780px;
}


.eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--green-light);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3.2px;

    margin-bottom: 27px;
}


.eyebrow-dot {
    width: 7px;
    height: 7px;

    background: var(--green-light);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(158,214,174,.12);
}


.hero-title {
    font-size: clamp(62px, 6.8vw, 112px);

    font-weight: 500;

    letter-spacing: -6px;

    max-width: 900px;
}


.title-line {
    display: block;

    overflow: hidden;
}


.italic-line {
    color: var(--green-light);

    font-family: Georgia, "Times New Roman", serif;

    font-style: italic;

    font-weight: 400;

    letter-spacing: -7px;

    padding-bottom: 9px;
}


.hero-description {
    margin-top: 36px;

    max-width: 580px;

    font-size: 17px;

    line-height: 1.75;

    color: var(--white-soft);
}


.highlights {
    display: flex;

    gap: 38px;

    margin-top: 50px;
}


.highlight {
    display: flex;
    flex-direction: column;

    gap: 8px;

    font-size: 11px;

    letter-spacing: 1px;

    color: rgba(255,255,255,.7);
}


.highlight-number {
    font-size: 10px;

    color: var(--green);

    opacity: .7;
}


.small-note {
    font-size: 10px;

    letter-spacing: 1.5px;

    opacity: .4;

    margin-top: 32px;
}


/* ========================================
FORM CARD
======================================== */

.form-wrapper {
    position: relative;

    perspective: 1000px;
}


.form-glow {
    position: absolute;

    inset: 20% 5% -5%;

    background: rgba(152, 221, 171, .23);

    filter: blur(70px);

    border-radius: 50%;
}


.lead-card {
    position: relative;
    padding: 40px;
    border: 1px solid rgba(255,255,255,.18);
    background:
        linear-gradient(
            145deg,
            rgba(19, 31, 26, .88),
            rgba(6, 17, 12, .72)
        );

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 28px;
    box-shadow:
        0 40px 100px rgba(0,0,0,.32);
    overflow: hidden;
    font-family: Roboto;
}


.lead-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    background:
        radial-gradient(
            circle,
            rgba(191, 255, 209, .12),
            transparent 65%
        );

    right: -45px;
    top: -60px;
}


.card-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;
}


.form-label {
    color: var(--green-light);
    font-family: Roboto;
    font-size: 9px;
    letter-spacing: 3px;
}


.card-top h2 {
    margin-top: 13px;

    font-size: clamp(27px, 2vw, 35px);

    line-height: 1.15;

    font-weight: 500;

    letter-spacing: -1.4px;
}


.arrow-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    font-size: 16px;
    color: var(--green-light);
}


.form-description {
    margin-top: 18px;
    margin-bottom: 30px;
    font-size: 12px;
    color: rgba(255,255,255,.52);
    line-height: 1.7;
    max-width: 340px;
}


/* ========================================
INPUTS
======================================== */

.input-group {
    position: relative;
    margin-bottom: 18px;
}


.input-group input {
    width: 100%;
    height: 61px;
    padding:
        21px
        18px
        8px;
    background:
        rgba(255,255,255,.045);
    border:
        1px solid
        rgba(255,255,255,.12);

    color: white;
    border-radius: 13px;
    outline: none;
    font-size: 14px;
    transition:
        border .3s ease,
        background .3s ease;
        font-family: "Manrope", sans-serif;
}


.input-group label {
    position: absolute;
    left: 18px;
    top: 20px;
    pointer-events: none;
    font-size: 12px;
    color: rgba(255,255,255,.46);
    transition: .25s ease;
    font-family: Roboto;
}


.input-group input:focus {
    border-color:
        rgba(193,255,210,.55);

    background:
        rgba(255,255,255,.065);
}


.input-group input:focus + label,
.input-group input:valid + label {
    top: 9px;

    font-size: 8px;

    color: var(--green-light);

    letter-spacing: 1px;
}


/* select */

.select-group {
    margin-bottom: 19px;
}


.select-group label {
    display: block;
    margin-bottom: 9px;
    font-size: 9px;
    letter-spacing: 1px;
    color: rgba(255,255,255,.48);
    font-family: Roboto;
}


.select-group select {
    appearance: none;

    width: 100%;

    height: 58px;

    padding-inline: 18px;

    border-radius: 13px;

    border:
        1px solid
        rgba(255,255,255,.12);

    background-color:
        rgba(255,255,255,.045);

    color: rgba(255,255,255,.72);

    outline: none;

    font-size: 12px;
}


.select-group select option {
    background: #101a16;

    color: white;
}


/* ========================================
BUTTON
======================================== */

.submit-btn {
    width: 100%;

    height: 62px;

    border: none;

    border-radius: 100px;

    background:
        var(--green-light);

    color:
        #07110d;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 6px 8px 6px 25px;

    font-size: 11px;

    letter-spacing: 1.5px;

    font-weight: 700;

    cursor: pointer;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.submit-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 40px
        rgba(174,241,193,.2);
}


.button-arrow {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: #07110d;

    color: var(--green-light);

    font-size: 17px;

    transition: transform .4s ease;
}


.submit-btn:hover .button-arrow {
    transform: rotate(45deg);
}


.submit-btn:disabled {
    cursor: not-allowed;

    opacity: .6;
}


/* ========================================
FORM TEXT
======================================== */

.privacy-text {
    margin-top: 17px;

    text-align: center;

    font-size: 8px;

    line-height: 1.6;

    color: rgba(255,255,255,.3);
}


.form-message {
    font-size: 10px;

    text-align: center;

    min-height: 16px;

    margin-top: 12px;

    letter-spacing: .4px;
}


.form-message.success {
    color: #bfffd1;
}


.form-message.error {
    color: #ffaea8;
}


/* ========================================
BOTTOM
======================================== */

.bottom-bar {
    min-height: 64px;

    z-index: 3;

    position: relative;

    display: flex;

    align-items: center;

    gap: 20px;

    font-size: 8px;

    letter-spacing: 2px;

    color: rgba(255,255,255,.45);
}


.bottom-line {
    flex: 1;

    height: 1px;

    background:
        rgba(255,255,255,.1);
}


/* ========================================
RESPONSIVE
======================================== */

@media (max-width: 1050px) {

    .hero {
        min-height: auto;

        background-attachment: scroll;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 60px;

        padding-block: 70px;
    }

    .content-side {
        max-width: 100%;
    }

    .form-wrapper {
        max-width: 620px;

        width: 100%;
    }

}


@media (max-width: 700px) {

    .container {
        width:
            min(100% - 36px, 100%);
    }

    .navbar {
        height: 83px;
    }

    .nav-tag {
        display: none;
    }

    .brand-text {
        font-size: 12px;

        letter-spacing: 2px;
    }

    .brand-symbol {
        width: 37px;
        height: 37px;
    }

    .hero-content {
        padding:
            55px 0
            40px;

        gap: 45px;
    }

    .hero-title {
        font-size:
            clamp(48px, 16vw, 44px);

        letter-spacing: -2px;
    }

    .italic-line {
        letter-spacing: -4px;
    }

    .hero-description {
        font-size: 14px;

        margin-top: 25px;
    }

    .highlights {
        flex-direction: column;

        gap: 15px;

        margin-top: 34px;
    }

    .highlight {
        flex-direction: row;

        gap: 15px;
    }

    .lead-card {
        padding: 28px 22px;

        border-radius: 22px;
    }

    .card-top h2 {
        font-size: 28px;
    }

    .bottom-bar {
        padding-block: 20px;
    }

}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: .01ms !important;
    }

}

/* =====================================================
   CLEAN MOBILE VIEW
   DESKTOP 701px+ WILL NOT CHANGE
===================================================== */


/* MOBILE ASSETS - DEFAULT / DESKTOP HIDE */
.mobile-girl,
.mobile-visual-box,
.mobile-text-png,
.mobile-girl-png {
    display: none;
}


/* =====================================================
   MOBILE VIEW
===================================================== */

@media (max-width: 700px) {

    /* -----------------------------
       HERO
    ----------------------------- */

    .hero {
        background-image: none !important;
        background-color: #efc733 !important;

        min-height: 100svh;
        overflow-x: hidden;
        overflow-y: visible;
    }


    .container {
        width: min(calc(100% - 24px), 100%) !important;
    }


    .navbar {
        height: 70px !important;
    }


    /* DESKTOP LEFT CONTENT HIDE */

    .content-side {
        display: none !important;
    }


    /* MAIN MOBILE LAYOUT */

    .hero-content {
        grid-template-columns: 1fr !important;

        justify-items: center !important;
        align-items: start !important;

        gap: 0 !important;

        padding:
            18px
            0
            30px !important;
    }



    /* =================================================
       TOP TEXT PNG
    ================================================= */

    .mobile-visual-box {
        display: block;

        position: relative;
        z-index: 10;

        width: 100%;
        max-width: 340px;

        margin:
            0
            auto;

        text-align: center;
    }


    .mobile-text-png {
        display: block;

        width: 100%;
        max-width: 325px;

        height: auto;

        margin:
            0
            auto;
    }



    /* =================================================
       FORM WRAPPER
    ================================================= */

    .form-wrapper {
        position: relative;

        width: 100%;
        max-width: 340px;

        /*
        Girl-ku space outside card.
        Card-kulla extra padding kudukala.
        */
        margin:
            88px
            auto
            0 !important;

        perspective: none !important;

        overflow: visible;

        isolation: isolate;
    }



    /* =================================================
       GIRL PNG
    ================================================= */

    .mobile-girl-png {
        display: block;
        position: absolute;
        left: 50%;
        top: -185px;
        z-index: -4;
        transform: translateX(-50%);
        /*
        PNG-la transparent space irundhalum
        girl proper size-la varum
        */
        width: min(480px, 145vw);
        max-width: none;

        height: auto;

        /*
        Card-ku behind.
        But wrapper background-ku above.
        */
        z-index: 4;

        pointer-events: none;
    }



    /* =================================================
       FORM GLOW
    ================================================= */

    .form-glow {
        inset:
            8%
            0
            -8%;

        filter: blur(45px);

        opacity: 0.6;

        z-index: 1;
    }



    /* =================================================
       LEAD CARD
    ================================================= */

    .lead-card {
        position: relative;

        z-index: 5;

        width: 100%;

        /*
        MAIN FIX:
        old 96px / 105px top padding REMOVED.
        */
        padding:
            18px
            18px
            20px !important;

        border-radius: 24px;

        overflow: visible;

        background:
            linear-gradient(
                145deg,
                rgba(19, 31, 26, 0.96),
                rgba(6, 17, 12, 0.93)
            );

        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);

        box-shadow:
            0
            25px
            70px
            rgba(0, 0, 0, 0.35);
    }


    .lead-card::before {
        width: 120px;
        height: 120px;

        right: -20px;
        top: -20px;
    }



    /* =================================================
       FORM TITLE
    ================================================= */

    .card-top {
        position: relative;

        z-index: 6;

        align-items: center;
    }


    .form-label {
        font-size: 10px !important;

        letter-spacing: 1.5px;
    }


    .card-top h2 {
        margin-top: 6px !important;

        font-size: 30px !important;
        font-family: arial black;
        line-height: 1.08;
        font-weight: 800px;

        letter-spacing: -1px;
    }


    .arrow-icon {
        width: 43px;
        height: 43px;

        flex-shrink: 0;

        font-size: 15px;
    }



    /* =================================================
       DESCRIPTION
    ================================================= */

    .form-description {
        position: relative;

        z-index: 6;

        margin-top: 11px !important;
        margin-bottom: 19px !important;

        font-size: 13px !important;

        line-height: 1.5;
    }



    /* =================================================
       INPUTS
    ================================================= */

    .input-group {
        position: relative;

        z-index: 6;

        margin-bottom: 12px !important;
    }


    .input-group input {
        width: 100%;

        height: 58px !important;

        padding:
            21px
            16px
            8px !important;

        /*
        16px prevents iPhone auto zoom
        */
        font-size: 16px !important;

        border-radius: 13px;
    }


    .input-group label {
        left: 16px !important;
        top: 19px !important;

        font-size: 13px !important;
    }


    .input-group input:focus + label,
    .input-group input:valid + label {

        top: 7px !important;

        font-size: 9px !important;

        letter-spacing: 0.7px;
    }



    /* =================================================
       SELECT
    ================================================= */

    .select-group {
        position: relative;

        z-index: 6;

        margin-bottom: 13px;
    }


    .select-group label {
        font-size: 10px !important;
    }


    .select-group select {
        height: 56px !important;

        padding-inline: 16px;

        font-size: 14px !important;
    }



    /* =================================================
       BUTTON
    ================================================= */

    .submit-btn {
        position: relative;

        z-index: 6;

        height: 58px !important;

        padding:
            5px
            6px
            5px
            21px !important;

        font-size: 12px !important;

        letter-spacing: 1px;
    }


    .button-arrow {
        width: 46px;
        height: 46px;

        font-size: 16px;
    }



    /* =================================================
       BOTTOM TEXT
    ================================================= */

    .privacy-text {
        position: relative;

        z-index: 6;

        margin-top: 12px;

        font-size: 8px !important;

        line-height: 1.5;
    }


    .form-message {
        position: relative;

        z-index: 6;

        margin-top: 8px;

        font-size: 11px !important;
    }


}



/* =====================================================
   IPHONE SE / 375px / SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .container {
        width: min(calc(100% - 20px), 100%) !important;
    }


    .hero-content {
        padding:
            14px
            0
            24px !important;
    }


    .mobile-visual-box {
        max-width: 315px;
    }


    .mobile-text-png {
        max-width: 305px;
    }


    .form-wrapper {
        max-width: 310px;

        margin-top: 92px !important;
    }


    .mobile-girl-png {
        width: 480px;
        z-index: -4;
        top: -185px;
    }


    /*
    Nee inspect-la 6px vecha correct
    nu sonna exact value idhu.
    */
    .lead-card {
        padding: 6px 16px 18px !important;
    }


    .card-top h2 {
        font-size: 50px !important;

        margin-top: 8px !important;
    }


    .form-description {
        font-size: 12.5px !important;

        margin-top: 10px !important;
        margin-bottom: 17px !important;
    }


    .input-group {
        margin-bottom: 11px !important;
    }


    .input-group input {
        height: 56px !important;

        font-size: 16px !important;
    }


    .input-group label {
        font-size: 12px !important;
    }


    .submit-btn {
        height: 56px !important;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 18px !important;
    }


    .button-arrow {
        width: 44px;
        height: 44px;
    }

}