.landing-page {
    max-width: 800px;
    margin: 0 auto;
}

.landing-header {
    text-align: center;
}

.landing-logo {
    width: 96px;
    height: 96px;

    margin: 0 auto 1rem;

    background-image: var(--logo-url);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.landing-header h1 {
    margin-bottom: 0.5rem;
}

.landing-header p {
    color: var(--text-muted);
    line-height: 1.6;
}

.landing-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.landing-item {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    transition:
        transform 0.12s ease,
        border-color 0.12s ease;
}

.landing-item h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.landing-item p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.landing-footer {
    margin-top: 3rem;
    text-align: center;
}

.landing-footer p {
    color: var(--text-muted);
    line-height: 1.6;
}

.landing-cta {
    margin: 1.5rem 0 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.cta-primary {
    padding: 0.6rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
}
