/* Global hub (stavbahub.com/) — not the Slovak homepage. */
:root {
    --gh-blue: #2563eb;
    --gh-blue-dark: #1d4ed8;
    --gh-text: #1e293b;
    --gh-muted: #475569;
    --gh-border: #e2e8f0;
    --gh-bg: #f8fafc;
    --gh-card: #ffffff;
    --gh-radius: 1rem;
    --gh-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: var(--gh-font);
    color: var(--gh-text);
    background: var(--gh-bg);
    line-height: 1.6;
}

.gh-header {
    padding: 1.25rem 1.5rem;
}

.gh-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gh-logo {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    object-fit: cover;
}

.gh-wordmark {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.gh-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.gh-kicker {
    color: var(--gh-blue);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.gh-lead {
    color: var(--gh-muted);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.gh-markets {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gh-markets {
        grid-template-columns: 1fr 1fr;
    }
}

.gh-card {
    background: var(--gh-card);
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius);
    padding: 1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.gh-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.gh-native {
    color: var(--gh-muted);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.gh-status {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.gh-status--live {
    color: #047857;
}

.gh-status--soon {
    color: #b45309;
}

.gh-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background: var(--gh-blue);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.gh-cta:hover {
    background: var(--gh-blue-dark);
}

.gh-cta--disabled {
    background: #cbd5e1;
    color: #475569;
    cursor: not-allowed;
}

.gh-footer {
    padding: 1.5rem;
    text-align: center;
    color: var(--gh-muted);
    font-size: 0.875rem;
}
