:root {
    --bg: #000000;
    --panel: #060b12;
    --line: rgba(102, 242, 255, 0.18);
    --text: #f8fbff;
    --muted: rgba(238, 247, 255, 0.72);
    --cyan: #66f2ff;
    --font-title: 'Satoshi', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: #000;
    font-family: var(--font-body);
}

a { color: inherit; }

.static-nav {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(102, 242, 255, 0.1);
}

.static-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 800;
}

.static-brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.static-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
    color: rgba(238, 247, 255, 0.66);
    font-size: 0.92rem;
}

.static-nav-links a { text-decoration: none; }
.static-nav-links a:hover { color: var(--cyan); }

.static-shell {
    width: min(960px, calc(100% - 32px));
    margin: 56px auto 72px;
}

.static-eyebrow {
    display: inline-flex;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    margin: 14px 0 14px;
    color: #fff;
    font-family: var(--font-title);
    font-size: clamp(2.35rem, 5.6vw, 4.6rem);
    font-weight: 750;
    line-height: 1.04;
    letter-spacing: 0;
}

.gradient-text {
    color: #fff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: #fff;
}

.static-intro {
    max-width: 780px;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.72;
}

.static-card {
    margin-top: 22px;
    padding: clamp(22px, 4vw, 36px);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 16px 44px rgba(0, 0, 0, 0.28);
}

.static-card h2 {
    margin: 0 0 12px;
    color: #fff;
    font-family: var(--font-title);
    font-size: clamp(1.28rem, 2vw, 1.65rem);
    line-height: 1.2;
}

.static-card h3 {
    margin: 28px 0 8px;
    color: #fff;
    font-family: var(--font-title);
    font-size: 1.08rem;
    line-height: 1.35;
}

.static-card h3:first-child { margin-top: 0; }

.static-card p,
.static-card li {
    color: rgba(238, 247, 255, 0.76);
    line-height: 1.72;
}

.static-card p { margin: 0 0 14px; }
.static-card p:last-child { margin-bottom: 0; }
.static-card ul { margin: 10px 0 0; padding-left: 20px; }
.static-card li + li { margin-top: 7px; }
.static-card a { color: var(--cyan); }
.static-card a:hover { color: #fff; }

.static-footer {
    width: min(960px, calc(100% - 32px));
    margin: 0 auto 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(102, 242, 255, 0.1);
    color: rgba(238, 247, 255, 0.52);
    font-size: 0.88rem;
    line-height: 1.65;
}

.static-footer p { margin: 3px 0; }
.static-footer a { color: rgba(238, 247, 255, 0.76); text-decoration: none; }
.static-footer a:hover { color: var(--cyan); }

@media (max-width: 760px) {
    .static-nav { align-items: flex-start; flex-direction: column; }
    .static-nav-links { justify-content: flex-start; }
    .static-shell { margin-top: 40px; }
}