:root {
    --night: #070b14;
    --ink: #f6f3ea;
    --muted: #b8b3a6;
    --beam: #ffd54a;
    --beam-deep: #e6b800;
    --silhouette: #0c1220;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 0;
    background: var(--beam);
    color: #14110a;
    font-weight: 800;
    box-shadow: 0 0 0 6px rgba(255, 213, 74, 0.18), 0 0 28px rgba(255, 213, 74, 0.45);
}
.btn:hover { background: #ffe27a; }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    box-shadow: inset 0 0 0 2px var(--ink);
}
.btn-lg { padding: 14px 28px; font-size: 16px; }

.nav-light {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #14110a;
}
.nav-light span { padding: 8px; text-align: center; }
.nav-light span:nth-child(1) { background: #c9a227; }
.nav-light span:nth-child(2) { background: var(--beam); }
.nav-light span:nth-child(3) { background: #ffe27a; }
.nav-light span:nth-child(4) { background: #fff4c2; }

.site-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #0b101c;
    border-bottom: 1px solid #1d2638;
}
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 800; }
.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--beam);
    color: #14110a;
    display: grid;
    place-items: center;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.nav-menu { display: flex; gap: 16px; flex-wrap: wrap; }
.nav-menu a { font-size: 14px; color: var(--muted); font-weight: 700; }
.nav-menu a:hover, .nav-menu a.active { color: var(--beam); }
.nav-actions { display: flex; gap: 8px; }
.nav-toggle { display: none; }
.nav-burger { display: none; border: 2px solid var(--beam); color: var(--beam); padding: 7px 10px; }

.hero {
    padding: 56px 0 40px;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 213, 74, 0.22), transparent 28%),
        linear-gradient(180deg, #0b101c 0%, #070b14 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.tag {
    display: inline-block;
    color: var(--beam);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}
.hero h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.2; margin-bottom: 12px; }
.hero-kicker { color: var(--beam); font-weight: 800; margin-bottom: 8px; }
.hero p { color: var(--muted); margin-bottom: 18px; }
.beacon { padding: 6px 0; }
.meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; font-size: 13px; color: var(--muted); }
.hero-visual img { width: 100%; filter: contrast(1.15); }

.data-band { background: #05070d; color: var(--ink); padding: 24px 0; border-top: 1px solid #1d2638; border-bottom: 1px solid #1d2638; }
.data-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
.data-num { font-size: 28px; font-weight: 800; color: var(--beam); }
.data-label { font-size: 13px; color: var(--muted); }

.section { padding: 68px 0; }
.section.alt { background: #0b101c; }
.section-head { text-align: center; margin-bottom: 28px; }
.section-head h2 { font-size: 26px; margin-bottom: 8px; }
.section-head p { color: var(--muted); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: #101828; padding: 20px; border: 1px solid #1d2638; }
.card h3 { margin: 8px 0; }
.card p { color: var(--muted); font-size: 14px; }
.icon {
    width: 16px;
    height: 16px;
    background: var(--beam);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    display: inline-block;
}
.solution-card { padding: 0; overflow: hidden; }
.solution-card img { height: 168px; width: 100%; object-fit: cover; filter: contrast(1.2) grayscale(.15); }
.solution-card div { padding: 16px; }
.price { font-size: 22px; color: var(--beam); font-weight: 800; margin: 6px 0 8px; }
.card.main { outline: 2px solid var(--beam); }

.cta { padding: 60px 0; text-align: center; background: #05070d; }
.cta h2 { font-size: 28px; margin-bottom: 8px; }
.cta p { margin-bottom: 16px; color: var(--muted); }
.cta .btn-ghost { color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.site-footer { background: #05070d; color: var(--muted); padding: 42px 0 16px; border-top: 1px solid #1d2638; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 18px; margin-bottom: 16px; }
.footer-grid h4 { color: var(--beam); margin-bottom: 8px; }
.footer-grid a, .footer-grid p { display: block; margin-bottom: 8px; font-size: 14px; color: var(--muted); }
.logo-light { color: var(--ink); }
.footer-bottom { border-top: 1px solid #1d2638; padding-top: 12px; text-align: center; font-size: 12px; }

.page-hero { padding: 40px 0 8px; text-align: center; }
.page-hero h1 { font-size: 30px; margin-bottom: 8px; }
.page-hero p { color: var(--muted); }

.dl-list { display: grid; gap: 12px; }
.dl-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: #101828;
    border: 1px solid #1d2638;
    padding: 20px;
}
.dl-item.main { border-color: var(--beam); }
.specs { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0; font-size: 12px; color: var(--muted); }
.specs span { background: #0b101c; padding: 2px 8px; }
.shot { max-width: 840px; margin: 24px auto 0; }

.help-list { display: grid; gap: 12px; max-width: 840px; margin: 0 auto; }
.help-box { background: #101828; border: 1px solid #1d2638; padding: 22px; }
.help-box h3 { color: var(--beam); margin-bottom: 8px; }
.help-box p { color: var(--muted); margin-bottom: 8px; }

@media (max-width: 992px) {
    .nav-burger { display: inline-block; }
    .nav-toggle:checked + .nav-burger + .nav-menu { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        left: 16px;
        right: 16px;
        top: 118px;
        background: #0b101c;
        border: 1px solid #1d2638;
        padding: 12px;
        flex-direction: column;
    }
    .hero-grid, .grid-3, .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-light { grid-template-columns: 1fr 1fr; }
    .data-grid { grid-template-columns: 1fr 1fr; }
    .dl-item { flex-direction: column; text-align: center; }
    .nav-actions .btn-ghost { display: none; }
}

@media (max-width: 640px) {
    .hero-grid, .grid-3, .footer-grid { grid-template-columns: 1fr; }
}
