/* =========================================================
   ovniTEK Personalized Report Checkout
   ========================================================= */


/* ---------------------------------------------------------
   Report Page
   --------------------------------------------------------- */

.report-page {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(165, 255, 238, 0.09),
            transparent 45%),
        #050505;
}

.report-main {
    flex: 1;

    padding: 45px 0 70px;
}

.report-panel {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;

    background:
        linear-gradient(145deg,
            rgba(165, 255, 238, 0.06),
            rgba(255, 255, 255, 0.018));

    border: 1px solid rgba(165, 255, 238, 0.2);
    border-radius: 10px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}


/* ---------------------------------------------------------
   Intro
   --------------------------------------------------------- */

.report-intro {
    max-width: 720px;
    margin: 0 auto 35px;

    text-align: center;
}

.report-intro h1 {
    margin-bottom: 18px;

    color: white;

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
}

.report-intro p {
    margin: 0 auto;

    color: #d0d0d0;

    font-size: 17px;
}

.report-intro .report-price {
    margin-top: 18px;

    color: #A5FFEE;
    font-size: 19px;
    font-weight: bold;
}


/* ---------------------------------------------------------
   Report Form
   --------------------------------------------------------- */

.report-order-form {
    max-width: 760px;
    margin: 0 auto;
}

.report-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.report-field label {
    display: block;

    margin-bottom: 8px;

    color: white;

    font-size: 15px;
    font-weight: 500;
}

.report-field label span {
    color: #999;
    font-weight: normal;
}

.report-field input {
    width: 100%;
    padding: 12px 14px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(165, 255, 238, 0.25);
    border-radius: 4px;

    color: white;

    font: inherit;
    font-size: 16px;

    outline: none;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.report-field input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: #A5FFEE;
}

.report-honeypot {
    position: absolute;
    left: -9999px;
}

.report-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin: 26px 0 15px;

    color: #d0d0d0;

    font-size: 14px;
    line-height: 1.6;
}

.report-consent input {
    flex: 0 0 auto;

    width: 17px;
    height: 17px;

    margin-top: 3px;
}

.report-consent a {
    color: #A5FFEE;
}

.report-consent a:hover {
    color: white;
    text-decoration: underline;
}

.report-security-note {
    margin: 0 0 25px;

    color: #888;

    font-size: 13px;
    line-height: 1.6;
}

.report-order-form .primary-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}


/* ---------------------------------------------------------
   Checkout and Status
   --------------------------------------------------------- */

.report-checkout {
    max-width: 500px;
    margin: 35px auto 0;
    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.report-checkout h2 {
    margin-bottom: 12px;

    color: white;

    font-size: 26px;
}

.report-checkout p {
    margin-bottom: 20px;

    color: #d0d0d0;
}

.report-download {
    margin-top: 8px;
}

.report-download[aria-disabled="true"] {
    background-color: #3b3b3b;
    border-color: #555;
    color: #999 !important;
    cursor: not-allowed;
}

.report-download[aria-disabled="true"]:hover {
    background-color: #3b3b3b;
    border-color: #555;
    color: #999 !important;
}

.report-email-retry {
    margin-top: 12px;
}

.report-account-save {
    margin-top: 12px;
}

.report-account-save[hidden] {
    display: none !important;
}

.report-email-retry[hidden] {
    display: none !important;
}

.report-status {
    max-width: 760px;
    margin: 25px auto 0;
    padding: 15px 18px;

    background: rgba(165, 255, 238, 0.06);
    border: 1px solid rgba(165, 255, 238, 0.25);
    border-radius: 5px;

    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.report-status-error {
    background: rgba(255, 77, 77, 0.08);
    border-color: rgba(255, 77, 77, 0.3);
    color: #ffb5b5;
}

.report-status a {
    color: #A5FFEE;
}


/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

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

    .report-main {
        padding: 25px 15px 50px;
    }

    .report-panel {
        padding: 30px 22px;
    }

    .report-intro {
        margin-bottom: 30px;
    }

    .report-intro h1 {
        font-size: 32px;
    }

    .report-intro p {
        font-size: 16px;
    }

    .report-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .report-field input {
        font-size: 15px;
    }

    .report-order-form .primary-button {
        width: 100%;
    }

    .report-download,
    .report-account-save,
    .report-email-retry {
        width: 100%;
    }
}
