:root {
    --navy: #020913;
    --navy-soft: #071424;
    --blue: #3384f3;

    --canvas: #eef0f2;
    --surface: #ffffff;

    --text: #15202e;
    --text-soft: #657181;
    --border: #dce1e6;

    --shadow:
        0 12px 34px rgba(11, 25, 43, .08);
}


* {
    box-sizing: border-box;
}


html,
body {
    margin: 0;

    min-height: 100%;

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: var(--canvas);

    color: var(--text);
}


body {
    min-height: 100vh;
}


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

    display: flex;

    flex-direction: column;
}


.site-header {
    height: 76px;

    display: flex;

    align-items: center;

    padding: 0 7vw;

    background: var(--navy);

    border-bottom:
        1px solid rgba(255, 255, 255, .06);
}


.brand {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: white;

    text-decoration: none;
}


.brand-mark {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background:
        linear-gradient(
            145deg,
            #1371de,
            #58b8ff
        );

    color: white;

    font-size: 19px;

    font-weight: 900;

    box-shadow:
        0 7px 20px rgba(27, 129, 237, .24);
}


.brand-copy {
    display: flex;

    flex-direction: column;

    line-height: 1;
}


.brand-copy strong {
    font-size: 18px;

    letter-spacing: -.04em;
}


.brand-byte {
    color: var(--blue);
}


.brand-copy small {
    margin-top: 5px;

    color: #7e93ac;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .28em;
}


main {
    width: min(1120px, 86vw);

    margin: 0 auto;

    flex: 1;
}


.hero {
    max-width: 780px;

    padding: 86px 0 44px;
}


.hero-badge {
    display: inline-flex;

    padding: 5px 9px;

    border:
        1px solid rgba(51, 132, 243, .22);

    border-radius: 999px;

    background:
        rgba(51, 132, 243, .07);

    color: #236fcf;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.hero h1 {
    margin: 18px 0 15px;

    font-size: clamp(36px, 5vw, 60px);

    line-height: 1.02;

    letter-spacing: -.055em;
}


.hero p {
    max-width: 690px;

    margin: 0;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.65;
}


.status-card {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px 20px;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: 14px;

    box-shadow: var(--shadow);
}


.status-icon {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    flex: 0 0 38px;

    border-radius: 50%;

    background:
        rgba(30, 151, 99, .1);

    color: #218b60;

    font-weight: 900;
}


.status-card strong {
    font-size: 13px;
}


.status-card p {
    margin: 3px 0 0;

    color: var(--text-soft);

    font-size: 11px;
}


.info-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;

    padding: 22px 0 80px;
}


.info-card {
    min-height: 190px;

    padding: 21px;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: 14px;

    box-shadow: var(--shadow);
}


.info-number {
    color: var(--blue);

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .12em;
}


.info-card h2 {
    margin: 28px 0 8px;

    font-size: 17px;
}


.info-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: 12px;

    line-height: 1.6;
}


.site-footer {
    min-height: 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 0 7vw;

    background: var(--navy);

    color: #73869c;

    font-size: 9px;
}


/* ============================================================
   ID INVITATION PAGE
   ============================================================ */

.identity-shell {
    min-height: calc(100vh - 136px);

    display: grid;

    place-items: center;

    padding: 60px 0;
}


.identity-card {
    width: min(520px, 100%);

    padding: 38px;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: 18px;

    box-shadow:
        0 22px 60px rgba(11, 25, 43, .11);

    text-align: center;
}


.identity-icon {
    width: 54px;
    height: 54px;

    display: grid;

    place-items: center;

    margin: 0 auto 18px;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            #1470dc,
            #5bbcff
        );

    color: white;

    font-size: 25px;

    font-weight: 900;
}


.identity-card h1 {
    margin: 14px 0 9px;

    font-size: 28px;

    letter-spacing: -.035em;
}


.identity-intro {
    margin: 0;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.55;
}


.invite-status {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    margin: 27px 0;

    border: 1px solid var(--border);

    border-radius: 11px;

    overflow: hidden;
}


.invite-status div {
    padding: 13px 7px;

    background: #f7f8f9;

    border-right:
        1px solid var(--border);
}


.invite-status div:last-child {
    border-right: none;
}


.invite-status span,
.invite-status strong {
    display: block;
}


.invite-status span {
    color: var(--text-soft);

    font-size: 8px;

    font-weight: 750;

    letter-spacing: .07em;

    text-transform: uppercase;
}


.invite-status strong {
    margin-top: 5px;

    font-size: 10px;
}


.primary-button {
    width: 100%;

    min-height: 44px;

    border: none;

    border-radius: 10px;

    background: var(--blue);

    color: white;

    font-size: 12px;

    font-weight: 750;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(51, 132, 243, .22);
}


.security-note {
    margin: 17px 0 0;

    color: #8994a1;

    font-size: 9px;

    line-height: 1.5;
}


@media (max-width: 750px) {
    main {
        width: min(92vw, 1120px);
    }

    .hero {
        padding-top: 55px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .invite-status {
        grid-template-columns: 1fr;
    }

    .invite-status div {
        border-right: none;

        border-bottom:
            1px solid var(--border);
    }

    .invite-status div:last-child {
        border-bottom: none;
    }

    .site-footer {
        align-items: flex-start;

        flex-direction: column;

        justify-content: center;

        padding-top: 15px;
        padding-bottom: 15px;
    }
}


/* ============================================================
   INVITATION RECIPIENT
   ============================================================ */

.invite-recipient {
    margin: 24px 0 0;

    padding: 14px 16px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: #f7f8f9;
}


.invite-recipient span,
.invite-recipient strong,
.invite-recipient small {
    display: block;
}


.invite-recipient span {
    color: var(--text-soft);

    font-size: 8px;

    font-weight: 750;

    letter-spacing: .07em;

    text-transform: uppercase;
}


.invite-recipient strong {
    margin-top: 5px;

    font-size: 13px;
}


.invite-recipient small {
    margin-top: 3px;

    color: var(--text-soft);

    font-size: 10px;
}
