:root {
    --sky: #d9ecff;
    --ink: #1e2740;
    --muted: #5a6580;
    --lilac: #8b7cff;
    --peach: #ff9b7a;
    --mint: #5fd0b0;
    --white: #f7fbff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
    background: var(--sky);
    color: var(--ink);
    line-height: 1.75;
}
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: 11px 22px;
    border: 0;
    border-radius: 999px;
    background: var(--lilac);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(139, 124, 255, 0.28);
}
.btn:hover { background: #6f62e6; }
.btn-ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--lilac); }
.btn-lg { padding: 13px 26px; font-size: 16px; }

.float-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--ink);
}
.float-bar span { padding: 8px; text-align: center; }
.float-bar span:nth-child(1) { background: #cfe6ff; }
.float-bar span:nth-child(2) { background: #ddd6ff; }
.float-bar span:nth-child(3) { background: #ffe0d4; }
.float-bar span:nth-child(4) { background: #c8f3e6; }

.site-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(247, 251, 255, 0.88);
    border-bottom: 1px solid #c5daf0;
    backdrop-filter: blur(10px);
}
.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;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lilac), var(--peach));
    color: #fff;
    display: grid;
    place-items: center;
    transform: rotate(-8deg);
}
.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(--lilac); }
.nav-actions { display: flex; gap: 8px; }
.nav-toggle { display: none; }
.nav-burger { display: none; border: 1.5px solid var(--lilac); color: var(--lilac); padding: 7px 12px; border-radius: 999px; }

.hero {
    padding: 56px 0 42px;
    background:
        radial-gradient(circle at 18% 22%, rgba(139,124,255,.22), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(255,155,122,.22), transparent 24%),
        linear-gradient(180deg, #f7fbff 0%, #d9ecff 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.tag {
    display: inline-block;
    background: #fff;
    color: var(--lilac);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.hero h1 { font-size: clamp(28px, 4vw, 42px); line-height: 1.25; margin-bottom: 12px; }
.hero-kicker { color: var(--peach); font-weight: 800; margin-bottom: 8px; }
.hero p { color: var(--muted); margin-bottom: 18px; }
.desk {
    background: rgba(255,255,255,.86);
    border-radius: 22px;
    padding: 18px 20px;
    box-shadow: 0 18px 40px rgba(30,39,64,.1);
    transform: rotate(-1.5deg);
}
.meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; font-size: 13px; color: var(--muted); }
.hero-visual img { width: 100%; border-radius: 24px; transform: rotate(2deg); box-shadow: 0 22px 48px rgba(30,39,64,.12); }

.data-band { background: var(--ink); color: #fff; padding: 24px 0; }
.data-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
.data-num { font-size: 28px; font-weight: 800; color: #c8b8ff; }
.data-label { font-size: 13px; }

.section { padding: 68px 0; }
.section.alt { background: var(--white); }
.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: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 12px 28px rgba(30,39,64,.08);
}
.card:nth-child(2n) { transform: translateY(-8px); }
.card h3 { margin: 8px 0; }
.card p { color: var(--muted); font-size: 14px; }
.icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: #eee9ff;
    color: var(--lilac);
    display: grid;
    place-items: center;
    font-weight: 800;
}
.solution-card { padding: 0; overflow: hidden; }
.solution-card img { height: 168px; width: 100%; object-fit: cover; }
.solution-card div { padding: 16px; }
.price { font-size: 22px; color: var(--lilac); font-weight: 800; margin: 6px 0 8px; }
.card.main { outline: 2px solid var(--lilac); }

.cta {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--lilac), #5a4ed4);
    color: #fff;
}
.cta h2 { font-size: 28px; margin-bottom: 8px; }
.cta p { margin-bottom: 16px; }
.cta .btn { background: #fff; color: var(--ink); }
.cta .btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px #fff; }
.cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.site-footer { background: #151a2c; color: #c9d2e4; padding: 42px 0 16px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 18px; margin-bottom: 16px; }
.footer-grid h4 { color: #c8b8ff; margin-bottom: 8px; }
.footer-grid a, .footer-grid p { display: block; margin-bottom: 8px; font-size: 14px; color: #c9d2e4; }
.logo-light { color: #fff; }
.footer-bottom { border-top: 1px solid #2a3350; 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: 14px; }
.dl-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 12px 28px rgba(30,39,64,.08);
}
.dl-item.main { outline: 2px solid var(--lilac); }
.specs { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0; font-size: 12px; color: var(--muted); }
.specs span { background: #eee9ff; padding: 2px 8px; border-radius: 999px; }
.shot { max-width: 840px; margin: 24px auto 0; }
.shot img { border-radius: 22px; }

.help-list { display: grid; gap: 14px; max-width: 840px; margin: 0 auto; }
.help-box { background: #fff; border-radius: 20px; padding: 22px; box-shadow: 0 12px 28px rgba(30,39,64,.08); }
.help-box h3 { color: var(--lilac); 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: #fff;
        border-radius: 16px;
        padding: 12px;
        flex-direction: column;
    }
    .hero-grid, .grid-3, .footer-grid { grid-template-columns: 1fr 1fr; }
    .float-bar { 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; }
    .card:nth-child(2n) { transform: none; }
}

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