:root {
    --green-primary: #42b883;
    --green-dark: #3a5a70;
    --text-main: #e5e7eb;
    --text-muted: #b8c4d2;
    --surface: #0f1724;
    --surface-muted: #0b1220;
    --border: rgba(255, 255, 255, 0.08);
    --footer-bg: #0a101c;
    --footer-accent: linear-gradient(120deg, #42b883, #3fb0c9, #4ad1f5);
    --footer-text: #e5e7eb;
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    --radius: 14px;
    --max-width: 1100px;
    --spacing: 1.25rem;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background: radial-gradient(circle at 20% 20%, rgba(66, 184, 131, 0.08), transparent 35%), radial-gradient(circle at 80% 10%, rgba(74, 209, 245, 0.06), transparent 32%), var(--surface-muted);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(100% - 2.5rem, var(--max-width));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    background: rgba(11, 18, 32, 0.82);
    border-bottom: 1px solid var(--border);
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.brand {
    font-weight: 700;
    letter-spacing: 0.4px;
    background: var(--footer-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #1c2a3a, #3a5a70);
    color: #e8f3ff;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-pill-large {
    padding: 0.6rem 1.1rem;
    font-weight: 600;
}

.hero {
    padding: 4.5rem 0 3.5rem;
    background: linear-gradient(145deg, rgba(66, 184, 131, 0.12), rgba(63, 176, 201, 0.12), rgba(10, 16, 28, 0.9));
    border-bottom: 1px solid var(--border);
}

.hero-content {
    display: grid;
    gap: 1rem;
    max-width: 780px;
}

.eyebrow {
    color: #a5ffdf;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin: 0;
}

h1,
h2,
h3 {
    margin: 0.2rem 0;
    color: var(--text-main);
    letter-spacing: -0.4px;
}

.hero h1 {
    background: var(--footer-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h1 {
    font-size: clamp(2.4rem, 4vw, 3.3rem);
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.1rem);
}

h3 {
    font-size: 1.2rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 0;
}

.lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 0.3rem 0 0;
}

.section {
    padding: 3rem 0;
    background: var(--surface);
}

.section+.section {
    border-top: 1px solid var(--border);
}

.muted {
    background: var(--surface-muted);
}

.section-header {
    display: grid;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.split {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 2rem;
    align-items: start;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--spacing);
    box-shadow: var(--shadow);
}

.note {
    border-left: 4px solid var(--green-primary);
}

.grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.site-footer {
    padding: 2.5rem 0 3rem;
    background: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(66, 184, 131, 0.14), transparent 38%), radial-gradient(circle at 80% 10%, rgba(74, 209, 245, 0.12), transparent 34%), radial-gradient(circle at 50% 80%, rgba(63, 176, 201, 0.12), transparent 42%);
    pointer-events: none;
}

.footer-inner {
    position: relative;
    display: grid;
    gap: 0.35rem;
    justify-items: center;
    text-align: center;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    background: var(--footer-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-tagline {
    margin: 0.2rem 0;
    color: rgba(229, 231, 235, 0.88);
}

.footer-meta {
    margin: 0.2rem 0;
    font-size: 0.95rem;
    color: rgba(229, 231, 235, 0.7);
}

p {
    margin: 0.4rem 0 0.8rem;
}

.contact-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, rgba(66, 184, 131, 0.08), rgba(63, 176, 201, 0.06));
}

.contact-box {
    text-align: center;
    display: grid;
    gap: 0.6rem;
}

.contact-box h2 {
    color: var(--text-main);
}

.contact-box p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.contact-link {
    color: #5fe3d0;
    font-weight: 600;
    transition: color 160ms ease;
}

.contact-link:hover {
    color: #4ad1f5;
}

a {
    color: #8be0c3;
    text-decoration: none;
}

a:hover {
    color: #4ad1f5;
}

@media (max-width: 768px) {
    .split {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 3.5rem 0 2.5rem;
    }
    .header-inner {
        padding: 0.85rem 0;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .card {
        transition: transform 160ms ease, box-shadow 160ms ease;
    }
    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 55px rgba(17, 24, 39, 0.12);
    }
}