@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
    --lp-bg:           #162032;
    --lp-bg-soft:      #1e2a3f;
    --lp-surface:      rgba(255, 255, 255, 0.07);
    --lp-border:       rgba(148, 163, 184, 0.24);
    --lp-text:         #f8fafc;
    --lp-text-muted:   #a8b4c7;
    --lp-accent:       #4b8df7;
    --lp-accent-soft:  rgba(75, 141, 247, 0.18);
    --lp-accent-glow:  rgba(75, 141, 247, 0.28);
    --lp-violet:       #7280f0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Source Sans 3', system-ui, sans-serif;
    color: var(--lp-text);
    background: var(--lp-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

.page::before,
.page::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
}

.page::before {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, var(--lp-accent-glow), transparent 70%);
}

.page::after {
    width: 360px;
    height: 360px;
    bottom: -100px;
    left: -60px;
    background: radial-gradient(circle, rgba(114, 128, 240, 0.18), transparent 70%);
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    pointer-events: none;
    z-index: -1;
}

.site-header,
.site-footer {
    padding: 1.25rem 1.5rem;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.85rem;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-violet));
    box-shadow: 0 10px 30px rgba(75, 141, 247, 0.22);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.04em;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    background: var(--lp-surface);
    color: var(--lp-text-muted);
    font-size: 0.85rem;
    white-space: nowrap;
}

.status-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.hero {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 2rem 1.5rem 3rem;
}

.hero-card {
    width: min(720px, 100%);
    padding: clamp(2rem, 5vw, 3rem);
    border: 1px solid var(--lp-border);
    border-radius: 1.5rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
        var(--lp-bg-soft);
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--lp-accent-soft);
    color: #c7ddfc;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero h1 span {
    background: linear-gradient(90deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    margin: 0;
    max-width: 38rem;
    color: var(--lp-text-muted);
    font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.meta-chip {
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--lp-border);
    border-radius: 0.75rem;
    background: rgba(30, 41, 59, 0.5);
    color: var(--lp-text-muted);
    font-size: 0.92rem;
}

.meta-chip strong {
    color: var(--lp-text);
    font-weight: 600;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-top: 1px solid var(--lp-border);
    color: var(--lp-text-muted);
    font-size: 0.9rem;
}

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

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

@media (max-width: 640px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-card {
        padding: 1.75rem;
    }
}
