:root {
    --lane: #0e2a36;
    --ink: #e7f4f8;
    --mute: #8fb3bf;
    --queue: #14b8a6;
    --wait: #38bdf8;
    --peak: #f59e0b;
    --board: #123744;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "IBM Plex Sans", "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background: #0a1c24;
    line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }

.queue-bar {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    height: 10px;
    background: #07141a;
}
.queue-bar i {
    border-right: 1px solid #0e2a36;
}
.queue-bar i:nth-child(3n) { background: var(--queue); }
.queue-bar i:nth-child(5n) { background: var(--wait); }
.queue-bar i:nth-child(7n) { background: var(--peak); }

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--lane);
    border-bottom: 1px solid #1a4554;
}
.nav-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 66px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-family: "IBM Plex Mono", Consolas, monospace;
}
.logo-mark {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    background: var(--queue);
    color: #042f2e;
    font-size: 12px;
}
.logo small { display: block; font-size: 10px; color: var(--mute); letter-spacing: 0.12em; font-weight: 500; }
.nav-toggle { display: none; }
.nav-burger {
    display: none;
    margin-left: auto;
    padding: 5px 10px;
    background: var(--queue);
    color: #042f2e;
    font-size: 11px;
    font-weight: 800;
}
.nav-menu { display: flex; gap: 14px; flex: 1; font-size: 13px; }
.nav-menu a { color: var(--mute); }
.nav-menu a.active, .nav-menu a:hover { color: var(--queue); }
.nav-actions { display: flex; gap: 8px; }

.btn {
    display: inline-block;
    padding: 8px 14px;
    background: var(--queue);
    color: #042f2e;
    font-weight: 800;
    font-size: 13px;
}
.btn:hover { background: #2dd4bf; }
.btn-lg { padding: 11px 18px; }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid #1a4554;
}

.hero { padding: 42px 0 28px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: center;
}
.hero-kicker {
    font-family: "IBM Plex Mono", Consolas, monospace;
    color: var(--wait);
    font-size: 11px;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.hero h1 {
    font-size: clamp(28px, 3.8vw, 40px);
    line-height: 1.18;
    margin-bottom: 12px;
}
.hero p { color: var(--mute); max-width: 40em; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.hero-visual {
    background: var(--board);
    border: 1px solid #1a4554;
}
.lane-head {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    font-size: 11px;
    font-family: "IBM Plex Mono", Consolas, monospace;
    color: var(--mute);
    background: #0e2a36;
}
.hero-visual img { width: 100%; }

.data-band { background: var(--board); }
.data-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.data-grid > div {
    padding: 18px 14px;
    border-right: 1px solid #1a4554;
}
.data-grid > div:last-child { border-right: 0; }
.data-num {
    font-family: "IBM Plex Mono", Consolas, monospace;
    font-size: 22px;
    font-weight: 700;
    color: var(--queue);
}
.data-label { color: var(--mute); font-size: 12px; }
.qbar { height: 4px; background: #1a4554; margin-top: 8px; }
.qbar i { display: block; height: 100%; background: var(--queue); }
.data-grid > div:nth-child(2) .qbar i { width: 72%; background: var(--wait); }
.data-grid > div:nth-child(3) .qbar i { width: 48%; background: var(--peak); }
.data-grid > div:nth-child(4) .qbar i { width: 96%; }

.section { padding: 44px 0; }
.section.alt { background: #0e2a36; }
.section-head { margin-bottom: 16px; display: flex; justify-content: space-between; align-items: end; gap: 16px; }
.section-head h2 { font-size: 22px; }
.section-head p { color: var(--mute); font-size: 14px; }
.section-head small {
    font-family: "IBM Plex Mono", Consolas, monospace;
    color: var(--wait);
    font-size: 11px;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.card {
    padding: 18px;
    background: var(--board);
    border-left: 4px solid var(--queue);
}
.card.main { border-left-color: var(--peak); }
.card:nth-child(2) { border-left-color: var(--wait); }
.card:nth-child(3) { border-left-color: var(--peak); }
.card:nth-child(5) { border-left-color: var(--wait); }
.card h3 { margin: 6px 0; font-size: 16px; }
.card p { color: var(--mute); font-size: 14px; }
.icon {
    width: 100%;
    height: 5px;
    background: #1a4554;
    position: relative;
}
.icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 58%;
    background: var(--queue);
}
.solution-card { padding: 0; border-left: 0; overflow: hidden; }
.solution-card img { height: 150px; width: 100%; object-fit: cover; }
.solution-card div { padding: 14px 16px 16px; border-left: 4px solid var(--queue); }
.price {
    font-family: "IBM Plex Mono", Consolas, monospace;
    color: var(--queue);
    margin-bottom: 6px;
    font-size: 12px;
}

.cta {
    padding: 50px 0;
    text-align: center;
    background: var(--lane);
}
.cta h2 { font-size: 26px; margin-bottom: 8px; }
.cta p { color: var(--mute); margin-bottom: 18px; }
.cta-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

.site-footer {
    padding: 30px 0 16px;
    background: #07141a;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 18px; }
.footer-grid h4 {
    font-family: "IBM Plex Mono", Consolas, monospace;
    color: var(--wait);
    margin-bottom: 8px;
    font-size: 11px;
}
.footer-grid a, .footer-grid p { display: block; color: var(--mute); margin-bottom: 5px; font-size: 13px; }
.footer-bottom {
    margin-top: 16px;
    padding-top: 10px;
    border-top: 1px solid #1a4554;
    color: #6b8e99;
    font-size: 12px;
    font-family: "IBM Plex Mono", Consolas, monospace;
}

.page-hero { padding: 32px 0 6px; }
.page-hero h1 { font-size: 28px; margin: 8px 0; }
.page-hero p { color: var(--mute); max-width: 44em; }
.dl-list, .help-list { display: grid; gap: 8px; }
.dl-item, .help-box {
    padding: 18px 20px;
    background: var(--board);
    border-left: 4px solid var(--queue);
}
.dl-item { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.dl-item.main { border-left-color: var(--peak); }
.specs {
    display: flex;
    gap: 12px;
    color: var(--wait);
    font-size: 12px;
    margin: 6px 0;
    font-family: "IBM Plex Mono", Consolas, monospace;
}
.shot { margin-top: 18px; border: 1px solid #1a4554; }
.shot img { width: 100%; }

@media (max-width: 900px) {
    .nav-burger { display: inline-block; }
    .nav-menu, .nav-actions { display: none; }
    .nav-toggle:checked ~ .nav-menu,
    .nav-toggle:checked ~ .nav-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-bottom: 12px;
    }
    .nav-wrap { flex-wrap: wrap; }
    .hero-grid, .grid-3, .data-grid, .footer-grid, .dl-item, .section-head { grid-template-columns: 1fr; display: grid; }
    .data-grid > div { border-right: 0; border-bottom: 1px solid #1a4554; }
}
