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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0d2137 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #e2e8f0;
}

.page {
    max-width: 720px;
    width: 100%;
}

/* Header / Hero */
.hero {
    text-align: center;
    margin-bottom: 32px;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 16px;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.hero .tagline {
    font-size: 16px;
    color: #94a3b8;
    font-weight: 400;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 16px;
}

.card h2 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #3b82f6;
    margin-bottom: 14px;
}

.card p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 12px;
}

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

.card a {
    color: #93c5fd;
    text-decoration: none;
}

.card a:hover {
    color: #bfdbfe;
    text-decoration: underline;
}

/* Contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 18px 20px;
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #64748b;
    margin-bottom: 6px;
}

.contact-value a {
    color: #93c5fd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.contact-value a:hover {
    color: #bfdbfe;
    text-decoration: underline;
}

/* Links row */
.links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    color: #93c5fd;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pill:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    color: #bfdbfe;
}

.pill svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 32px;
    padding: 0 20px;
}

.footer p {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
}

.footer a {
    color: #64748b;
    text-decoration: none;
}

.footer a:hover {
    color: #93c5fd;
}

/* Responsive */
@media (max-width: 560px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 26px;
    }
    .card {
        padding: 22px 20px;
    }
}
