/* =========================================
   Helix Health Age Gate - Style
   Matched to helixhealthaminotherapy.com
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body.axiom-lock-scroll {
    overflow: hidden !important;
}

#axiomAgeGate {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    background: #0a1628;
    overflow: hidden;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background gradient overlay matching Helix Health dark blue theme */
.axiom-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 168, 204, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 100, 160, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(0, 50, 100, 0.2) 0%, transparent 55%);
    pointer-events: none;
}

.axiom-age-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    padding: 20px;
    text-align: center;
}

.axiom-logo-wrap {
    margin-bottom: 24px;
}

.axiom-logo {
    max-width: 180px;
    height: auto;
    /* White logo version for dark background */
    filter: brightness(0) invert(1);
}

.axiom-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 168, 204, 0.25);
    border-radius: 16px;
    padding: 36px 38px;
    text-align: left;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.axiom-card h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.axiom-intro {
    margin: 0 0 22px;
    color: rgba(180, 200, 220, 0.85);
    font-size: 13.5px;
    line-height: 1.65;
}

.axiom-check-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 168, 204, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(200, 220, 235, 0.9);
    font-size: 13.5px;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.axiom-check-box:hover {
    border-color: rgba(0, 168, 204, 0.5);
    background: rgba(0, 168, 204, 0.06);
}

.axiom-check-box input {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    cursor: pointer;
    accent-color: #00a8cc;
    flex-shrink: 0;
}

.axiom-check-box strong {
    color: #ffffff;
    font-weight: 700;
}

/* Enter button — disabled state */
.axiom-enter-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: not-allowed;
    transition: all 0.25s ease;
    margin: 14px 0 22px;
    letter-spacing: 0.1px;
}

.axiom-enter-btn span {
    margin-left: 8px;
    font-size: 18px;
}

/* Enter button — active state: Helix Health teal/cyan accent */
.axiom-enter-btn.active {
    background: linear-gradient(135deg, #00a8cc 0%, #0077aa 100%);
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 168, 204, 0.4);
}

.axiom-enter-btn.active:hover {
    background: linear-gradient(135deg, #00bbdd 0%, #0088bb 100%);
    transform: translateY(-1px);
    box-shadow: 0 12px 36px rgba(0, 168, 204, 0.5);
}

.axiom-disclaimer {
    margin: 0;
    color: rgba(150, 175, 200, 0.7);
    font-size: 11px;
    line-height: 1.7;
}

.axiom-disclaimer a {
    color: #00a8cc;
    font-weight: 600;
    text-decoration: none;
}

.axiom-disclaimer a:hover {
    color: #33ccee;
    text-decoration: underline;
}

.axiom-exit-link {
    display: inline-block;
    margin-top: 24px;
    color: rgba(140, 165, 190, 0.65);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.axiom-exit-link:hover {
    color: rgba(200, 220, 235, 0.9);
}

/* Hide animation */
#axiomAgeGate.axiom-hide {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .axiom-age-content {
        max-width: 460px;
        padding: 18px;
    }

    .axiom-logo {
        max-width: 150px;
    }

    .axiom-card {
        padding: 28px 24px;
    }

    .axiom-card h2 {
        font-size: 24px;
    }

    .axiom-intro,
    .axiom-check-box {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    #axiomAgeGate {
        overflow-y: auto;
    }

    .axiom-age-gate {
        align-items: flex-start;
        padding-top: 35px;
    }

    .axiom-card {
        border-radius: 14px;
        padding: 24px 18px;
    }

    .axiom-card h2 {
        font-size: 22px;
    }

    .axiom-enter-btn {
        height: 46px;
        font-size: 14px;
    }
}
