:root {
    --night: #071528;
    --ink: #101827;
    --muted: #667085;
    --cyan: #00c2d7;
    --blue: #1d4ed8;
    --line: #dce5ef;
    --soft: #f4f8fb;
}

body {
    color: var(--ink);
    background: #fff;
    letter-spacing: 0;
}

.site-nav,
.site-footer {
    background: var(--night);
}

.site-footer,
.site-footer a {
    color: #d7e0ea;
}

.brand-logo {
    display: block;
    width: 168px;
    max-width: 42vw;
    height: 44px;
    object-fit: contain;
    object-position: left center;
}

.sidebar-logo {
    display: block;
    width: 176px;
    max-width: 100%;
    height: 58px;
    object-fit: contain;
    object-position: left center;
}

.btn-cyan {
    background: var(--cyan);
    color: var(--night);
    border: 0;
    font-weight: 700;
}

.btn-cyan:hover {
    background: #22d3ee;
    color: var(--night);
}

.hero {
    min-height: 640px;
    background:
        linear-gradient(90deg, rgba(7, 21, 40, .96), rgba(7, 21, 40, .75)),
        url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(2.4rem, 4vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
}

.hero p {
    max-width: 680px;
    color: #d7e0ea;
    font-size: 1.18rem;
}

.section {
    padding: 78px 0;
}

.section-soft {
    background: var(--soft);
}

.eyebrow {
    color: var(--blue);
    font-weight: 800;
    text-transform: uppercase;
    font-size: .78rem;
}

.panel,
.feature-card,
.pricing-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.feature-card,
.pricing-card {
    height: 100%;
    padding: 24px;
}

.pricing-card.highlight {
    border-color: var(--cyan);
    box-shadow: 0 18px 55px rgba(7, 21, 40, .12);
}

.compatibility-table {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.compatibility-table table {
    min-width: 760px;
}

.compatibility-table thead th {
    background: linear-gradient(90deg, rgba(29, 78, 216, .10), rgba(0, 194, 215, .10));
    color: var(--night);
    border-bottom-color: var(--line);
}

.compatibility-table tbody th {
    color: var(--night);
}

.compatibility-table td,
.compatibility-table th {
    padding: 16px;
}

.code-pill {
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 10px 12px;
    color: #f8fbff;
    display: inline-block;
    margin: 4px;
}

.app-shell {
    min-height: 100vh;
    background: var(--soft);
}

.sidebar {
    background: var(--night);
    color: #d7e0ea;
}

.sidebar a {
    color: #d7e0ea;
    text-decoration: none;
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
}

.sidebar a:hover {
    background: rgba(255,255,255,.08);
}
