/* Get Access landing page — matches reference: tight top stack + floating graphic */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

.get-access-page {
    min-height: 100vh;
    min-height: 100dvh;
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.get-access {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding:
        max(48px, env(safe-area-inset-top, 0px) + 36px)
        24px
        max(24px, env(safe-area-inset-bottom, 0px) + 16px);
}

.get-access-content {
    width: 100%;
    max-width: 390px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.get-access-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: #ffffff;
    margin: 0 0 20px;
    max-width: 320px;
}

.get-access-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2c2c2c;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 999px;
    margin: 0 0 28px;
    border: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.get-access-btn:hover,
.get-access-btn:focus-visible {
    background-color: #3a3a3a;
}

.get-access-btn:active {
    transform: scale(0.98);
}

.get-access-visual {
    width: min(92vw, 360px);
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.get-access-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: transparent;
    user-select: none;
    -webkit-user-drag: none;
}

@media (max-height: 700px) {
    .get-access {
        padding-top: max(36px, env(safe-area-inset-top, 0px) + 24px);
    }

    .get-access-title {
        font-size: 1.55rem;
        margin-bottom: 16px;
    }

    .get-access-btn {
        margin-bottom: 20px;
        padding: 10px 24px;
    }

    .get-access-visual {
        width: min(84vw, 300px);
    }
}

@media (min-width: 480px) {
    .get-access-title {
        font-size: 1.95rem;
        max-width: 380px;
    }

    .get-access-content {
        max-width: 440px;
    }

    .get-access-visual {
        width: min(80vw, 400px);
    }
}

@media (min-width: 768px) {
    .get-access {
        padding-top: 64px;
    }

    .get-access-content {
        max-width: 520px;
    }

    .get-access-title {
        font-size: 2.2rem;
        max-width: 440px;
        margin-bottom: 24px;
    }

    .get-access-btn {
        font-size: 1rem;
        padding: 13px 32px;
        margin-bottom: 36px;
    }

    .get-access-visual {
        width: 440px;
    }
}
