body {
    background: #e8e9ec;
}


.index-background {
    position: fixed;
    inset: 0;
    z-index: -2;

    background:
        radial-gradient(
            circle at 10% 8%,
            rgba(73, 96, 148, 0.88),
            transparent 36%
        ),
        radial-gradient(
            circle at 88% 15%,
            rgba(160, 137, 116, 0.72),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #20242d,
            #747c8c
        );
}


.index-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            180deg,
            rgba(11, 13, 18, 0.3) 0%,
            rgba(231, 233, 237, 0.75) 58%,
            #eceef1 100%
        );
}


.index-shell {
    display: flex;
    flex-direction: column;

    min-height: 100vh;
}


.index-main {
    display: grid;
    flex: 1;
    place-items: center;

    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 50px 0 32px;
}


.index-card {
    width: 100%;
    padding: clamp(26px, 5vw, 52px);
}


.index-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 38px;
}


.index-brand-subtitle {
    display: block;

    margin-top: 1px;

    color: var(--qwui-muted);

    font-size: 12px;
}


.index-hero {
    max-width: 800px;
}


.index-eyebrow {
    display: block;
    margin-bottom: 10px;

    color: var(--qwui-muted);

    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}


.index-hero h1 {
    margin: 0;

    font-size: clamp(44px, 8vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}


.index-hero p {
    max-width: 650px;
    margin: 21px 0 0;

    color: var(--qwui-muted);

    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.65;
}


.index-actions {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;

    margin-top: 42px;
}


.index-action-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    padding: 25px;

    border: 1px solid rgba(23, 25, 31, 0.08);
    border-radius: 22px;

    background: rgba(247, 248, 250, 0.8);
}


.index-organizer-card {
    background: rgba(31, 34, 41, 0.97);
    color: white;
}


.index-action-icon {
    display: grid;
    place-items: center;

    width: 50px;
    height: 50px;
    margin-bottom: 20px;

    border-radius: 16px;

    background: var(--qwui-dark);
    color: white;

    font-size: 23px;
}


.index-organizer-card .index-action-icon {
    background: rgba(255, 255, 255, 0.12);
}


.index-action-label {
    color: #777c85;

    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.index-organizer-card .index-action-label {
    color: rgba(255, 255, 255, 0.58);
}


.index-action-card h2 {
    margin: 5px 0 0;

    font-size: 27px;
    letter-spacing: -0.03em;
}


.index-action-card p {
    margin: 9px 0 0;

    color: var(--qwui-muted);

    line-height: 1.6;
}


.index-organizer-card p {
    color: rgba(255, 255, 255, 0.66);
}


.index-event-form {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 10px;

    margin-top: auto;
    padding-top: 24px;
}


.index-event-form button {
    white-space: nowrap;
}


.index-login-button {
    width: 100%;
    margin-top: auto;

    background: white;
    color: var(--qwui-dark);

    box-shadow:
        0 9px 22px rgba(0, 0, 0, 0.17);
}


.index-login-button:hover {
    background: #f5f5f6;
}


@media (max-width: 760px) {

    .index-main {
        width: min(100% - 20px, 1120px);
        padding-top: 18px;
    }


    .index-card {
        border-radius: 23px;
    }


    .index-actions {
        grid-template-columns: 1fr;
    }


    .index-event-form {
        grid-template-columns: 1fr;
    }


    .index-event-form button {
        width: 100%;
    }

}


@media (max-width: 430px) {

    .index-card {
        padding: 22px;
    }


    .index-hero h1 {
        font-size: 43px;
    }


    .index-action-card {
        padding: 21px;
    }

}
