:root {
    --bg: #ffffff;
    --text-primary: #050505;
    --text-muted: rgba(5, 5, 5, 0.65);
    --accent: #050505;
    --accent-soft: rgba(5, 5, 5, 0.08);
    --card-bg: #ffffff;
    --border: rgba(5, 5, 5, 0.12);
    --glass: rgba(255, 255, 255, 0.95);
    --shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', 'Raleway', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--bg);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', 'Quicksand', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.background {
    position: fixed;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160"%3E%3Cg fill="none" stroke="%23d1d1d1" stroke-opacity="0.5"%3E%3Cpath d="M80 0v160M0 80h160"/%3E%3C/g%3E%3C/svg%3E') center / 160px,
        linear-gradient(125deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    z-index: -2;
}

.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 24px 32px;
    position: relative;
}

.page::after {
    content: '';
    position: absolute;
    top: 80px;
    left: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05), transparent);
    filter: blur(10px);
    z-index: -1;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--glass);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.site-footer {
    margin-top: 48px;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 12px 0;
    text-align: left;
}

.site-footer p {
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.logo img {
    width: 160px;
    height: auto;
}

.status-pill {
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 32px;
    margin-top: 32px;
    align-items: start;
}

.hero-copy {
    background: var(--card-bg);
    border-radius: 32px;
    padding: 48px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0 0 16px;
}

h1 {
    font-size: clamp(2.5rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin: 0 0 20px;
}

.subtitle {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.info-card {
    position: sticky;
    top: 40px;
    border-radius: 32px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.info-title {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.info-card ul {
    padding-left: 18px;
    line-height: 1.7;
    color: var(--text-muted);
}

.info-card li::marker {
    color: var(--accent);
}

.contact-card {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-card a {
    color: var(--text-primary);
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--accent);
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-primary);
}

.contact-pill svg {
    width: 22px;
    height: 22px;
    fill: var(--text-primary);
}

.contact-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.contact-pill:hover svg {
    fill: var(--accent);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .content {
        grid-template-columns: 1fr;
    }

    .info-card {
        position: static;
    }
}

@media (max-width: 600px) {
    .hero-copy,
    .info-card {
        padding: 32px;
        border-radius: 24px;
    }

    .site-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .site-footer {
        margin-top: 32px;
        padding: 12px 0;
    }
}
