.homepage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.homepage__header {
    padding: var(--size-4) var(--size-6);
}

.homepage__logo {
    & img {
        max-height: 2.5rem;
    }
}

.homepage__main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--size-8) var(--size-4);
    gap: var(--size-8);
    max-width: 64rem;
    margin: 0 auto;
    width: 100%;
}

.homepage__hero {
    max-width: 36rem;
}

.homepage__hero h1 {
    font-size: var(--text-3xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--size-3);
}

.homepage__signin {
    max-width: 24rem;
    padding: var(--size-6);

    & h2 {
        margin-bottom: var(--size-4);
    }

    & .alert {
        margin-bottom: var(--size-3);
    }
}

.homepage__access-note {
    margin-top: var(--size-4);
    font-size: var(--text-sm);
    color: var(--text-subtle);
    text-align: center;

    & a {
        color: var(--text);
        font-weight: 600;
    }

    & i {
        margin-right: var(--size-1);
    }
}

.homepage__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: var(--size-4);
    width: 100%;
}

.homepage__feature {
    padding: var(--size-5);

    & h3 {
        margin-bottom: var(--size-1);
    }

    & p {
        color: var(--text-subtle);
        font-size: var(--text-sm);
        line-height: 1.5;
    }
}

.homepage__feature-icon {
    font-size: var(--text-xl);
    margin-bottom: var(--size-3);
}
