:root {
    --access-navy: #173e55;
    --access-blue: #1675ad;
    --access-blue-dark: #0e5d8d;
    --access-yellow: #f4bd18;
    --access-muted: #607582;
    --access-border: #dce8ee;
    --access-surface: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

body.access-page {
    min-height: 100vh;
    color: var(--access-navy);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background:
        radial-gradient(circle at 12% 18%, rgba(48, 154, 214, .18), transparent 29rem),
        radial-gradient(circle at 88% 82%, rgba(38, 96, 186, .15), transparent 31rem),
        linear-gradient(145deg, #f7fbfd 0%, #edf7fb 48%, #f8fbff 100%);
}

.access-shell {
    position: relative;
    display: grid;
    min-height: 100vh;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
}

.access-shell::before,
.access-shell::after {
    position: absolute;
    z-index: 0;
    width: 24rem;
    height: 24rem;
    border: 1px solid rgba(23, 117, 173, .1);
    border-radius: 50%;
    content: "";
}

.access-shell::before {
    top: -15rem;
    right: -7rem;
}

.access-shell::after {
    bottom: -17rem;
    left: -9rem;
}

.access-header,
.access-main,
.access-footer {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

.access-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 34px 0;
}

.access-brand img {
    display: block;
    width: min(270px, 62vw);
    height: auto;
}

.access-environment {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--access-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.access-environment::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #46a875;
    box-shadow: 0 0 0 4px rgba(70, 168, 117, .12);
    content: "";
}

.access-main {
    display: grid;
    place-items: center;
    padding: 36px 0 72px;
}

.access-card {
    width: min(500px, 100%);
    padding: 48px;
    border: 1px solid rgba(220, 232, 238, .9);
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 70px rgba(20, 67, 91, .14);
    text-align: center;
}

.access-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    place-items: center;
    border-radius: 18px;
    color: var(--access-blue);
    background: #eaf5fb;
}

.access-icon svg {
    width: 30px;
    height: 30px;
}

.access-eyebrow {
    margin: 0 0 10px;
    color: var(--access-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.access-title {
    margin: 0;
    color: var(--access-navy);
    font-size: clamp(30px, 5vw, 40px);
    line-height: 1.12;
}

.access-description {
    max-width: 360px;
    margin: 16px auto 30px;
    color: var(--access-muted);
    font-size: 16px;
    line-height: 1.65;
}

.access-button {
    display: inline-flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    color: #fff;
    background: var(--access-blue);
    box-shadow: 0 10px 24px rgba(22, 117, 173, .22);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.access-button:hover,
.access-button:focus {
    color: #fff;
    background: var(--access-blue-dark);
    box-shadow: 0 13px 28px rgba(14, 93, 141, .27);
    outline: none;
    transform: translateY(-2px);
}

.access-button:focus-visible {
    box-shadow: 0 0 0 4px rgba(244, 189, 24, .36), 0 13px 28px rgba(14, 93, 141, .27);
}

.access-button svg {
    width: 20px;
    height: 20px;
}

.access-note {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin: 20px 0 0;
    color: #718590;
    font-size: 13px;
}

.access-note svg {
    width: 15px;
    height: 15px;
}

.access-footer {
    padding: 24px 0 30px;
    border-top: 1px solid rgba(23, 62, 85, .08);
    color: #718590;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 640px) {
    .access-header {
        justify-content: center;
        padding: 26px 0 18px;
    }

    .access-environment {
        display: none;
    }

    .access-main {
        align-items: start;
        padding: 28px 0 48px;
    }

    .access-card {
        padding: 36px 24px;
        border-radius: 20px;
    }

    .access-footer {
        padding-bottom: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .access-button {
        transition: none;
    }
}
