:root {
    --brand-primary: #556b98;
    --brand-secondary: #e8edf7;
    --brand-accent: #000000;
    --brand-surface: #090f1a;
    --brand-text: #e8edf7;
    --brand-radius: 12px;
    --brand-font-sans:
        "DM Sans", system-ui, sans-serif, ui-sans-serif, system-ui,
        -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --brand-font-serif:
        "Red Hat Mono", system-ui, monospace, ui-serif, Georgia,
        "Times New Roman", Times, serif;
    --brand-font-mono:
        "Overpass Mono", ui-monospace, monospace, ui-monospace, SFMono-Regular,
        Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

body {
    margin: 0;
    font-family: var(--brand-font-sans);
    color: var(--brand-accent);
    background: var(--brand-secondary);
}

.shell {
    max-width: 56rem;
    margin: 0 auto;
    padding: 2rem 1.25rem 4rem;
}

.hero {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.hero img {
    max-width: min(100%, 280px);
    height: auto;
}

.hero p {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 48rem;
    color: var(--brand-accent);
}

.hero p:last-child {
    margin-bottom: 0;
}

.grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
}

.tile {
    color: var(--brand-text);
    background: var(--brand-surface);
    display: block;
    text-decoration: none;
    border-radius: var(--brand-radius);
    padding: 1.1rem 1.2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(232, 237, 247, 0.08);
    transition:
        box-shadow 0.15s ease,
        transform 0.15s ease;
}

.tile:hover:not(.tile--disabled) {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);
}

.tile--disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.tile h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.tile p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(232, 237, 247, 0.72);
    line-height: 1.45;
}

.badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    margin-bottom: 0.45rem;
}

.badge--live {
    background: rgba(85, 107, 152, 0.35);
    color: var(--brand-secondary);
}

.badge--partial {
    background: rgba(232, 237, 247, 0.12);
    color: rgba(232, 237, 247, 0.9);
}

.badge--soon {
    background: rgba(15, 23, 42, 0.45);
    color: rgba(232, 237, 247, 0.5);
}

footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(232, 237, 247, 0.12);
    font-size: 0.9rem;
    color: rgba(232, 237, 247, 0.55);
}

footer p {
    margin: 0 0 0.55rem;
}

footer p:last-child {
    margin-bottom: 0;
}

footer a {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
