:root {
    color-scheme: dark;
    --bg-0: #000000;
    --bg-1: #000000;
    --panel: rgba(8, 20, 32, 0.88);

    --text: rgb(71, 247, 212);
    --muted: rgb(230, 235, 250);

    --blue: #5cd0f7;
    --blue-soft: rgba(103, 222, 250, 0.88);
    --blue-rgb: 34, 197, 232;
    --blue-soft-rgb: 103, 222, 250;

    --orange: #d26716;
    --orange-soft: #f3d4b3;
    --orange-rgb: 249, 115, 22;
    --line-a-rgb: 0, 68, 255;
    --line-b-rgb: 128, 255, 119;
    --title-gradient: linear-gradient(90deg, #f8fbff 0%, #ffffff 5%, rgba(104, 221, 248, 0.92) 82%, rgba(74, 222, 128, 0.82) 100%);

    --yellow: #f3c16a;
    --yellow-soft: #FCD34D;

    --danger: #EF4444;

    --bg: var(--bg-0);
    --topbar: var(--bg-0);
    --rail: var(--bg-0);
    --panel-2: rgba(7, 21, 34, 0.96);
    --panel-soft: rgba(10, 20, 32, 0.72);
    --border: rgba(255,255,255,0.08);
    --dim: rgba(159, 176, 194, 0.58);
    --green: #2dd4a0;
    --green-2: #14b88a;
    --cyan: var(--blue);
    --cyan-2: var(--blue-soft);
    --halo: rgba(var(--blue-rgb),0.38);
    --halo-soft: rgba(var(--blue-rgb),0.16);
    --halo-faint: rgba(var(--blue-rgb),0.075);
    --white-node: #d4e1f8;
    --shadow: 0 26px 60px rgba(0,0,0,0.34);
    --accent-a: var(--blue-soft);
    --accent-b: #4a94de;
    --accent-c: var(--orange);
    --accent-d: var(--yellow);
    --link-color: var(--blue);

    --button-primary-bg-a: #6decfd;
    --button-primary-bg-b: #60a5fa;
    --button-primary-text: #061018;

    --button-secondary-text: #d0edf1;
    --button-secondary-border: rgba(103, 232, 249, 0.38);
    --button-secondary-bg: rgba(103, 232, 249, 0.06);
}

/* ── Site palette consistency layer ───────────────────────────── */
body,
.window {
    background-color: var(--bg-0);
    color: var(--text);
}

a:not(.btn) {
    color: var(--link-color);
}

.btn {
    color: var(--button-secondary-text) !important;
    border-color: var(--button-secondary-border) !important;
    background: var(--button-secondary-bg) !important;
    text-decoration: none;
}

.btn.primary {
    color: var(--button-primary-text) !important;
    background: linear-gradient(
        135deg,
        var(--button-primary-bg-a),
        var(--button-primary-bg-b)
    ) !important;
    border-color: transparent !important;
}
.topbar,
.icon-rail {
    background: var(--bg-0);
    border-color: rgba(var(--blue-rgb), 0.20);
}

/* Remove the unwanted logo background box/circle */
.topbar .brand-home .brand-mark {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    width: 34px !important;
    height: 34px !important;
    flex: 0 0 34px !important;
}

/* Make sure the orbit dots still position inside the logo area */
.topbar .brand-home .brand-mark {
    position: relative !important;
    display: inline-block !important;
}

.stage,
.card,
.dash-card,
.api-section,
.api-panel-grid .card {
    border-color: rgba(var(--blue-soft-rgb), 0.16);
}

.kicker,
.cyan-line,
.card-label,
.dash-card-header,
.legal-top-link,
.inline-legal-link,
.feature-icon,
.nav-icon,
.card-bullet-icon,
.dash-action-btn {
    color: var(--blue-soft);
}

.hero h2,
.card p a,
a {
    color: var(--blue);
}

.auth-btn.primary,
.btn.primary,
.pill.primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-soft));
}

.hero p,
.card p,
.dash-value,
p {
    color: var(--white-node);
}
/* Keep normal links blue, but let buttons have their own color */
a.btn {
    color: var(--cyan) !important;
    text-decoration: none;
}

a.btn.primary {
    color: #0e131b !important;
}
/* Keep normal links blue, but let buttons have their own color */
a.btn {
    color: var(--cyan) !important;
    text-decoration: none;
}

a.btn.primary {
    color: #0e131b !important;
}

.auth-btn.primary,

.btn.primary,


.pill.primary {
    background: linear-gradient(135deg, rgb(var(--blue-rgb)), rgb(var(--blue-soft-rgb)));
}

.strong-line {
    color: var(--text) !important;
}
* { box-sizing: border-box; }
html, body {
    margin: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }
.window {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 8%, rgba(var(--blue-rgb), 0.08), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(95, 74, 182, 0.07), transparent 31%),
        #040b0e;
}
.topbar {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 2px solid rgba(104,221,248,0.20);
    background: #07090D;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 0 26px rgba(104,221,248,0.08);
    position: sticky;
    top: 0;
    z-index: 20;
}
.topbar-icon-btn {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    color: rgba(200,210,224,0.82);
    cursor: pointer;
    position: relative;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.topbar-icon-btn:hover {
    background: rgba(104,221,248,0.08);
    border-color: rgba(104,221,248,0.28);
    color: #e0f0ff;
}
.topbar-icon-btn svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.notify-btn {
    display: none; /* hidden until auth; shown by JS */
}
.notify-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #f43f5e;
    box-shadow: 0 0 6px rgba(244,63,94,0.6);
    display: none; /* shown when there are unread notifications */
}
.notifications-popover {
    position: fixed;
    z-index: 100;
    width: 280px;
    max-height: 360px;
    overflow-y: auto;
    padding: 16px;
    background: rgba(10,14,20,0.97);
    border: 1px solid rgba(104,221,248,0.18);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 20px rgba(104,221,248,0.06);
    backdrop-filter: blur(12px);
    animation: notif-pop-in 0.18s ease-out;
}
@keyframes notif-pop-in {
    from { opacity: 0; transform: translateY(-6px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.tb-left, .tb-right { display: flex; align-items: center; gap: 12px; }
.brand-name {
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
}
.brand-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        rgba(var(--line-a-rgb), 0.7) 0%,
        rgba(var(--line-b-rgb), 0.5) 55%,
        transparent 100%
    );
}

/* ── Topbar icon button (bell etc.) ── */
.topbar-icon-btn {
    position: relative;
    width: 32px; height: 32px;
    display: grid; place-items: center;
    background: linear-gradient(145deg, rgba(18,45,60,0.85), rgba(6,15,22,0.9));
    border: 1px solid rgba(92,214,255,0.18);
    border-radius: 8px;
    color: hsla(187, 97%, 75%, 0.89);
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
    padding: 0;
}
.topbar-icon-btn svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.topbar-icon-btn:hover { border-color: rgba(92,214,255,0.42); color: #a8eeff; box-shadow: 0 0 14px rgba(92,214,255,0.14); }
.notify-dot {
    position: absolute; top: 5px; right: 5px;
    width: 6px; height: 6px; border-radius: 50%;
    background: #71ec4b;
    border: 1.5px solid #07090d;
    display: none;
}
.notify-dot.active { display: block; }

/* ── Notifications popover ── */
.notifications-popover {
    position: fixed;
    z-index: 500;
    min-width: 260px; max-width: 340px;
    background: rgba(10,18,28,0.97);
    border: 1px solid rgba(92,214,255,0.18);
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.55);
    padding: 14px 16px;
    backdrop-filter: blur(12px);
}
.legal-top-link,
.inline-legal-link {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}
.legal-top-link:hover,
.inline-legal-link:hover {
    color: #d9fbff;
}
.brand-mark {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: radial-gradient(circle at 35% 25%, var(--cyan), transparent 58%),
                linear-gradient(135deg, rgba(104,221,248,.28), rgba(122,184,255,.10));
    border: 1px solid rgba(104,221,248,0.36);
    box-shadow: 0 0 18px rgba(104,221,248,0.22);
}
.tb-title { font-size: 13px; font-weight: 800; letter-spacing: -0.02em; }
.auth-btn {
    border: 1px solid var(--color-button-secondary-border, rgba(103,232,249,0.38));
    background: var(--color-button-secondary-bg, rgba(103,232,249,0.06));
    color: var(--color-button-secondary-text, rgba(103,232,249,0.96));
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}
.auth-btn.primary {
    background: linear-gradient(135deg, var(--color-button-primary-bg-a, #67e8f9), var(--color-button-primary-bg-b, #60a5fa));
    color: var(--color-button-primary-text, #061018);
    border: none;
}
.shell {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: calc(100vh - 56px);
}
.icon-rail {
    border-right: 2px solid rgba(104,221,248,0.20);
    box-shadow: 10px 0 28px rgba(104,221,248,0.06);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #07090D;
    position: sticky;
    top: 56px;
    height: calc(100vh - 56px);
    z-index: 10;
}
.nav-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}
.rail-divider {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(92,214,255,0.22), transparent);
    margin: 2px 0;
    flex-shrink: 0;
}
.icon-btn {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    text-decoration: none;
    transition: .18s ease;
    cursor: pointer;
    color: var(--blue-soft);
    background: linear-gradient(145deg, rgba(18,45,60,0.9), rgba(6,15,22,0.92));
    border: 1px solid rgba(92,214,255,0.22);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 0 18px rgba(0,195,255,0.12),
        0 8px 20px rgba(0,0,0,0.35);
}
.icon-btn:hover {
    border-color: rgba(115,230,255,0.38);
    color: #a8eeff;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.09),
        0 0 22px rgba(0,210,255,0.18),
        0 8px 20px rgba(0,0,0,0.35);
}
/* ── Shared icon treatment ───────────────────────────────────────── */
.feature-icon,
.nav-icon,
.card-bullet-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--blue-soft);
    background: linear-gradient(145deg, rgba(18,45,60,0.9), rgba(6,15,22,0.92));
    border: 1px solid rgba(92,214,255,0.22);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 0 18px rgba(0,195,255,0.12),
        0 8px 20px rgba(0,0,0,0.35);
}
.icon-btn svg,
.feature-icon svg,
.nav-icon svg,
.card-bullet-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.icon-btn.active,
.nav-icon.active,
.nav-item.active .nav-icon {
    color: #d9fbff;
    background: linear-gradient(145deg, rgba(38,120,160,0.55), rgba(8,22,32,0.96));
    border-color: rgba(115,230,255,0.55);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        0 0 22px rgba(0,210,255,0.22),
        0 0 0 1px rgba(255,255,255,0.035);
}
.card-bullet-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    flex: 0 0 28px;
}
.card-bullet-icon svg { width: 14px; height: 14px; }

/* Feature rows */
.feature-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: rgba(230,242,246,0.82);
    font-size: 13px;
    line-height: 1.45;
}
.feature-row strong {
    color: rgba(255,255,255,0.94);
    font-weight: 700;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list .feature-row + .feature-row {
    border-top: 1px solid rgba(255,255,255,0.04);
}
.stage-wrap { position: relative; min-width: 0; padding: 14px 10px 10px 10px; }
.stage {
    position: relative;
    min-height: calc(100vh - 56px);
    overflow: hidden;
    border-radius: 0 0 14px 14px;
    border: 1px solid rgba(104,221,248,0.18);
    box-shadow:
        inset 0 0 0 1px rgba(104,221,248,0.06),
        inset 0 0 46px rgba(51,110,229,0.07),
        0 0 34px rgba(104,221,248,0.12);
}
.stage::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(circle at 14% 8%, rgba(104,221,248,0.10), transparent 34%),
        radial-gradient(circle at 84% 88%, rgba(51,110,229,0.10), transparent 36%);
    mix-blend-mode: screen;
    opacity: 0.78;
    z-index: 0;
}
#bg-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    pointer-events: none;
}
body[data-page="home"] #bg-canvas { opacity: .85; }
body:not([data-page="home"]) #bg-canvas { opacity: .38; }
.page-shell {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 54px);
}
.page-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 52px 48px 52px;
}
.app-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    background: var(--bg, #0e131b);
    z-index: 2;
}

        .stage {
            position: relative;
            min-height: calc(100vh - 70px);
            border-radius: 0 0 14px 14px;
            overflow: hidden;
            background: #07090D;
            border: 1px solid rgba(104,221,248,0.18);
            box-shadow:
                inset 0 0 0 1px rgba(104,221,248,0.075),
                inset 0 0 46px rgba(51,110,229,0.08),
                0 0 34px rgba(104,221,248,0.14);
        }

        .stage::before,
        .stage::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .stage::before {
            border-radius: inherit;
            background:
                radial-gradient(circle at 14% 8%, rgba(104,221,248,0.12), transparent 34%),
                radial-gradient(circle at 84% 88%, rgba(51,110,229,0.12), transparent 36%);
            mix-blend-mode: screen;
            opacity: 0.78;
        }

        .stage::after {
            inset: 1px;
            border-radius: inherit;
            border: 1px solid rgba(104,221,248,0.12);
            box-shadow: inset 0 0 26px rgba(104,221,248,0.075);
        }

.kicker {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--cyan);
    margin-bottom: 12px;
}
.hero { max-width: 720px; margin-bottom: 34px; }
.strong-line {
    position: relative;
    padding-top: 14px;
}
.strong-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: min(340px, 100%);
    height: 1.5px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        rgba(var(--line-a-rgb), 0.72) 0%,
        rgba(var(--line-b-rgb), 0.55) 55%,
        transparent 100%
    );
}
.hero h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 850;
}
.hero h2 {
    margin: -4px 0 14px;
    font-size: 18px;
    line-height: 1.18;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: -0.02em;
}
.strong-line { color: #ffffff; font-size: 15px; font-weight: 700; margin-top: 16px; margin-bottom: 0; }
.cyan-line { color: var(--cyan); font-size: 14px; font-weight: 800; }
.db-line {
    position: relative;
    padding-bottom: 12px;
}
.db-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: min(260px, 100%);
    height: 1.5px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        rgba(var(--line-a-rgb), 0.72) 0%,
        rgba(var(--line-b-rgb), 0.50) 55%,
        transparent 100%
    );
}
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.card-header {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--blue-soft); margin-bottom: 1rem; padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.card-label {
    font-size: 9.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: var(--cyan);
    margin-bottom: 8px;
}
.card h3, .card h2 { margin: 0 0 8px; color: var(--text); letter-spacing: -0.03em; }
.card p { margin: 0 0 12px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.bullets { display: grid; gap: 7px; margin: 12px 0 0; padding: 0; list-style: none; }
.bullets li { display: flex; gap: 9px; color: var(--text); font-size: 12.5px; line-height: 1.45; }
.bullets li::before { content: "•"; color: var(--cyan); font-weight: 900; flex: 0 0 auto; }
.notice {
    margin-top: 24px;
    border: 1px solid rgba(52,211,153,0.25);
    background: rgba(52,211,153,0.055);
    border-radius: 10px;
    padding: 14px 18px;
    color: #c8d0dc;
    font-size: 13px;
    line-height: 1.55;
}
.notice::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 10px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(104,221,248,.30);
    background: rgba(104,221,248,.04);
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    padding: 9px 22px;
    cursor: pointer;
}
.btn.primary {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #0e131b;
    border: none;
    box-shadow: 0 0 20px rgba(104,221,248,.22);
}
.btn.disabled, .btn:disabled {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    color: #3a4a5a;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}

.legal-document a {
    color: var(--cyan);
}

.legal-page {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(86, 207, 249, 0.22);
    border-radius: 18px;
    padding: 22px;
    background:
        linear-gradient(135deg, rgba(86, 207, 249, 0.10), transparent 36%),
        linear-gradient(180deg, rgba(5, 14, 22, 0.96), rgba(3, 8, 14, 0.96));
}

.legal-hero {
    padding: 28px;
    border: 1px solid rgba(86, 207, 249, 0.20);
    border-radius: 16px;
    background: rgba(0,0,0,0.22);
}

.legal-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3.4vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.035em;
    background: var(--title-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-hero p {
    max-width: 760px;
    color: rgba(220, 234, 246, 0.78);
    font-size: 14px;
    line-height: 1.65;
}

.legal-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.legal-tab {
    border: 1px solid rgba(86, 207, 249, 0.18);
    border-radius: 8px;
    padding: 8px 12px;
    background: rgba(0,0,0,0.24);
    color: rgba(218, 234, 246, 0.72);
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.legal-tab.active,
.blog-tag.active {
    color: #081018;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
}

.legal-document {
    margin-top: 16px;
    padding: 24px;
    max-height: 68vh;
    overflow: auto;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    background: rgba(0,0,0,0.26);
}

.legal-document h1,
.legal-document h2 {
    color: #f6fbff;
}

.legal-document h1 {
    margin: 24px 0 12px;
    font-size: 24px;
}

.legal-document h2 {
    margin: 20px 0 10px;
    font-size: 18px;
}

.legal-document p {
    color: rgba(220, 234, 246, 0.76);
    font-size: 13px;
    line-height: 1.7;
}

.price-card { min-height: 300px; display: flex; flex-direction: column; }
.price-card.featured {
    border-color: rgba(27, 158, 188, 0.45);
    background: linear-gradient(180deg, rgba(12,28,38,.92), rgba(12,19,28,.86));
    box-shadow: 0 0 30px rgba(104,221,248,.10), 0 18px 44px rgba(0,0,0,.22);
}
.price { margin: 14px 0 18px; }
.price strong { color: #f8fbff; font-size: 38px; letter-spacing: -0.05em; }
.price span { color: #bdfebd; font-size: 13px; font-weight: 700; }
.price-card .bullets { padding-top: 15px; border-top: 1px solid rgba(255,255,255,.07); flex: 1; }
.form-row { display: grid; gap: 6px; margin-bottom: 12px; }
label { color: #757f91; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
input, select, textarea {
    width: 100%;
    background: #000000;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 7px;
    color: #c8d0dc;
    padding: 9px 11px;
    font: inherit;
    font-size: 12px;
}
textarea { resize: vertical; }
@media (max-width: 920px) {
    .shell { grid-template-columns: 1fr; }
    .icon-rail {
        position: sticky;
        top: 56px;
        height: auto;
        flex-direction: row;
        overflow-x: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.06);
        z-index: 10;
    }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .page-main { padding: 36px 22px 40px; }
}

/* ── Global text scale ───────────────────────────────────────── */
p { color: #b8c7d6; }
.muted { color: #94a8b8; }

/* ── About page overrides ────────────────────────────────────── */
.about-hero {
    max-width: 580px;
    margin-bottom: 32px;
}
.about-hero h1 {
    font-size: clamp(19px, 2.0vw, 24px);
    max-width: 520px;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--title-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-intro {
    font-size: 16px;
    color: #b8c7d6;
    max-width: 580px;
    line-height: 1.65;
    margin: 0;
}
.about-cards {
    gap: 10px;
}
.about-cards .card {
    padding: 14px 16px;
    background: linear-gradient(160deg, rgba(16,36,52,0.82) 0%, rgba(8,16,24,0.88) 100%);
    border: 1px solid rgba(92,214,255,0.16);
    box-shadow:
        inset 0 1px 0 rgba(92,214,255,0.08),
        inset 0 0 20px rgba(0,160,220,0.04),
        0 4px 18px rgba(0,0,0,0.28);
}
.about-cards .card-label {
    margin-bottom: 4px;
}
.about-cards .card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.015em;
}
.about-cards .card p {
    color: #c8cbcd;
    font-size: 12px;
    line-height: 1.62;
    margin: 0;
}

/* ── Page component styles ────────────────────────────────────── */
.kicker {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--cyan);
    margin-bottom: 12px;
}
.hero h1 {
    font-size: clamp(24px, 3.5vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 800;
    background: var(--title-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px;
    max-width: 720px;
    position: relative;
    padding-bottom: 14px;
}
.hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: min(340px, 100%);
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        rgba(var(--line-a-rgb), 0.72) 0%,
        rgba(var(--line-b-rgb), 0.55) 55%,
        transparent 100%
    );
}

/* Home page has a short single-word title — give it its own full-color gradient */
body[data-page="home"] .hero h1,
.home-title {
    background: linear-gradient(90deg, rgb(255, 255, 255) 1%, rgb(2, 209, 255) 80%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}
.hero h2 {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    line-height: 1.35;
}
.hero p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0 0 12px; }
.strong-line { color: var(--text) !important; font-size: 15px; font-weight: 600 !important; }
.cyan-line { color: var(--cyan) !important; font-size: 13px; font-weight: 700 !important; }

/* Cards */
.card,
.card.soft {
    border-radius: 10px;
    padding: 16px 18px;
    border: 1px solid rgba(92,214,255,0.14);
    background: linear-gradient(160deg, rgba(14,32,46,0.78) 0%, rgba(7,14,20,0.90) 100%);
    box-shadow:
        inset 0 1px 0 rgba(92,214,255,0.07),
        inset 0 0 18px rgba(0,160,220,0.03),
        0 4px 16px rgba(0,0,0,0.24);
}
.card.soft {
    background: rgba(255,255,255,0.035);
    border-color: rgba(255,255,255,0.08);
}
.card-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(86,207,255,0.7);
    margin-bottom: 6px;
}
.card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.18;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 10px;
}
.card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: min(200px, 100%);
    height: 1.5px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        rgba(var(--line-a-rgb), 0.6) 0%,
        rgba(var(--line-b-rgb), 0.42) 55%,
        transparent 100%
    );
}
.card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 12px;
}
.card-divider {
    height: 3px;
    background: rgba(104,221,248,0.08);
    margin: 0 0 12px;
}
.bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 7px;
}
.bullets li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.45;
}
.bullets li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--dot-color, rgba(86,207,255,0.6));
    flex-shrink: 0;
    margin-top: 5px;
}
.hero .bullets::after {
    content: '';
    display: block;
    margin-top: 10px;
    height: 1.5px;
    width: min(180px, 100%);
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        rgba(var(--line-a-rgb), 0.72) 0%,
        rgba(var(--line-b-rgb), 0.55) 55%,
        transparent 100%
    );
}
.notice {
    margin-top: 28px;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid rgba(74,222,128,0.35);
    background: rgba(74,222,128,0.10);
    color: #d8e8dc;
    font-size: 13px;
    line-height: 1.6;
}
.notice strong { color: #f4faf6; }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }

.compare-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px;
    border: 1px solid rgba(86, 207, 249, 0.22);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(8, 18, 28, 0.92), rgba(5, 10, 18, 0.92)),
      rgba(4, 8, 13, 0.96);
    box-shadow:
      0 0 0 1px rgba(86, 207, 249, 0.06) inset,
      0 20px 70px rgba(0, 0, 0, 0.35);
  }
  
  .compare-title {
    margin-bottom: 6px;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-primary);
  }
  
  .compare-subtitle {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-secondary);
  }
  
  .compare {
    display: grid;
    grid-template-columns: 230px repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid rgba(115, 230, 248, 0.22);
    border-radius: 14px;
    background: rgba(2, 8, 14, 0.74);
  }
  
  .col-head {
    padding: 16px 14px;
    border-right: 1px solid rgba(115, 230, 248, 0.16);
    border-bottom: 1px solid rgba(115, 230, 248, 0.22);
    background: rgba(8, 18, 28, 0.85);
  }
  
  .col-head:last-child {
    border-right: none;
  }
  
  .col-head.syn {
    background: linear-gradient(180deg, rgba(86, 207, 249, 0.18), rgba(86, 207, 249, 0.07));
    box-shadow: inset 0 0 0 1px rgba(86, 207, 249, 0.25);
  }
  
  .section-label {
    grid-column: 1 / -1;
    padding: 10px 14px;
    border-top: 1px solid rgba(115, 230, 248, 0.28);
    border-bottom: 1px solid rgba(115, 230, 248, 0.20);
    background: linear-gradient(90deg, rgba(86, 207, 249, 0.10), rgba(86, 207, 249, 0.02));
    color: rgba(216, 238, 252, 0.82);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  .feat-label,
  .feat-cell {
    padding: 12px 14px;
    border-right: 1px solid rgba(115, 230, 248, 0.13);
    border-bottom: 1px solid rgba(115, 230, 248, 0.13);
    background: rgba(3, 10, 17, 0.62);
  }
  
  .feat-label {
    color: var(--color-text-primary);
    font-size: 13px;
    font-weight: 600;
    text-align: left;
  }
  
  .feat-cell {
    color: var(--color-text-secondary);
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
  }
  
  .feat-cell:last-child {
    border-right: none;
  }
  
  .feat-cell.syn-col {
    background: rgba(86, 207, 249, 0.07);
    box-shadow:
      inset 1px 0 rgba(86, 207, 249, 0.20),
      inset -1px 0 rgba(86, 207, 249, 0.20);
  }
  
  .compare-footer {
    margin-top: 14px;
    padding: 11px 13px;
    border: 1px solid rgba(115, 230, 248, 0.16);
    border-radius: 10px;
    background: rgba(86, 207, 249, 0.06);
    color: var(--color-text-tertiary);
    font-size: 11px;
    line-height: 1.45;
  }
  .features-page {
    padding: 22px;
    border: 1px solid rgba(86, 207, 249, 0.24);
    border-radius: 22px;
    background:
        radial-gradient(circle at 18% 0%, rgba(86, 207, 249, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(4, 14, 20, 0.98), rgba(2, 8, 13, 0.98));
}

/* Top section gets the strongest color */
.features-hero {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(86, 207, 249, 0.24);
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(86, 207, 249, 0.14), rgba(86, 207, 249, 0.035) 48%, rgba(255, 255, 255, 0.025)),
        rgba(0, 0, 0, 0.22);
}

.features-hero h1 {
    max-width: 780px;
}

.features-hero p {
    max-width: 720px;
}

.endpoint-card {
    padding: 18px;
    border: 1px solid rgba(86, 207, 249, 0.22);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(86, 207, 249, 0.08), transparent),
        rgba(0, 0, 0, 0.32);
}

.endpoint-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 9px 0;
    color: var(--color-text-secondary);
    font-size: 12px;
}

.endpoint-row i {
    height: 1px;
    background: rgba(86, 207, 249, 0.30);
}

.endpoint-row b {
    color: rgb(114, 225, 255);
    font-size: 11px;
}

/* Capability console */
.capability-console {
    margin-top: 18px;
    padding: 22px;
    border: 1px solid rgba(86, 207, 249, 0.20);
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(86, 207, 249, 0.075), transparent 36%),
        rgba(0, 0, 0, 0.24);
}

.console-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 16px;
}

.console-head h2 {
    margin-top: 4px;
}

.console-head p {
    max-width: 360px;
    color: var(--color-text-secondary);
    font-size: 13px;
}

.feature-picker {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.feature-tab {
    cursor: pointer;
    padding: 8px 10px;
    border: 1px solid rgba(86, 207, 249, 0.16);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.28);
    color: var(--color-text-secondary);
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-tab:hover {
    color: var(--color-text-primary);
    border-color: rgba(86, 207, 249, 0.36);
    background: rgba(0, 0, 0, 0.32);
}

.feature-tab.active {
    color: var(--color-text-primary);
    border-color: rgba(86, 207, 249, 0.70);
    background: rgba(0, 0, 0, 0.28);
    box-shadow: 0 0 0 1px rgba(86, 207, 249, 0.18) inset;
}

/* Active content: half-color panel */
.feature-display {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: center;
    min-height: 160px;
    margin-top: 14px;
    padding: 16px;
    border: 1px solid rgba(86, 207, 249, 0.24);
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(86, 207, 249, 0.13), rgba(86, 207, 249, 0.035) 46%, rgba(0, 0, 0, 0.18) 46%),
        rgba(0, 0, 0, 0.26);
}

.feature-display-copy {
    padding-right: 8px;
}

.feature-display-copy .card-label {
    color: rgb(114, 225, 255);
}

.feature-display h2 {
    margin-top: 6px;
    max-width: 640px;
    color: var(--color-text-primary);
}

.feature-display p {
    max-width: 680px;
    color: rgba(245, 250, 255, 0.86);
}

.feature-bullets {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-bullets li {
    position: relative;
    padding: 13px 14px 13px 18px;
    border: 1px solid rgba(86, 207, 249, 0.17);
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(86, 207, 249, 0.08), transparent 42%),
        rgba(255, 255, 255, 0.035);
    color: rgba(245, 250, 255, 0.84);
}

.feature-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 4px;
    background: rgb(86, 207, 249);
}

/* Search gets its own separate room, same color system */
.search-section {
    margin-top: 34px;
    padding: 28px;
    border: 1px solid rgba(86, 207, 249, 0.20);
    border-radius: 22px;
    background:
        linear-gradient(90deg, rgba(86, 207, 249, 0.09), transparent 40%),
        rgba(255, 255, 255, 0.025);
}

.search-copy {
    max-width: 780px;
    margin-bottom: 20px;
}

.search-copy h2 {
    color: var(--color-text-primary);
}

.search-copy p {
    color: var(--color-text-secondary);
}

.search-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.search-card {
    padding: 18px;
    border: 1px solid rgba(86, 207, 249, 0.20);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(86, 207, 249, 0.08), transparent),
        rgba(0, 0, 0, 0.24);
}

.search-card .card-label {
    color: rgb(114, 225, 255);
}

.search-card p {
    margin-top: 8px;
    color: var(--color-text-secondary);
}

/* Bottom section also gets color, but not a new palette */
.start-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    align-items: center;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid rgba(86, 207, 249, 0.20);
    border-radius: 16px;
    background:
        linear-gradient(90deg, rgba(86, 207, 249, 0.08), transparent 42%),
        rgba(255, 255, 255, 0.025);
}

.start-step {
    min-height: 104px;
    padding: 16px;
    border-right: 1px solid rgba(86, 207, 249, 0.14);
}

.start-step span {
    display: block;
    margin-bottom: 6px;
    color: rgb(114, 225, 255);
    font-size: 11px;
    font-weight: 800;
}

.start-step strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-text-primary);
}

.start-step p {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 12px;
}

.start-section .btn {
    margin: 16px;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .features-page {
        padding: 16px;
    }

    .features-hero,
    .feature-display {
        grid-template-columns: 1fr;
    }

    .features-hero {
        padding: 22px;
    }

    .console-head {
        display: block;
    }

    .console-head p {
        margin-top: 8px;
        max-width: none;
    }

    .feature-picker {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-display {
        background:
            linear-gradient(180deg, rgba(86, 207, 249, 0.12), transparent 48%),
            rgba(0, 0, 0, 0.26);
    }

    .search-grid {
        grid-template-columns: 1fr;
    }

    .start-section {
        grid-template-columns: 1fr;
    }

    .start-step {
        border-right: 0;
        border-bottom: 1px solid rgba(86, 207, 249, 0.14);
    }

    .start-section .btn {
        width: calc(100% - 32px);
        text-align: center;
    }
}

/* ── Business page ─────────────────────────────────────────────── */
.business-page,
.community-page {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(86, 207, 249, 0.22);
    border-radius: 18px;
    padding: 22px;
    background:
        linear-gradient(135deg, rgba(86, 207, 249, 0.11), transparent 36%),
        linear-gradient(180deg, rgba(5, 14, 22, 0.96), rgba(3, 8, 14, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 22px 60px rgba(0,0,0,0.28);
}

.feature-business-merge {
    margin-bottom: 18px;
}

.business-page,
.community-page,
.features-hero-block,
.card,
.notice,
.compare-shell,
.release-section,
.content-editor,
.ticket-detail {
    position: relative;
}

.business-page::after,
.community-page::after,
body[data-page="features"] .features-hero-block::after,
.card::after,
.notice::after,
.compare-shell::after,
.release-section::after,
.content-editor::after,
.ticket-detail::after,
.business-flow-step::after,
.business-stack div::after,
.business-split article::after,
.feat-tab::after,
.feat-panel::after,
.feat-point::after,
.feat-step::after,
.blog-card::after,
.release-card::after,
.content-row::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(90deg, var(--edge-color, rgba(104, 221, 248, 0.68)), transparent 100%) top left / 25% 2px no-repeat,
        linear-gradient(180deg, var(--edge-color-soft, rgba(104, 221, 248, 0.42)), transparent 100%) top left / 2px 25% no-repeat;
}

.business-flow-step,
.business-stack div,
.business-split article,
.feat-tab,
.feat-panel,
.feat-point,
.feat-step,
.blog-card,
.release-card,
.content-row {
    position: relative;
}

.business-flow-step:nth-child(3n + 1),
.business-stack div:nth-child(3n + 1),
.business-split article:nth-child(3n + 1),
.feat-tab:nth-child(4n + 1),
.feat-point:nth-child(4n + 1),
.feat-step:nth-of-type(3n + 1),
.blog-card:nth-child(4n + 1),
.release-card:nth-child(3n + 1),
.content-row:nth-child(4n + 1) {
    --edge-color: rgba(104, 221, 248, 0.76);
    --edge-color-soft: rgba(104, 221, 248, 0.44);
}

.business-flow-step:nth-child(3n + 2),
.business-stack div:nth-child(3n + 2),
.business-split article:nth-child(3n + 2),
.feat-tab:nth-child(4n + 2),
.feat-point:nth-child(4n + 2),
.feat-step:nth-of-type(3n + 2),
.blog-card:nth-child(4n + 2),
.release-card:nth-child(3n + 2),
.content-row:nth-child(4n + 2) {
    --edge-color: rgba(74, 222, 128, 0.70);
    --edge-color-soft: rgba(74, 222, 128, 0.36);
}

.business-flow-step:nth-child(3n),
.business-stack div:nth-child(3n),
.business-split article:nth-child(3n),
.feat-tab:nth-child(4n + 3),
.feat-point:nth-child(4n + 3),
.feat-step:nth-of-type(3n),
.blog-card:nth-child(4n + 3),
.release-card:nth-child(3n),
.content-row:nth-child(4n + 3) {
    --edge-color: rgba(245, 158, 11, 0.68);
    --edge-color-soft: rgba(245, 158, 11, 0.34);
}

.feat-tab:nth-child(4n),
.feat-point:nth-child(4n),
.blog-card:nth-child(4n),
.content-row:nth-child(4n) {
    --edge-color: rgba(139, 156, 255, 0.70);
    --edge-color-soft: rgba(139, 156, 255, 0.36);
}

.hero h1,
.business-hero h1,
.community-hero h1,
.admin-header h1 {
    background: var(--title-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.business-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: stretch;
    padding: 28px;
    border: 1px solid rgba(86, 207, 249, 0.20);
    border-radius: 16px;
    background:
        linear-gradient(90deg, rgba(86, 207, 249, 0.11), rgba(255,255,255,0.025)),
        rgba(0,0,0,0.24);
}

.business-hero h1,
.community-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(24px, 3.4vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.business-hero p,
.community-hero p {
    max-width: 760px;
    color: rgba(220, 234, 246, 0.78);
    font-size: 15px;
    line-height: 1.7;
}

.business-actions,
.api-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.business-stack,
body[data-page="features"] .feat-panel-points {
    display: grid;
    gap: 10px;
}

.business-stack div,
.business-flow-step,
.business-split article,
.blog-card,
.blog-full,
.empty-blog {
    position: relative;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    background:
        linear-gradient(150deg, rgba(86, 207, 249, 0.08), rgba(255,255,255,0.025) 44%, rgba(73, 226, 178, 0.035)),
        rgba(0,0,0,0.26);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 16px 36px rgba(0,0,0,0.20);
}

.business-stack div {
    padding: 16px;
}

.business-stack span,
.business-flow-step span {
    display: block;
    margin-bottom: 7px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.business-stack strong,
.business-flow-step strong {
    display: block;
    color: #f6fbff;
    font-size: 14px;
    line-height: 1.35;
}

.business-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.business-flow-step {
    padding: 18px;
    min-height: 150px;
}

.business-flow-step p {
    margin: 8px 0 0;
    color: rgba(205, 220, 235, 0.70);
    font-size: 12.5px;
    line-height: 1.55;
}

.business-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 14px;
}

.business-split article {
    padding: 22px;
}

.business-split h2 {
    margin: 0 0 10px;
    color: #f6fbff;
    font-size: 20px;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.business-split p {
    color: rgba(205, 220, 235, 0.76);
    line-height: 1.65;
}

/* ── Community blog / document library ─────────────────────────── */
.community-hero {
    padding: 28px;
    border: 1px solid rgba(86, 207, 249, 0.20);
    border-radius: 16px;
    background:
        linear-gradient(90deg, rgba(86, 207, 249, 0.10), transparent 48%),
        rgba(0,0,0,0.22);
}

.blog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 18px 0;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tag {
    min-height: 34px;
    border: 1px solid rgba(86, 207, 249, 0.18);
    border-radius: 8px;
    padding: 7px 12px;
    background: rgba(0,0,0,0.24);
    color: rgba(218, 234, 246, 0.72);
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.release-section {
    margin: 18px 0;
    padding: 20px;
    border: 1px solid rgba(73, 226, 178, 0.20);
    border-radius: 16px;
    background:
        linear-gradient(90deg, rgba(73, 226, 178, 0.08), transparent 44%),
        rgba(0,0,0,0.22);
}

.release-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: end;
    margin-bottom: 14px;
}

.release-section-head h2 {
    margin: 0;
    color: #f6fbff;
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.release-section-head p {
    margin: 0;
    color: rgba(205, 220, 235, 0.70);
    font-size: 12.5px;
    line-height: 1.6;
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.release-card {
    padding: 16px;
    border: 1px solid rgba(73, 226, 178, 0.18);
    border-radius: 12px;
    background:
        linear-gradient(150deg, rgba(73, 226, 178, 0.08), rgba(255,255,255,0.025)),
        rgba(0,0,0,0.24);
    cursor: pointer;
}

.release-card span {
    color: rgba(126, 239, 197, 0.72);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.release-card h3 {
    margin: 8px 0 7px;
    color: #f6fbff;
    font-size: 15px;
    line-height: 1.25;
}

.release-card p {
    margin: 0;
    color: rgba(205, 220, 235, 0.70);
    font-size: 12.5px;
    line-height: 1.55;
}

.blog-card {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    padding: 20px;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
    border-color: rgba(86, 207, 249, 0.42);
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(218, 234, 246, 0.44);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-card h2,
.blog-full h2 {
    margin: 0 0 10px;
    color: #f6fbff;
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.blog-card p {
    margin: 0;
    color: rgba(205, 220, 235, 0.72);
    font-size: 13px;
    line-height: 1.65;
}

.blog-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
}

.blog-card-foot div,
.blog-full-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.blog-card-foot span,
.blog-full-tags span {
    border: 1px solid rgba(86, 207, 249, 0.16);
    border-radius: 5px;
    padding: 3px 7px;
    color: rgba(171, 225, 244, 0.78);
    background: rgba(86, 207, 249, 0.055);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-card-foot strong {
    color: var(--cyan);
    font-size: 12px;
}

.blog-full,
.empty-blog {
    padding: 24px;
}

.blog-full .btn {
    margin-bottom: 18px;
}

.blog-body {
    margin-top: 20px;
    max-width: 820px;
}

.blog-body p {
    color: rgba(220, 234, 246, 0.78);
    font-size: 14px;
    line-height: 1.8;
}

.empty-blog {
    color: rgba(220, 234, 246, 0.64);
    text-align: center;
}

@media (max-width: 900px) {
    .business-hero,
    .business-flow,
    .business-split,
    .blog-grid,
    .release-section-head,
    .release-grid {
        grid-template-columns: 1fr;
    }

    .business-page,
    .community-page {
        padding: 16px;
    }

    .business-hero,
    .community-hero {
        padding: 22px;
    }

    .blog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   FEATURES PAGE FIX
   Controlled corner color, no blobs, no rainbow titles.
   Paste at the very bottom of the CSS file.
   ========================================================= */

body[data-page="features"] .features-page {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    isolation: isolate;
}

/* Kill the old color blobs if they still exist in the JS */
body[data-page="features"] .features-page .corner-color,
body[data-page="features"] .corner-color,
body[data-page="features"] .corner-top-left,
body[data-page="features"] .corner-top-right,
body[data-page="features"] .corner-bottom-left,
body[data-page="features"] .corner-bottom-right {
    display: none !important;
}

/* Four small colored corner edges on the actual feature box */
body[data-page="features"] .features-page::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 5;

    background:
        linear-gradient(90deg, rgba(70, 221, 248, 0.72), transparent 100%) top left / 25% 2px no-repeat,
        linear-gradient(180deg, rgba(70, 221, 248, 0.50), transparent 100%) top left / 2px 25% no-repeat,

        linear-gradient(270deg, rgba(120, 140, 255, 0.62), transparent 100%) top right / 25% 2px no-repeat,
        linear-gradient(180deg, rgba(120, 140, 255, 0.42), transparent 100%) top right / 2px 25% no-repeat,

        linear-gradient(90deg, rgba(73, 226, 178, 0.48), transparent 100%) bottom left / 25% 2px no-repeat,
        linear-gradient(0deg, rgba(73, 226, 178, 0.34), transparent 100%) bottom left / 2px 25% no-repeat,

        linear-gradient(270deg, rgba(255, 174, 66, 0.46), transparent 100%) bottom right / 25% 2px no-repeat,
        linear-gradient(0deg, rgba(255, 174, 66, 0.32), transparent 100%) bottom right / 2px 25% no-repeat;
}

/* Keep main titles clean */
body[data-page="features"] .features-hero h1,
body[data-page="features"] .feature-panel h2,
body[data-page="features"] .start-step strong {
    color: var(--text) !important;
    text-shadow: none !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
}

/* Tiny color only where it belongs */
.kicker,
.card-label {
    color: var(--cyan) !important;
}

/* Active tab: readable, not radioactive */
body[data-page="features"] .feature-tab.active {
    color: var(--text) !important;
    border-color: rgba(70, 221, 248, 0.55) !important;
    background: rgba(0, 0, 0, 0.28) !important;
    box-shadow: 0 0 0 1px rgba(70, 221, 248, 0.18) inset !important;
}

/* Dimensional, not flat */
body[data-page="features"] .feature-panel,
body[data-page="features"] .endpoint-card,
body[data-page="features"] .start-step {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

/* Soft surface highlight */
body[data-page="features"] .feature-panel::before,
body[data-page="features"] .endpoint-card::before,
body[data-page="features"] .start-step::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 36%),
        linear-gradient(315deg, rgba(255, 255, 255, 0.025), transparent 44%);
}

/* Quiet bullet edge */
body[data-page="features"] .feature-point {
    border-left: 2px solid rgba(70, 221, 248, 0.45) !important;
    box-shadow: none !important;
}

/* Active features page renderer uses the compact feat-* classes. */
body[data-page="features"] .features-hero-block {
    max-width: none;
    margin-bottom: 18px;
    padding: 28px;
    border: 1px solid rgba(86, 207, 249, 0.22);
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(86, 207, 249, 0.12), rgba(86, 207, 249, 0.035) 48%, rgba(255, 255, 255, 0.025)),
        rgba(0, 0, 0, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 18px 46px rgba(0, 0, 0, 0.22);
}

body[data-page="features"] .features-hero-block h1 {
    max-width: 820px;
    margin-bottom: 12px;
    font-size: clamp(24px, 3.4vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

body[data-page="features"] .features-hero-block p {
    max-width: 780px;
    color: rgba(220, 234, 246, 0.78);
    font-size: 15px;
    line-height: 1.7;
}

body[data-page="features"] .feat-tabs {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

body[data-page="features"] .feat-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 13px 14px;
    border: 1px solid rgba(86, 207, 249, 0.16);
    border-radius: 12px;
    background:
        linear-gradient(150deg, rgba(86, 207, 249, 0.07), rgba(255, 255, 255, 0.025)),
        rgba(0, 0, 0, 0.26);
    color: rgba(225, 241, 249, 0.78);
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

body[data-page="features"] .feat-tab:hover {
    transform: translateY(-1px);
    color: #f6fbff;
    border-color: rgba(86, 207, 249, 0.38);
}

body[data-page="features"] .feat-tab.active {
    color: var(--cyan);
    border-color: rgba(70, 221, 248, 0.48);
    background:
        linear-gradient(180deg, rgba(70, 221, 248, 0.12), rgba(70, 221, 248, 0.035)),
        rgba(0, 0, 0, 0.30);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 28px rgba(0, 0, 0, 0.22);
}

body[data-page="features"] .feat-panel {
    min-height: 260px;
    margin-bottom: 14px;
    border: 1px solid rgba(86, 207, 249, 0.22);
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(86, 207, 249, 0.12), rgba(86, 207, 249, 0.035) 46%, rgba(0, 0, 0, 0.18) 46%),
        rgba(0, 0, 0, 0.26);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 18px 48px rgba(0, 0, 0, 0.24);
}

body[data-page="features"] .feat-panel-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: center;
    padding: 28px;
}

body[data-page="features"] .feat-panel-text h2 {
    margin: 6px 0 10px;
    color: #f6fbff;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

body[data-page="features"] .feat-panel-text p {
    color: rgba(220, 234, 246, 0.80);
    font-size: 14px;
    line-height: 1.7;
}

body[data-page="features"] .feat-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid rgba(86, 207, 249, 0.17);
    border-left: 2px solid rgba(70, 221, 248, 0.45);
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(86, 207, 249, 0.08), transparent 42%),
        rgba(255, 255, 255, 0.035);
    color: rgba(245, 250, 255, 0.84);
    font-size: 13px;
    line-height: 1.45;
}

body[data-page="features"] .feat-check {
    color: var(--cyan);
    font-weight: 900;
}

body[data-page="features"] .feat-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
    border: 1px solid rgba(86, 207, 249, 0.18);
    border-radius: 16px;
    background:
        linear-gradient(90deg, rgba(86, 207, 249, 0.07), transparent 44%),
        rgba(0, 0, 0, 0.22);
}

body[data-page="features"] .feat-steps > .kicker {
    grid-column: 1 / -1;
}

body[data-page="features"] .feat-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    min-height: 118px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    background:
        linear-gradient(150deg, rgba(86, 207, 249, 0.07), rgba(255, 255, 255, 0.025)),
        rgba(0, 0, 0, 0.24);
}

body[data-page="features"] .feat-step-n {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 900;
}

body[data-page="features"] .feat-step strong {
    display: block;
    margin-bottom: 5px;
    color: #f6fbff;
}

body[data-page="features"] .feat-step p,
.api-arch-step p {
    margin: 0;
    color: rgba(205, 220, 235, 0.72);
    font-size: 12.5px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    body[data-page="features"] .feat-tabs,
    body[data-page="features"] .feat-panel-inner,
    body[data-page="features"] .feat-steps {
        grid-template-columns: 1fr;
    }

    body[data-page="features"] .feat-panel {
        background:
            linear-gradient(180deg, rgba(86, 207, 249, 0.12), transparent 48%),
            rgba(0, 0, 0, 0.26);
    }
}

/* ── Dashboard / user page components ───────────────────────── */
.dash-card {
    background: rgba(14,22,32,0.82);
    border: 1px solid rgba(92,214,255,0.14);
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: inset 0 1px 0 rgba(92,214,255,0.07), 0 4px 16px rgba(0,0,0,0.24);
}
.dash-card-header {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(86,207,255,0.65);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dash-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.dash-field:last-child { border-bottom: none; }
.dash-label { font-size: 11px; color: #5a6e80; }
.dash-value { font-size: 11px; color: #c8d8e8; font-weight: 500; text-align: right; }
.dash-action-btn {
    display: block;
    width: 100%;
    padding: 9px 16px;
    border: 1px solid rgba(92,214,255,0.28);
    background: rgba(92,214,255,0.06);
    color: var(--blue-soft);
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s;
}
.dash-action-btn:hover { background: rgba(92,214,255,0.12); }

*{box-sizing:border-box;margin:0;padding:0}
body{background:#07090D}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:20px;padding:20px;background:#07090D}
.cell{display:flex;flex-direction:column;align-items:center;gap:10px;padding:16px;background:#0C0F16;border:1px solid #1A2535;border-radius:10px}
.label{font-family:monospace;font-size:10px;color:#3A4A5E;letter-spacing:0.08em;text-transform:uppercase}

/* 1. Memory pulse ring */
.pulse-shell,.orbit-shell{position:relative;width:42px;height:42px;flex-shrink:0}
.pulse-core{position:absolute;inset:50%;width:12px;height:12px;margin:-6px 0 0 -6px;border-radius:50%;background:#00C8F0}
.pulse-ring{position:absolute;inset:50%;width:12px;height:12px;margin:-6px 0 0 -6px;border-radius:50%;border:1.5px solid #00C8F0;animation:pulseRing 2s ease-out infinite}
.pulse-ring.r2{animation-delay:.7s}
.pulse-ring.r3{animation-delay:1.4s}
@keyframes pulseRing{0%{transform:scale(1);opacity:.9}100%{transform:scale(3.5);opacity:0}}

/* 2. Orbiting dots */
.orbit-core{position:absolute;inset:50%;width:8px;height:8px;margin:-4px 0 0 -4px;border-radius:50%;background:#00C8F0}
.orbit-dot{position:absolute;top:50%;left:50%;width:5px;height:5px;margin:-2.5px 0 0 -2.5px;border-radius:50%;background:var(--blue-soft)}
.od1{animation:orb1 2.8s linear infinite}
.od2{animation:orb2 3.6s linear infinite reverse}
.od3{animation:orb3 2.1s linear infinite}
@keyframes orb1{from{transform:rotate(0deg) translateX(14px)}to{transform:rotate(360deg) translateX(14px)}}
@keyframes orb2{from{transform:rotate(120deg) translateX(18px)}to{transform:rotate(480deg) translateX(18px)}}
@keyframes orb3{from{transform:rotate(240deg) translateX(11px)}to{transform:rotate(600deg) translateX(11px)}}

/* 3. Radar sweep */
.radar-shell{position:relative;width:42px;height:42px;border-radius:50%;overflow:hidden;background:rgba(0,15,25,.8);border:1px solid rgba(0,200,240,.2)}
.radar-ring{position:absolute;inset:0;border-radius:50%;border:1px solid rgba(0,200,240,.15)}
.rr1{transform:scale(.55)}
.rr2{transform:scale(.82)}
.radar-sweep{position:absolute;inset:-10%;border-radius:50%;background:conic-gradient(from 0deg,rgba(0,200,240,0) 0deg,rgba(0,200,240,.4) 55deg,rgba(0,200,240,0) 95deg);animation:radarSpin 2.2s linear infinite}
.radar-blip{position:absolute;top:11px;left:26px;width:4px;height:4px;border-radius:50%;background:#00C8F0;animation:blipPulse 1.6s ease-in-out infinite}
@keyframes radarSpin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes blipPulse{0%,100%{opacity:.3;transform:scale(.9)}50%{opacity:1;transform:scale(1.3)}}

/* 4. Neural cluster */
.neural-shell,.beacon-shell,.halo-shell{position:relative;width:42px;height:42px}
.neural-lines{position:absolute;inset:0;width:100%;height:100%}
.neural-lines line{stroke:rgba(0,200,240,.4);stroke-width:1.2;stroke-linecap:round;animation:linePulse 2s ease-in-out infinite}
.nnode{position:absolute;width:6px;height:6px;border-radius:50%;background:#00C8F0;animation:nodePulse 1.8s ease-in-out infinite}
.nn1{left:7px;top:8px}
.nn2{left:18px;top:5px;animation-delay:.2s}
.nn3{left:28px;top:13px;animation-delay:.4s}
.nn4{left:11px;top:25px;animation-delay:.6s}
.nn5{left:25px;top:28px;animation-delay:.8s}
@keyframes nodePulse{0%,100%{transform:scale(1);opacity:.6}50%{transform:scale(1.35);opacity:1}}
@keyframes linePulse{0%,100%{opacity:.25}50%{opacity:.85}}

/* 5. Ripple beacon */
.beacon-core{position:absolute;top:50%;left:50%;width:8px;height:8px;margin:-4px 0 0 -4px;border-radius:50%;background:#00C8F0;z-index:2}
.beacon-wave{position:absolute;top:50%;left:50%;width:8px;height:8px;margin:-4px 0 0 -4px;border-radius:50%;border:1.5px solid rgba(0,200,240,.6);animation:beaconRipple 2.4s ease-out infinite}
.bw2{animation-delay:.8s}
.bw3{animation-delay:1.6s}
@keyframes beaconRipple{0%{transform:scale(1);opacity:.9}100%{transform:scale(4.5);opacity:0}}

/* 6. Holographic cube */
.cube-shell{width:42px;height:42px;display:grid;place-items:center;perspective:300px}
.cube{position:relative;width:16px;height:16px;transform-style:preserve-3d;animation:spinCube 4s linear infinite}
.cube span{position:absolute;inset:0;border:1px solid rgba(0,200,240,.7)}
.cube span:nth-child(1){transform:translateZ(8px)}
.cube span:nth-child(2){transform:rotateY(90deg) translateZ(8px)}
.cube span:nth-child(3){transform:rotateX(90deg) translateZ(8px)}
.cube span:nth-child(4){transform:translateZ(-8px)}
@keyframes spinCube{from{transform:rotateX(-18deg) rotateY(0deg)}to{transform:rotateX(-18deg) rotateY(360deg)}}

/* 7. DNA helix */
.dna-shell{width:42px;height:42px;position:relative;overflow:hidden}
.dna-strand{position:absolute;width:100%;height:100%}
.dna-dot{position:absolute;width:5px;height:5px;border-radius:50%;background:#00C8F0}
.dna-dot.b{background:#1A4A5E}
@keyframes dnaL{0%{transform:translateX(-8px) translateY(0px)}25%{transform:translateX(0px) translateY(-14px)}50%{transform:translateX(8px) translateY(0px)}75%{transform:translateX(0px) translateY(14px)}100%{transform:translateX(-8px) translateY(0px)}}
@keyframes dnaR{0%{transform:translateX(8px) translateY(0px)}25%{transform:translateX(0px) translateY(14px)}50%{transform:translateX(-8px) translateY(0px)}75%{transform:translateX(0px) translateY(-14px)}100%{transform:translateX(8px) translateY(0px)}}

/* 8. Signal bars */
.bars-shell{display:flex;align-items:flex-end;gap:3px;height:42px;width:42px;justify-content:center;padding-bottom:4px}
.bar{width:7px;border-radius:2px 2px 0 0;background:#00C8F0;animation:barPulse 1.4s ease-in-out infinite}
.bar:nth-child(1){height:12px;animation-delay:0s}
.bar:nth-child(2){height:20px;animation-delay:.15s}
.bar:nth-child(3){height:30px;animation-delay:.3s}
.bar:nth-child(4){height:22px;animation-delay:.45s}
.bar:nth-child(5){height:14px;animation-delay:.6s}
@keyframes barPulse{0%,100%{opacity:.3}50%{opacity:1}}

/* 9. Rotating tetrahedron */
.tetra-shell{width:42px;height:42px;display:grid;place-items:center}
.tetra-svg{animation:tetraSpin 5s linear infinite}
@keyframes tetraSpin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}

/* 10. Breathing halo */
.halo-core{position:absolute;inset:50%;width:10px;height:10px;margin:-5px 0 0 -5px;border-radius:50%;background:#00C8F0;animation:haloCore 2s ease-in-out infinite}
.halo-ring{position:absolute;inset:50%;border-radius:50%;border:1px solid rgba(0,200,240,.5);animation:haloBreath 2s ease-in-out infinite}
.hr1{width:22px;height:22px;margin:-11px 0 0 -11px;animation-delay:.1s}
.hr2{width:32px;height:32px;margin:-16px 0 0 -16px;animation-delay:.2s}
.hr3{width:42px;height:42px;margin:-21px 0 0 -21px;animation-delay:.3s}
@keyframes haloCore{0%,100%{transform:scale(1);opacity:.8}50%{transform:scale(1.2);opacity:1}}
@keyframes haloBreath{0%,100%{transform:scale(.9);opacity:.3}50%{transform:scale(1.05);opacity:.8}}
.gold-topology-mark {
    position: relative;
    width: 30px;
    height: 24px;
    display: inline-block;
    flex: 0 0 auto;
    filter: drop-shadow(0 0 4px rgba(180, 120, 24, 0.22));
    animation: gold-topology-drift 5.5s ease-in-out infinite;
  }
  
  .gold-node,
  .gold-link,
  .mini-topo .mn,
  .mini-topo .ml {
    position: absolute;
    display: block;
  }
  
  .gold-node {
    z-index: 2;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #c58a2a;
    box-shadow:
      0 0 3px rgba(210, 150, 45, 0.55),
      0 0 7px rgba(180, 110, 20, 0.22);
    animation:
      gold-node-pulse 2.8s ease-in-out infinite,
      gold-node-drift 4.8s ease-in-out infinite;
  }
  
  .gn-1 {
    left: 3px;
    top: 10px;
    width: 4px;
    height: 4px;
    animation-delay: 0s, 0s;
  }
  
  .gn-2 {
    left: 12px;
    top: 5px;
    width: 8px;
    height: 8px;
    background: var(--orange-soft);
    box-shadow:
      0 0 4px rgba(220, 170, 70, 0.65),
      0 0 10px rgba(180, 110, 20, 0.28);
    animation-delay: 0.2s, 0.35s;
  }
  
  .gn-3 {
    right: 3px;
    top: 9px;
    width: 4px;
    height: 4px;
    animation-delay: 0.4s, 0.7s;
  }
  
  .gn-4 {
    left: 18px;
    bottom: 3px;
    width: 5px;
    height: 5px;
    background: #bf8424;
    animation-delay: 0.6s, 1s;
  }
  
  .gn-5 {
    left: 7px;
    bottom: 5px;
    width: 3px;
    height: 3px;
    background: #e0b86a;
    animation-delay: 0.8s, 1.25s;
  }
  
  .gold-link {
    z-index: 1;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(214, 165, 72, 0.16),
      rgba(214, 165, 72, 0.48),
      rgba(214, 165, 72, 0.16),
      transparent
    );
    transform-origin: left center;
    opacity: 0.45;
    animation:
      gold-link-glow 2.9s ease-in-out infinite,
      gold-link-scan 3.6s linear infinite;
  }
  
  .gl-1 {
    left: 7px;
    top: 12px;
    width: 9px;
    transform: rotate(-29deg);
    animation-delay: 0s, 0s;
  }
  
  .gl-2 {
    left: 20px;
    top: 10px;
    width: 7px;
    transform: rotate(18deg);
    animation-delay: 0.25s, 0.4s;
  }
  
  .gl-3 {
    left: 17px;
    top: 13px;
    width: 9px;
    transform: rotate(78deg);
    animation-delay: 0.5s, 0.8s;
  }
  
  .gl-4 {
    left: 9px;
    top: 16px;
    width: 11px;
    transform: rotate(-18deg);
    animation-delay: 0.75s, 1.2s;
  }
  
  .brand-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  
  .brand-mark {
    position: relative;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: inline-block;
  }
  
  .brand-core {
    position: absolute;
    left: 70%;
    top: 70%;
    width: 6px;
    height: 6px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: #ffffff00;
    box-shadow:
      0 0 6px rgba(250, 204, 21, 0),
      0 0 14px rgba(249, 115, 22, 0.35);
  }
  
  .brand-orb {
    position: absolute;
    border-radius: 1px;
    transform: translate(-50%, -50%);
  }
  
  .orb-blue {
    background: #1ea7ff;
    box-shadow:
      0 0 5px rgba(30, 167, 255, 0.95),
      0 0 12px rgba(30, 167, 255, 0.35);
  }
  
  .orb-orange {
    background: #f97316;
    box-shadow:
      0 0 5px rgba(249, 115, 22, 0.95),
      0 0 12px rgba(249, 115, 22, 0.35);
  }
  
  /* uneven orbital positions */
  .orb-1 {
    width: 5px;
    height: 5px;
    left: 50%;
    top: 3px;
  }
  
  .orb-2 {
    width: 4px;
    height: 4px;
    left: 78%;
    top: 29%;
  }
  
  .orb-3 {
    width: 3px;
    height: 3px;
    left: 73%;
    top: 78%;
  }
  
  .orb-4 {
    width: 5px;
    height: 5px;
    left: 25%;
    top: 72%;
  }
  
  .orb-5 {
    width: 3px;
    height: 3px;
    left: 18%;
    top: 34%;
  }
  
  @keyframes gold-topology-drift {
    0%, 100% {
      transform: translateY(0) rotate(0deg);
    }
  
    35% {
      transform: translateY(-1px) rotate(-2deg);
    }
  
    70% {
      transform: translateY(1px) rotate(2deg);
    }
  }
  
  @keyframes gold-node-pulse {
    0%, 100% {
      opacity: 0.62;
    }
  
    45% {
      opacity: 0.95;
    }
  
    70% {
      opacity: 0.72;
    }
  }
  
  @keyframes gold-node-drift {
    0%, 100% {
      transform: translate(0, 0) scale(1);
    }
  
    25% {
      transform: translate(0.7px, -0.5px) scale(1.08);
    }
  
    50% {
      transform: translate(-0.4px, 0.6px) scale(0.96);
    }
  
    75% {
      transform: translate(0.5px, 0.4px) scale(1.04);
    }
  }
  
  @keyframes gold-link-glow {
    0%, 100% {
      opacity: 0.22;
    }
  
    45% {
      opacity: 0.62;
    }
  
    70% {
      opacity: 0.34;
    }
  }
  
  @keyframes gold-link-scan {
    0% {
      filter: brightness(0.75);
    }
  
    50% {
      filter: brightness(1.15);
    }
  
    100% {
      filter: brightness(0.75);
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .gold-topology-mark,
    .gold-node,
    .gold-link {
      animation: none;
    }
  }

  .ma-topology-cube {
    position: relative;
    width: 36px;
    height: 36px;
    display: inline-block;
    flex: 0 0 auto;
    transform-style: preserve-3d;
    perspective: 280px;
    animation: ma-topology-float 4.5s ease-in-out infinite;
  }
  
  .ma-cube-face,
  .ma-cube-edge,
  .ma-cube-node,
  .ma-radar-ring,
  .ma-radar-sweep,
  .ma-radar-core,
  .ma-radar-blip {
    position: absolute;
    display: block;
    box-sizing: border-box;
  }
  
  .ma-cube-face {
    width: 15px;
    height: 15px;
    border: 1px solid rgba(104, 221, 248, 0.56);
    border-radius: 4px;
    background: rgba(12, 170, 200, 0.1);
    box-shadow:
      inset 0 0 8px rgba(104, 221, 248, 0.08),
      0 0 7px rgba(104, 221, 248, 0.12);
  }
  
  .ma-cube-front {
    left: 7px;
    top: 14px;
    animation: ma-cube-face-pulse 2.8s ease-in-out infinite;
  }
  
  .ma-cube-back {
    left: 16px;
    top: 6px;
    opacity: 0.58;
    animation: ma-cube-face-pulse 2.8s ease-in-out infinite reverse;
  }
  
  .ma-cube-edge {
    height: 1px;
    width: 12px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(104, 221, 248, 0.58),
      transparent
    );
    transform-origin: left center;
    opacity: 0.5;
    animation: ma-cube-edge-glow 2.5s ease-in-out infinite;
  }
  
  .ma-edge-1 {
    left: 10px;
    top: 14px;
    transform: rotate(-42deg);
  }
  
  .ma-edge-2 {
    left: 22px;
    top: 14px;
    transform: rotate(-42deg);
    animation-delay: 0.2s;
  }
  
  .ma-edge-3 {
    left: 10px;
    top: 29px;
    transform: rotate(-42deg);
    animation-delay: 0.4s;
  }
  
  .ma-edge-4 {
    left: 22px;
    top: 29px;
    transform: rotate(-42deg);
    animation-delay: 0.6s;
  }
  
  .ma-cube-node {
    z-index: 3;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(104, 221, 248, 0.82);
    box-shadow:
      0 0 5px rgba(104, 221, 248, 0.65),
      0 0 10px rgba(34, 211, 238, 0.18);
    animation: ma-cube-node-drift 3.1s ease-in-out infinite;
  }
  
  .ma-cn-1 {
    left: 5px;
    top: 13px;
  }
  
  .ma-cn-2 {
    left: 23px;
    top: 5px;
    animation-delay: 0.25s;
  }
  
  .ma-cn-3 {
    left: 22px;
    top: 28px;
    animation-delay: 0.5s;
  }
  
  .ma-cn-4 {
    left: 14px;
    top: 20px;
    width: 7px;
    height: 7px;
    background: rgba(125, 235, 245, 0.9);
    animation-delay: 0.75s;
  }
  
  @keyframes ma-topology-float {
    0%, 100% {
      transform: translateY(0) rotateX(0deg) rotateZ(0deg);
    }
  
    35% {
      transform: translateY(-1px) rotateX(9deg) rotateZ(-3deg);
    }
  
    70% {
      transform: translateY(1px) rotateX(-6deg) rotateZ(3deg);
    }
  }
  
  @keyframes ma-cube-face-pulse {
    0%, 100% {
      opacity: 0.38;
    }
  
    50% {
      opacity: 0.78;
    }
  }
  
  @keyframes ma-cube-edge-glow {
    0%, 100% {
      opacity: 0.2;
      filter: brightness(0.8);
    }
  
    50% {
      opacity: 0.68;
      filter: brightness(1.25);
    }
  }
  
  @keyframes ma-cube-node-drift {
    0%, 100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.68;
    }
  
    45% {
      transform: translate(0.8px, -0.7px) scale(1.18);
      opacity: 1;
    }
  
    75% {
      transform: translate(-0.5px, 0.5px) scale(0.94);
      opacity: 0.72;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .ma-topology-cube,
    .ma-cube-face,
    .ma-cube-edge,
    .ma-cube-node {
      animation: none;
    }
  }
  .ma-radar {
    position: relative;
    width: 36px;
    height: 36px;
    display: inline-block;
    flex: 0 0 auto;
    border-radius: 999px;
    overflow: hidden;
    filter: drop-shadow(0 0 5px rgba(104, 221, 248, 0.28));
  }
  
  .ma-radar-ring {
    inset: 7px;
    border-radius: 999px;
    border: 1px solid rgba(104, 221, 248, 0.28);
    animation: ma-radar-ring-pulse 3s ease-in-out infinite;
  }
  
  .ma-radar-ring.rr2 {
    inset: 3px;
    opacity: 0.6;
    animation-delay: 0.45s;
  }
  
  .ma-radar-ring.rr3 {
    inset: 12px;
    opacity: 0.75;
    animation-delay: 0.9s;
  }
  
  .ma-radar-sweep {
    left: 18px;
    top: 18px;
    width: 15px;
    height: 1px;
    transform-origin: left center;
    background: linear-gradient(
      90deg,
      rgba(104, 221, 248, 0.75),
      rgba(104, 221, 248, 0.18),
      transparent
    );
    animation: ma-radar-sweep-spin 2.8s linear infinite;
  }
  
  .ma-radar-sweep::before {
    content: "";
    position: absolute;
    left: 0;
    top: -15px;
    width: 15px;
    height: 30px;
    background: conic-gradient(
      from -24deg,
      rgba(104, 221, 248, 0.16),
      rgba(104, 221, 248, 0.02),
      transparent 40%
    );
    transform-origin: left center;
  }
  
  .ma-radar-core {
    left: 15px;
    top: 15px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(104, 221, 248, 0.82);
    box-shadow:
      0 0 5px rgba(104, 221, 248, 0.7),
      0 0 12px rgba(34, 211, 238, 0.18);
    animation: ma-radar-core-pulse 2.2s ease-in-out infinite;
  }
  
  .ma-radar-blip {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(104, 221, 248, 0.86);
    box-shadow: 0 0 6px rgba(104, 221, 248, 0.62);
    animation: ma-radar-blip 2.8s ease-in-out infinite;
  }
  
  .ma-radar-blip.rb1 {
    left: 9px;
    top: 12px;
  }
  
  .ma-radar-blip.rb2 {
    right: 8px;
    bottom: 10px;
    width: 3px;
    height: 3px;
    animation-delay: 1.1s;
  }
  
  @keyframes ma-radar-sweep-spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes ma-radar-ring-pulse {
    0%, 100% {
      opacity: 0.18;
      transform: scale(0.92);
    }
  
    50% {
      opacity: 0.62;
      transform: scale(1);
    }
  }
  
  @keyframes ma-radar-core-pulse {
    0%, 100% {
      transform: scale(0.92);
      opacity: 0.7;
    }
  
    50% {
      transform: scale(1.18);
      opacity: 1;
    }
  }
  
  @keyframes ma-radar-blip {
    0%, 100% {
      opacity: 0.18;
      transform: scale(0.85);
    }
  
    35% {
      opacity: 0.95;
      transform: scale(1.2);
    }
  
    70% {
      opacity: 0.35;
      transform: scale(0.95);
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .ma-radar-ring,
    .ma-radar-sweep,
    .ma-radar-core,
    .ma-radar-blip {
      animation: none;
    }
  }

  .price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 16px 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 32, 44, 0.92), rgba(5, 18, 28, 0.94));
  border-color: rgba(103, 232, 249, 0.26);
}

.price-card.featured {
  border-color: rgba(86, 207, 249, 0.55);
  box-shadow:
    0 0 0 1px rgba(86, 207, 249, 0.14),
    0 0 28px rgba(86, 207, 249, 0.12),
    0 0 34px rgba(74, 222, 128, 0.08);
}

.price-card.featured::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(86, 207, 249, 0.85),
    rgba(74, 222, 128, 0.55),
    transparent
  );
}

.price-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.price-title-row h2 {
  margin: 0 0 4px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.plan-badge {
  color: rgba(236, 254, 255, 0.92);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 500;
}

.price-card.featured .plan-badge {
  color: rgba(236, 254, 255, 0.92);
}

.plan-desc {
  min-height: 0;
  margin: 0 0 10px;
  color: rgba(56, 189, 248, 0.95);
  font-size: 13px;
  line-height: 1.45;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(103, 232, 249, 0.22);
  position: relative;
}

.price::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, rgba(104, 221, 248, 0.55), rgba(74, 222, 128, 0.35), transparent);
}

.price strong {
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.price span {
  color: rgba(187, 247, 208, 0.95);
  font-size: 13px;
  font-weight: 800;
}

.price-bullets {
  flex: 1;
  margin: 0 0 14px;
  padding-left: 16px;
}

.price-bullets li {
  margin-bottom: 7px;
  color: rgba(203, 213, 225, 0.74);
  font-size: 13px;
  line-height: 1.35;
}

.price-bullets li::marker {
  color: rgba(103, 232, 249, 0.86);
}

.price-btn {
  width: 100%;
  min-height: 36px;
  margin-top: auto;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
}

.price-card .btn {
  border-color: rgba(103, 232, 249, 0.38);
  color: rgba(103, 232, 249, 0.98);
}

.price-card .btn:hover {
  border-color: rgba(103, 232, 249, 0.76);
  background: rgba(8, 145, 178, 0.16);
  box-shadow:
    0 0 18px rgba(34, 211, 238, 0.16),
    inset 0 0 12px rgba(103, 232, 249, 0.06);
  transform: translateY(-1px);
}

.price-card .btn.primary:hover {
  box-shadow:
    0 0 24px rgba(99, 102, 241, 0.3),
    0 0 20px rgba(103, 232, 249, 0.18);
}

/* Small animated plan icons */

.mini-plan-icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  opacity: 0.82;
}

/* Smart: three memory dots */

.mini-smart span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(103, 232, 249, 0.72);
  box-shadow: 0 0 7px rgba(103, 232, 249, 0.36);
  animation: mini-pulse 2.7s ease-in-out infinite;
}

.mini-smart span:nth-child(1) {
  width: 5px;
  height: 5px;
  left: 4px;
  top: 13px;
}

.mini-smart span:nth-child(2) {
  width: 9px;
  height: 9px;
  left: 13px;
  top: 6px;
  animation-delay: 0.25s;
}

.mini-smart span:nth-child(3) {
  width: 5px;
  height: 5px;
  right: 4px;
  bottom: 7px;
  animation-delay: 0.5s;
}

/* Chart: tiny bars */

.mini-chart .mb {
  position: absolute;
  display: block;
  bottom: 5px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(103, 232, 249, 0.72), rgba(56, 189, 248, 0.32));
  box-shadow: 0 0 6px rgba(86, 207, 249, 0.22);
  animation: mini-bars 2.5s ease-in-out infinite;
}

.mini-chart .b1 {
  left: 6px;
  height: 11px;
}

.mini-chart .b2 {
  left: 13px;
  height: 19px;
  animation-delay: 0.2s;
}

.mini-chart .b3 {
  left: 20px;
  height: 14px;
  animation-delay: 0.4s;
}

/* Topological: tiny network */

.mini-topo .mn {
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(103, 232, 249, 0.68);
  box-shadow: 0 0 6px rgba(103, 232, 249, 0.34);
  animation: mini-pulse 2.8s ease-in-out infinite;
}

.mini-topo .n1 {
  left: 6px;
  top: 7px;
}

.mini-topo .n2 {
  right: 6px;
  top: 11px;
  animation-delay: 0.25s;
}

.mini-topo .n3 {
  left: 13px;
  bottom: 6px;
  animation-delay: 0.5s;
}

.mini-topo .ml {
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.45), transparent);
  transform-origin: left center;
  animation: mini-link 2.8s ease-in-out infinite;
}

.mini-topo .l1 {
  left: 10px;
  top: 10px;
  width: 14px;
  transform: rotate(14deg);
}

.mini-topo .l2 {
  left: 12px;
  top: 13px;
  width: 13px;
  transform: rotate(62deg);
  animation-delay: 0.4s;
}

@keyframes mini-pulse {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.18);
    opacity: 0.95;
  }
}

@keyframes mini-bars {
  0%, 100% {
    transform: scaleY(0.82);
    opacity: 0.55;
  }

  50% {
    transform: scaleY(1.08);
    opacity: 0.9;
  }
}

@keyframes mini-link {
  0%, 100% {
    opacity: 0.18;
  }

  50% {
    opacity: 0.58;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mini-smart span,
  .mini-chart .mb,
  .mini-topo .mn,
  .mini-topo .ml {
    animation: none;
  }
}
.notifications-title {
    color: rgba(236, 254, 255, 0.95);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .notifications-empty {
    color: rgba(148, 163, 184, 0.82);
    font-size: 13px;
    line-height: 1.45;
  }

/* ── Public API docs page ───────────────────────────────────── */
body[data-page="api"] .api-hero {
  max-width: none;
  padding: 28px;
  border: 1px solid rgba(86, 207, 249, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(86, 207, 249, 0.12), rgba(86, 207, 249, 0.035) 48%, rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.22);
}

body[data-page="api"] .api-hero h1 {
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.api-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.api-info-card {
  min-height: 168px;
}

.api-info-card .api-icon-dot {
  width: 9px;
  height: 9px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(103, 232, 249, 0.82);
  box-shadow: 0 0 10px rgba(103, 232, 249, 0.42);
}

.api-info-card span {
  display: block;
  color: rgba(126, 239, 197, 0.72);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.api-section {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(86, 207, 249, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(86, 207, 249, 0.07), transparent 44%),
    rgba(0, 0, 0, 0.22);
}

.section-head {
  max-width: 780px;
  margin-bottom: 16px;
}

.section-head h2,
.api-final-card h2 {
  margin: 0 0 8px;
  color: #f6fbff;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.section-head p,
.api-final-card p {
  margin: 0;
  color: rgba(205, 220, 235, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.api-arch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.api-arch-step {
  min-height: 154px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background:
    linear-gradient(150deg, rgba(86, 207, 249, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.24);
}

.api-arch-step span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.api-arch-step h3 {
  margin: 0 0 8px;
  color: #f6fbff;
  font-size: 15px;
}

.api-code {
  overflow-x: auto;
  margin: 10px 0;
  padding: 14px 16px;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 12px;
  background: rgba(2, 8, 14, 0.72);
  color: rgba(236, 254, 255, 0.90);
  font-size: 12px;
  line-height: 1.55;
}

.route-list {
  display: grid;
  gap: 8px;
}

.route-row {
  display: grid;
  grid-template-columns: 82px minmax(180px, 0.7fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.20);
}

.route-method {
  border-radius: 999px;
  padding: 4px 8px;
  text-align: center;
  color: #061018;
  background: rgba(103, 232, 249, 0.86);
  font-size: 10px;
  font-weight: 900;
}

.route-method.post,
.route-method.put {
  background: rgba(126, 239, 197, 0.86);
}

.route-method.delete {
  background: rgba(244, 63, 94, 0.78);
}

.route-row code {
  color: rgba(236, 254, 255, 0.92);
  font-size: 12px;
}

.route-row p {
  margin: 0;
  color: rgba(205, 220, 235, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.route-auth {
  color: rgba(148, 163, 184, 0.82);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.api-final-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

@media (max-width: 980px) {
  .api-panel-grid,
  .api-arch-grid {
    grid-template-columns: 1fr 1fr;
  }

  .route-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .route-method {
    width: max-content;
  }
}

@media (max-width: 640px) {
  .api-panel-grid,
  .api-arch-grid,
  body[data-page="features"] .feat-tabs {
    grid-template-columns: 1fr;
  }

  .api-final-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================
   ROLE-BASED COLOR TOKENS
   Separate text, titles, buttons, links, borders, glow.
   Change a button here — only buttons change.
   Change a title here — only titles change.
   ========================================================= */

:root {
    /* Text */
    --color-page-text: rgba(200, 208, 220, 0.92);
    --color-muted-text: #9FB0C2;
    --color-title-text: #f8fbff;
    --color-subtitle-text: #b8c7d6;

    /* Links */
    --color-link-text: #67c9f5;
    --color-link-hover: #d9fbff;

    /* Brand / accent text */
    --color-kicker-text: rgba(104, 221, 248, 0.9);

    /* Buttons — primary (filled) */
    --color-button-primary-bg-a: #67e8f9;
    --color-button-primary-bg-b: #60a5fa;
    --color-button-primary-text: #061018;

    /* Buttons — secondary (outline) */
    --color-button-secondary-bg: rgba(103, 232, 249, 0.06);
    --color-button-secondary-border: rgba(103, 232, 249, 0.38);
    --color-button-secondary-text: rgba(103, 232, 249, 0.96);
    --color-button-secondary-hover-bg: rgba(103, 232, 249, 0.14);
    --color-button-secondary-hover-border: rgba(103, 232, 249, 0.70);

    /* Panels / borders */
    --color-panel-border: rgba(103, 232, 249, 0.16);
    --color-panel-bg: rgba(10, 20, 32, 0.86);

    /* Glow */
    --color-glow: rgba(103, 232, 249, 0.22);
}

/* =========================================================
   BUTTONS — scoped to their own tokens
   ========================================================= */

.btn,
a.btn {
    color: var(--color-button-secondary-text);
    background: var(--color-button-secondary-bg);
    border-color: var(--color-button-secondary-border);
    text-decoration: none;
}

.btn:hover,
a.btn:hover {
    color: var(--color-button-secondary-text);
    background: var(--color-button-secondary-hover-bg);
    border-color: var(--color-button-secondary-hover-border);
}

.btn.primary,
a.btn.primary {
    color: var(--color-button-primary-text) !important;
    background: linear-gradient(
        135deg,
        var(--color-button-primary-bg-a),
        var(--color-button-primary-bg-b)
    ) !important;
    border-color: transparent !important;
}

.btn.primary:hover,
a.btn.primary:hover {
    color: var(--color-button-primary-text) !important;
    filter: brightness(1.06);
}

.auth-btn.primary {
    color: var(--color-button-primary-text) !important;
    background: linear-gradient(135deg, var(--color-button-primary-bg-a), var(--color-button-primary-bg-b)) !important;
    border-color: transparent !important;
}

/* =========================================================
   LINKS — separate from buttons and titles
   ========================================================= */

a:not(.btn):not(.auth-btn):not(.brand-home):not(.icon-btn):not([class]) {
    color: var(--color-link-text);
}

a:not(.btn):not(.auth-btn):not(.brand-home):not(.icon-btn):not([class]):hover {
    color: var(--color-link-hover);
}

/* =========================================================
   KICKER / CARD LABELS — own token, not tied to button color
   ========================================================= */

.kicker,
.card-label {
    color: var(--color-kicker-text) !important;
}
/* =========================================================
   ONE-PAGE TYPOGRAPHY SCALE
   Stop the hero from eating the entire layout.
   Put this at the very bottom.
   ========================================================= */

.syn-hero h1 {
    font-size: 34px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
    font-weight: 800 !important;
    max-width: 680px !important;
    margin-bottom: 10px !important;
}

.syn-feature-copy h2 {
    font-size: 26px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
}

.syn-hero p,
.syn-feature-copy p,
.syn-feature-list p,
.syn-path-item p,
.syn-step p {
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.syn-path-item strong,
.syn-step strong {
    font-size: 14px !important;
}

.syn-tab,
.syn-btn {
    font-size: 11px !important;
}

.kicker,
.card-label {
    font-size: 10px !important;
}