/* =====================================
   NEW PRACTITIONER
===================================== */

.np-shell {
    width:
        min(
            calc(100% - 80px),
            1120px
        );

    margin:
        0 auto;
}


.np-hero {
    position: relative;

    overflow: hidden;

    padding:
        175px 0
        105px;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(122, 67, 171, 0.17),
            transparent 38%
        ),
        #09070f;

    text-align: center;
}


.np-hero-glow {
    position: absolute;

    width: 850px;
    height: 450px;

    top: -230px;
    left: 50%;

    transform:
        translateX(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(142, 78, 194, 0.16),
            transparent 68%
        );

    pointer-events: none;
}


.np-hero-inner {
    position: relative;

    z-index: 2;

    max-width: 900px;
}


.np-hero h1 {
    margin: 0;

    font-size:
        clamp(
            54px,
            6vw,
            84px
        );

    line-height: 1;

    letter-spacing: -0.055em;

    font-weight: 500;
}


.np-hero h1 span {
    display: block;

    color: #c7afe0;
}


.np-hero-copy {
    max-width: 690px;

    margin:
        27px auto
        0;

    color: #9b919f;

    font-size: 19px;

    line-height: 1.7;
}


.np-price {
    display: flex;

    justify-content: center;

    align-items: flex-end;

    gap: 8px;

    margin-top: 35px;
}


.np-price strong {
    color: #f2edf4;

    font-size: 50px;

    line-height: 1;

    font-weight: 500;

    letter-spacing: -0.04em;
}


.np-price span {
    padding-bottom: 6px;

    color: #8e8492;

    font-size: 15px;
}



/* =====================================
   SECTION
===================================== */

.np-section {
    min-height: 600px;

    padding:
        120px 0
        140px;

    background: #0b0810;
}



/* =====================================
   MESSAGES
===================================== */

.np-message {
    max-width: 850px;

    margin:
        0 auto
        35px;

    padding:
        18px 22px;

    border-radius: 10px;

    font-size: 15px;

    line-height: 1.6;
}


.np-message-success {
    border:
        1px solid
        rgba(116, 174, 142, 0.24);

    background:
        rgba(59, 104, 78, 0.10);

    color: #b5cfbf;
}


.np-message-error {
    border:
        1px solid
        rgba(201, 102, 121, 0.25);

    background:
        rgba(123, 51, 65, 0.10);

    color: #ddb5bd;
}



/* =====================================
   APPLY LAYOUT
===================================== */

.np-apply-layout,
.np-form-layout {
    display: grid;

    grid-template-columns:
        1fr
        0.8fr;

    gap: 80px;

    align-items: start;
}


.np-apply-copy h2,
.np-form-intro h2,
.np-complete h2 {
    margin: 0;

    font-size:
        clamp(
            43px,
            4.5vw,
            65px
        );

    line-height: 1.03;

    letter-spacing: -0.045em;

    font-weight: 500;
}


.np-apply-copy h2 span,
.np-form-intro h2 span,
.np-complete h2 span {
    display: block;

    color: #c7afe0;
}



/* =====================================
   STEPS
===================================== */

.np-steps {
    margin-top: 43px;
}


.np-steps article {
    display: grid;

    grid-template-columns:
        42px
        1fr;

    gap: 18px;

    padding:
        24px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.055);
}


.np-steps article:last-child {
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.055);
}


.np-steps > article > span {
    color: #9668b7;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


.np-steps strong {
    color: #d7d0da;

    font-size: 19px;

    font-weight: 600;
}


.np-steps p {
    margin:
        8px 0
        0;

    color: #8f8693;

    font-size: 16px;

    line-height: 1.65;
}



/* =====================================
   EMAIL CARD / FORM
===================================== */

.np-email-card,
.np-form {
    padding:
        35px;

    border:
        1px solid
        rgba(155, 94, 201, 0.20);

    border-radius: 18px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(111, 58, 154, 0.12),
            transparent 42%
        ),
        rgba(255, 255, 255, 0.01);
}


.np-email-card h3 {
    margin:
        13px 0
        0;

    color: #e1dbe4;

    font-size: 28px;

    font-weight: 500;
}


.np-email-card > p {
    margin:
        13px 0
        28px;

    color: #928895;

    font-size: 16px;

    line-height: 1.65;
}


.np-field {
    margin-bottom: 22px;
}


.np-field label {
    display: block;

    margin-bottom: 8px;

    color: #bbb2bf;

    font-size: 13px;

    font-weight: 600;
}


.np-field input {
    width: 100%;

    min-height: 50px;

    padding:
        11px 13px;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 8px;

    outline: none;

    background:
        rgba(255, 255, 255, 0.025);

    color: #eee9f0;

    font: inherit;
}


.np-field input:focus {
    border-color:
        rgba(157, 99, 205, 0.55);

    box-shadow:
        0 0 0 3px
        rgba(129, 73, 172, 0.08);
}


.np-field input[readonly] {
    color: #a79dac;

    background:
        rgba(255, 255, 255, 0.012);
}


.np-field input[type="file"] {
    padding:
        14px;
}


.np-field small {
    display: block;

    margin-top: 7px;

    color: #716977;

    font-size: 12px;

    line-height: 1.5;
}


.np-submit {
    width: 100%;

    margin-top: 5px;

    border: 0;

    cursor: pointer;
}


.np-email-privacy {
    margin:
        17px 0
        0 !important;

    color: #6e6673 !important;

    font-size: 12px !important;

    text-align: center;
}



/* =====================================
   CHECKBOX
===================================== */

.np-checkbox {
    display: grid;

    grid-template-columns:
        18px
        1fr;

    gap: 12px;

    align-items: start;

    margin:
        8px 0
        25px;

    color: #8e8592;

    font-size: 13px;

    line-height: 1.6;

    cursor: pointer;
}


.np-checkbox input {
    width: 16px;
    height: 16px;

    margin-top: 3px;
}



/* =====================================
   SECURITY
===================================== */

.np-form-intro > p:not(.eyebrow) {
    max-width: 620px;

    margin:
        26px 0
        0;

    color: #938a97;

    font-size: 18px;

    line-height: 1.7;
}


.np-security-note {
    max-width: 580px;

    margin-top: 35px;

    padding:
        25px;

    border:
        1px solid
        rgba(148, 91, 191, 0.14);

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.008);
}


.np-security-note p {
    margin:
        9px 0
        0;

    color: #8c8390;

    font-size: 15px;

    line-height: 1.65;
}



/* =====================================
   COMPLETE
===================================== */

.np-complete {
    max-width: 780px;

    margin: 0 auto;

    text-align: center;
}


.np-complete > p {
    max-width: 620px;

    margin:
        25px auto
        0;

    color: #968c9a;

    font-size: 18px;

    line-height: 1.7;
}


.np-reference {
    max-width: 420px;

    margin:
        35px auto
        0;

    padding:
        25px;

    border:
        1px solid
        rgba(157, 96, 204, 0.22);

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.012);
}


.np-reference span {
    display: block;

    color: #8f659f;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.2px;
}


.np-reference strong {
    display: block;

    margin-top: 11px;

    color: #ddd5e0;

    font-size: 20px;

    letter-spacing: 0.04em;
}


.np-complete .np-muted {
    color: #746b79;

    font-size: 14px;
}



/* =====================================
   HONEYPOT
===================================== */

.np-honeypot {
    position: absolute !important;

    left: -10000px !important;

    top: auto !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    opacity: 0 !important;

    pointer-events: none !important;
}



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

@media (max-width: 850px) {

    .np-apply-layout,
    .np-form-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .np-email-card {
        max-width: 620px;
    }

}


@media (max-width: 600px) {

    .np-shell {
        width:
            calc(100% - 28px);
    }


    .np-hero {
        padding:
            125px 0
            80px;
    }


    .np-hero h1 {
        font-size: 48px;
    }


    .np-section {
        padding:
            90px 0
            105px;
    }


    .np-email-card,
    .np-form {
        padding:
            27px 21px;
    }


    .np-apply-copy h2,
    .np-form-intro h2,
    .np-complete h2 {
        font-size: 41px;
    }

}