/* ===== 租号租 · 游戏账号租赁 — 全站共享样式 ===== */

:root {
    --bg: #05060f;
    --bg-2: #0a0b1a;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.08);
    --primary: #a855f7;
    --primary-2: #7c3aed;
    --accent: #22d3ee;
    --accent-2: #06b6d4;
    --neon: #ff2bd6;
    --neon-2: #00f0ff;
    --text: #e8e9f3;
    --muted: #9aa0bf;
    --good: #34d399;
    --warn: #fbbf24;
    --radius: 16px;
    --shadow: 0 20px 50px -20px rgba(124, 58, 237, 0.45);
    --glow-primary: 0 0 22px rgba(168, 85, 247, 0.55);
    --glow-accent: 0 0 22px rgba(34, 211, 238, 0.5);
    --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
        "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* 背景装饰：粒子 canvas + 极光光斑 + 赛博网格 */
#bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.6;
}

/* 流动极光层 */
body::before {
    content: "";
    position: fixed;
    inset: -20%;
    z-index: -1;
    background:
        radial-gradient(40vw 40vw at 12% -5%, rgba(124, 58, 237, 0.28), transparent 60%),
        radial-gradient(38vw 38vw at 95% 8%, rgba(34, 211, 238, 0.20), transparent 60%),
        radial-gradient(42vw 42vw at 50% 110%, rgba(255, 43, 214, 0.16), transparent 60%),
        radial-gradient(36vw 36vw at 80% 90%, rgba(0, 240, 255, 0.12), transparent 60%);
    filter: blur(10px);
    animation: aurora 22s ease-in-out infinite alternate;
    pointer-events: none;
}

/* 赛博网格 + 扫描线层 */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.045) 1px, transparent 1px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 3px);
    background-size: 46px 46px, 46px 46px, 100% 3px;
    -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 78%);
    mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 78%);
    opacity: 0.7;
    pointer-events: none;
    animation: gridpan 30s linear infinite;
}

@keyframes aurora {
    0%   { transform: translate3d(-3%, -2%, 0) rotate(0deg) scale(1.05); }
    50%  { transform: translate3d(3%, 2%, 0) rotate(8deg) scale(1.15); }
    100% { transform: translate3d(-2%, 3%, 0) rotate(-6deg) scale(1.08); }
}

@keyframes gridpan {
    0%   { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 46px 46px, 46px 46px, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
    body::before, body::after { animation: none; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* 矢量图标 */
.svg-icon { width: 1em; height: 1em; display: block; flex: none; }
.i-inline { display: inline-flex; align-items: center; justify-content: center; font-size: 1.05em; vertical-align: -0.16em; }

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(120deg, #fff 0%, #c4b5fd 28%, #67e8f9 52%, #ff7ae0 78%, #fff 100%);
    background-size: 260% 260%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s ease infinite;
    filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.45));
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 文字解码扰动（hero 标题） */
[data-decode] { position: relative; }
.decoding { animation: decodeFlicker 0.5s steps(2) infinite; }
@keyframes decodeFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.86; }
}

/* ===== 导航栏 ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(7, 7, 15, 0.7);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.logo .mark {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 6px 18px -4px rgba(124, 58, 237, 0.7), var(--glow-primary);
    animation: markPulse 3.2s ease-in-out infinite;
}
.logo .mark::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 1px;
    background: conic-gradient(from 0deg, var(--neon-2), var(--primary), var(--neon), var(--accent), var(--neon-2));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spin 4s linear infinite;
}
@keyframes markPulse {
    0%, 100% { box-shadow: 0 6px 18px -4px rgba(124, 58, 237, 0.7), 0 0 14px rgba(168, 85, 247, 0.5); }
    50% { box-shadow: 0 6px 22px -4px rgba(34, 211, 238, 0.8), 0 0 26px rgba(34, 211, 238, 0.6); }
}
@keyframes spin { to { transform: rotate(360deg); } }

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    position: relative;
    padding: 9px 16px;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 500;
    transition: color 0.25s, background 0.25s;
}

.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 2px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.nav-cta {
    padding: 9px 18px !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-2)) !important;
    box-shadow: 0 8px 20px -8px rgba(124, 58, 237, 0.8);
}

.nav-toggle {
    display: none;
    place-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* ===== 按钮 ===== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
    overflow: hidden;
    will-change: transform;
}

/* 流光扫过 */
.btn::before {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 80%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-18deg);
    transition: left 0.6s ease;
    pointer-events: none;
}
.btn:hover::before { left: 130%; }

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 12px 28px -12px rgba(124, 58, 237, 0.9), var(--glow-primary);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(124, 58, 237, 1), 0 0 30px rgba(168, 85, 247, 0.7); }

.btn-ghost {
    color: var(--text);
    background: var(--surface);
    border-color: var(--border);
}

.btn-ghost:hover { background: var(--surface-2); transform: translateY(-2px); }

/* ===== 通用区块 ===== */
.section { padding: 88px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    margin-bottom: 18px;
}

.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.25; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 17px; }

/* ===== Hero ===== */
.hero { position: relative; padding: 96px 0 72px; }

/* 透视赛博地平线 */
.hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 200%;
    height: 320px;
    transform: translateX(-50%) perspective(420px) rotateX(72deg);
    transform-origin: bottom center;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.28) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: linear-gradient(transparent, #000 75%);
    mask-image: linear-gradient(transparent, #000 75%);
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
    animation: gridrun 3.6s linear infinite;
}
@keyframes gridrun { to { background-position: 0 56px, 0 0; } }
@media (prefers-reduced-motion: reduce) { .hero::after { animation: none; } }

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.hero .lead { color: var(--muted); font-size: 19px; margin: 22px 0 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.hero-stats .num {
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(120deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.35));
}

.hero-stats .lbl { color: var(--muted); font-size: 14px; }

/* Hero 右侧卡片 */
.hero-card {
    position: relative;
    border-radius: 22px;
    padding: 26px;
    background: linear-gradient(160deg, rgba(168, 85, 247, 0.16), rgba(34, 211, 238, 0.09));
    border: 1px solid var(--border);
    box-shadow: var(--shadow), 0 0 40px -10px rgba(34, 211, 238, 0.35);
    backdrop-filter: blur(8px);
    transition: transform 0.15s ease-out, box-shadow 0.3s;
}
.hero-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(140deg, rgba(34, 211, 238, 0.6), transparent 40%, transparent 60%, rgba(168, 85, 247, 0.6));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-card .floating {
    position: absolute;
    right: 16px;
    top: -16px;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(7, 7, 15, 0.85);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 13px;
    box-shadow: var(--shadow);
    animation: float 4s ease-in-out infinite;
}
.hero-card .floating [data-icon] { color: var(--accent); font-size: 16px; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.mini-account {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    margin-bottom: 12px;
}

.mini-account:last-child { margin-bottom: 0; }
.mini-account .cover {
    width: 56px; height: 56px; border-radius: 13px; flex-shrink: 0;
    display: grid; place-items: center; font-size: 25px; color: #fff;
    overflow: hidden;
    background: linear-gradient(140deg, #3a1d73, #0e3550);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.mini-account .cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mini-account .meta { flex: 1; min-width: 0; }
.mini-account .meta b { font-size: 15px; }
.mini-account .meta span { display: block; color: var(--muted); font-size: 12.5px; }
.mini-account .price { color: var(--accent); font-weight: 800; font-size: 16px; }

/* ===== 卡片网格 ===== */
.grid {
    display: grid;
    gap: 22px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    transition: transform 0.25s, border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.5);
    background: var(--surface-2);
    box-shadow: 0 24px 50px -28px rgba(124, 58, 237, 0.8), 0 0 0 1px rgba(168, 85, 247, 0.18);
}

/* 旋转霓虹描边（用于强调卡片） */
.card.glow::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from var(--ang, 0deg), transparent 55%, var(--accent), var(--primary), var(--neon), transparent 95%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.85;
    pointer-events: none;
    animation: borderspin 6s linear infinite;
}

@property --ang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes borderspin { to { --ang: 360deg; } }

/* 3D 倾斜玻璃高光 */
.tilt { transform-style: preserve-3d; will-change: transform; }
.tilt .glare {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, 0.22), transparent 45%);
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
    z-index: 3;
}
.tilt:hover .glare { opacity: 1; }

.feature .ico {
    width: 54px; height: 54px; border-radius: 15px;
    display: grid; place-items: center; font-size: 25px; margin-bottom: 16px;
    color: #dccffb;
    background: linear-gradient(150deg, rgba(168, 85, 247, 0.28), rgba(34, 211, 238, 0.16));
    border: 1px solid rgba(168, 85, 247, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 24px -16px rgba(124, 58, 237, 0.9);
}
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ===== 产品 / 账号卡片 ===== */
.product-card { padding: 0; overflow: hidden; }
.product-card .cover {
    height: 172px;
    display: grid; place-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(130% 130% at 22% 4%, rgba(255, 255, 255, 0.16), transparent 46%),
        linear-gradient(135deg, #2a1356 0%, #5a2496 46%, #161a4d 100%);
}
/* 网格光影纹理 */
.product-card .cover::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(135% 120% at 50% -12%, #000, transparent 72%);
    mask-image: radial-gradient(135% 120% at 50% -12%, #000, transparent 72%);
}
/* 柔光斑 */
.product-card .cover::after {
    content: "";
    position: absolute; width: 180px; height: 180px;
    right: -48px; bottom: -68px; border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.4), transparent 70%);
    filter: blur(6px);
}
.cover-icon {
    position: relative; z-index: 1;
    font-size: 46px; color: #fff;
    filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.5));
}
.cover-icon .svg-icon { stroke-width: 1.4; }
.cover[data-theme="moba"]   { background: radial-gradient(130% 130% at 22% 4%, rgba(255,255,255,0.16), transparent 46%), linear-gradient(135deg, #3a0f53, #7a1f6e 48%, #241456); }
.cover[data-theme="fps"]    { background: radial-gradient(130% 130% at 22% 4%, rgba(255,255,255,0.14), transparent 46%), linear-gradient(135deg, #0b2a4a, #155e75 48%, #0a1f3c); }
.cover[data-theme="rpg"]    { background: radial-gradient(130% 130% at 22% 4%, rgba(255,255,255,0.16), transparent 46%), linear-gradient(135deg, #1e1b4b, #4338ca 48%, #0f2e4a); }
.cover[data-theme="battle"] { background: radial-gradient(130% 130% at 22% 4%, rgba(255,255,255,0.14), transparent 46%), linear-gradient(135deg, #0c2a22, #1a5e43 48%, #0a1f2c); }
.product-card .tag {
    position: absolute; top: 12px; left: 12px;
    font-size: 12px; font-weight: 600; padding: 4px 10px;
    border-radius: 999px; background: rgba(7, 7, 15, 0.75); color: #fff;
    border: 1px solid var(--border);
}
.product-card .tag.hot { background: rgba(239, 68, 68, 0.9); border-color: transparent; animation: hotpulse 1.8s ease-in-out infinite; }
@keyframes hotpulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
    50% { box-shadow: 0 0 0 7px rgba(239, 68, 68, 0); }
}
.product-card .cover-icon { transition: transform 0.4s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .cover-icon { transform: scale(1.12) translateY(-3px); }
/* 封面截图轮播 */
.product-card .cover .shots { position: absolute; inset: 0; z-index: 1; }
.product-card .cover .shots img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 0.9s ease, transform 0.6s ease;
}
.product-card .cover .shots img.active { opacity: 1; }
.product-card:hover .cover .shots img.active { transform: scale(1.06); }
.product-card .cover .tag { z-index: 2; }
/* 底部压暗，保证标签可读 */
.product-card .cover .shots::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7,7,15,0.35), transparent 40%, transparent 70%, rgba(7,7,15,0.45));
    z-index: 1;
}
.product-card .body { padding: 20px; }
.product-card h3 { font-size: 17px; margin-bottom: 6px; }
.product-card .desc { color: var(--muted); font-size: 13.5px; min-height: 38px; }
.product-card .chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.chip {
    font-size: 12px; color: var(--muted);
    padding: 3px 10px; border-radius: 999px;
    background: var(--surface-2); border: 1px solid var(--border);
}
.product-card .foot {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
}
.product-card .price { font-size: 22px; font-weight: 800; color: var(--accent); }
.product-card .price small { font-size: 13px; color: var(--muted); font-weight: 500; }

/* 价格表 */
.rating { color: var(--warn); font-size: 13px; }

/* 分类筛选 */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
    padding: 9px 20px; border-radius: 999px; cursor: pointer;
    background: var(--surface); border: 1px solid var(--border); color: var(--muted);
    font-size: 14px; font-weight: 500; transition: all 0.2s;
}
.filter-btn:hover { color: var(--text); }
.filter-btn.active { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2)); border-color: transparent; }

/* ===== 步骤 ===== */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 12px; }
.step .n {
    width: 46px; height: 46px; border-radius: 12px; margin-bottom: 14px;
    display: grid; place-items: center; font-weight: 800; font-size: 18px; color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ===== 关于我们 ===== */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-hero h1 { font-size: clamp(30px, 5vw, 48px); font-weight: 900; line-height: 1.15; }
.about-hero p { color: var(--muted); margin-top: 18px; font-size: 17px; }

.stat-box { text-align: center; padding: 30px 18px; }
.stat-box .num { font-size: 38px; font-weight: 900; background: linear-gradient(120deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-box .lbl { color: var(--muted); margin-top: 6px; }

.value-card .ico {
    width: 54px; height: 54px; border-radius: 15px;
    display: grid; place-items: center; font-size: 25px; margin-bottom: 16px;
    color: #dccffb;
    background: linear-gradient(150deg, rgba(168, 85, 247, 0.28), rgba(34, 211, 238, 0.16));
    border: 1px solid rgba(168, 85, 247, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 24px -16px rgba(124, 58, 237, 0.9);
}
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 14.5px; }

.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--primary), var(--accent)); }
.tl-item { position: relative; padding: 0 0 30px 24px; }
.tl-item::before { content: ""; position: absolute; left: -30px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.2); }
.tl-item .yr { color: var(--accent); font-weight: 800; font-size: 15px; }
.tl-item h3 { font-size: 17px; margin: 4px 0; }
.tl-item p { color: var(--muted); font-size: 14.5px; }

/* ===== 联系我们 ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-info .item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; border-radius: var(--radius);
    background: var(--surface); border: 1px solid var(--border); margin-bottom: 16px;
}
.contact-info .item .ico {
    width: 48px; height: 48px; flex-shrink: 0; border-radius: 13px;
    display: grid; place-items: center; font-size: 21px;
    color: #dccffb;
    background: linear-gradient(150deg, rgba(168, 85, 247, 0.28), rgba(34, 211, 238, 0.16));
    border: 1px solid rgba(168, 85, 247, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.contact-info .item h3 { font-size: 16px; margin-bottom: 3px; }
.contact-info .item p { color: var(--muted); font-size: 14.5px; }

.form-card { padding: 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 15px; border-radius: 12px;
    background: var(--bg-2); border: 1px solid var(--border); color: var(--text);
    font-size: 15px; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { display: none; margin-top: 14px; padding: 13px 16px; border-radius: 12px; font-size: 14px; background: rgba(52, 211, 153, 0.12); border: 1px solid rgba(52, 211, 153, 0.4); color: var(--good); }
.form-note.show { display: block; }

/* FAQ */
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q { padding: 18px 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q .pm { color: var(--accent); font-size: 20px; transition: transform 0.25s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--muted); padding: 0 20px; }
.faq-item.open .faq-a { max-height: 240px; padding: 0 20px 18px; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }

/* CTA 横幅 */
.cta-banner {
    text-align: center;
    border-radius: 24px;
    padding: 56px 32px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(6, 182, 212, 0.18));
    border: 1px solid var(--border);
}
.cta-banner h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; }
.cta-banner p { color: var(--muted); margin: 12px 0 26px; font-size: 17px; }

/* ===== 页脚 ===== */
.footer { border-top: 1px solid var(--border); background: rgba(7, 7, 15, 0.6); margin-top: 40px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding: 56px 0 36px; }
.footer .logo { margin-bottom: 14px; }
.footer-about p { color: var(--muted); font-size: 14.5px; max-width: 320px; }
.footer h4 { font-size: 15px; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 14.5px; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials span {
    width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
    background: var(--surface); border: 1px solid var(--border); font-size: 18px; color: var(--muted);
    cursor: pointer; transition: all 0.2s;
}
.socials span:hover { background: var(--surface-2); color: var(--accent); border-color: rgba(34, 211, 238, 0.4); transform: translateY(-2px); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 22px 0;
    display: flex; flex-wrap: wrap; gap: 10px 24px;
    align-items: center; justify-content: space-between;
    color: var(--muted); font-size: 13.5px;
}
.footer-bottom .beian {
    color: var(--muted);
    transition: color 0.25s, text-shadow 0.25s;
}
.footer-bottom .beian:hover { color: var(--accent); text-shadow: 0 0 10px rgba(34, 211, 238, 0.5); }

/* 进入动画 */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.shot-mode .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ===== 响应式 ===== */
@media (max-width: 960px) {
    .hero-grid, .about-hero, .contact-grid { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-card { max-width: 460px; }
}

@media (max-width: 720px) {
    .nav-links {
        position: absolute;
        top: 68px; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px 24px 20px;
        background: rgba(7, 7, 15, 0.97);
        border-bottom: 1px solid var(--border);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.25s;
    }
    .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
    .nav-links a { padding: 12px 14px; }
    .nav-links a.active::after { display: none; }
    .nav-toggle { display: grid; }
    .section { padding: 64px 0; }
    .hero { padding: 64px 0 48px; }
}

@media (max-width: 540px) {
    .grid-2, .grid-3, .grid-4, .form-row, .footer-top { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
}

/* ============================================================
   ===== 科技感增强组件（FX layer）=====
   ============================================================ */

/* 顶部滚动进度条 */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    z-index: 300;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--neon));
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.8);
    transition: width 0.1s linear;
}

/* 跟随光标的光晕 */
.cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 460px; height: 460px;
    margin: -230px 0 0 -230px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.14), rgba(34, 211, 238, 0.06) 40%, transparent 68%);
    transform: translate3d(-100px, -100px, 0);
    transition: opacity 0.3s;
    mix-blend-mode: screen;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* eyebrow 前的脉冲点 */
.eyebrow { position: relative; }
.eyebrow.live::before {
    content: "";
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--good);
    margin-right: 8px;
    vertical-align: 1px;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    animation: livedot 1.6s ease-out infinite;
}
@keyframes livedot {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* hero 卖点徽章行 */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}
.hero-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(6px);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.hero-badges .badge:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 18px -4px rgba(34, 211, 238, 0.6);
}
.hero-badges .badge [data-icon] { color: var(--accent); font-size: 15px; display: inline-flex; }

/* 信任跑马灯 */
.marquee {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(10, 11, 26, 0.5);
    padding: 16px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
    display: flex;
    width: max-content;
    gap: 56px;
    animation: marquee 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}
.marquee-track span b {
    background: linear-gradient(120deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.marquee-track [data-icon] { color: var(--accent); font-size: 17px; display: inline-flex; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* 实时成交播报 toast */
.deal-ticker {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 200;
    max-width: 330px;
    pointer-events: none;
}
.deal-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 12px 12px;
    border-radius: 14px;
    background: rgba(12, 13, 28, 0.92);
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.8), 0 0 24px -8px rgba(168, 85, 247, 0.55);
    backdrop-filter: blur(10px);
    transform: translateY(140%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(.2,.9,.2,1), opacity 0.5s;
}
.deal-toast.show { transform: translateY(0); opacity: 1; }
.deal-toast .avatar {
    width: 38px; height: 38px; flex-shrink: 0;
    border-radius: 11px;
    display: grid; place-items: center;
    font-size: 18px; color: #fff;
    background: linear-gradient(140deg, var(--primary), var(--accent));
    box-shadow: var(--glow-primary);
}
.deal-toast .dt-body { min-width: 0; line-height: 1.4; }
.deal-toast .dt-body b { font-size: 13.5px; color: var(--text); }
.deal-toast .dt-body span { display: block; font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.deal-toast .dt-body span em { color: var(--accent); font-style: normal; font-weight: 600; }
@media (max-width: 540px) { .deal-ticker { left: 12px; right: 12px; bottom: 12px; max-width: none; } }

/* 区块淡入的细分延迟（配合 reveal） */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* CTA 横幅流光描边 */
.cta-banner { position: relative; overflow: hidden; }
.cta-banner::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from var(--ang, 0deg), transparent 60%, var(--accent), var(--neon), var(--primary), transparent 95%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderspin 7s linear infinite;
    pointer-events: none;
}

/* ============================================================
   ===== 移动端转化优化（仅手机端生效，桌面端不受影响）=====
   ============================================================ */

/* 底部固定行动条：默认隐藏，仅手机端显示 */
.m-actionbar { display: none; }

@media (max-width: 720px) {
    .m-actionbar {
        display: flex;
        gap: 10px;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 250;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
        background: rgba(7, 7, 15, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid var(--border);
    }
    .m-actionbar a {
        display: flex; align-items: center; justify-content: center; gap: 6px;
        height: 48px; border-radius: 12px;
        font-weight: 700; font-size: 14.5px;
        min-width: 0; white-space: nowrap;
    }
    .m-actionbar .mab-kefu {
        flex: 0 0 72px;
        color: var(--text);
        background: var(--surface);
        border: 1px solid var(--border);
    }
    .m-actionbar .mab-cta {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--primary-2));
        box-shadow: 0 8px 20px -8px rgba(124, 58, 237, 0.9);
    }
    .m-actionbar .i { display: inline-flex; font-size: 17px; flex: none; }

    /* 防止任何元素撑破视口导致横向滚动（clip 不破坏 sticky 导航）*/
    html, body { overflow-x: clip; max-width: 100%; }
    /* 为底部条留出空间 + 成交播报上移 */
    body { padding-bottom: 74px; }
    .deal-ticker { left: 12px; right: 12px; bottom: 84px; max-width: none; }

    /* Hero 收紧 */
    .hero { padding: 36px 0 32px; }
    .hero h1 { font-size: 34px; line-height: 1.18; }
    .hero .lead { font-size: 16px; margin: 16px 0 22px; }
    .hero-stats { margin-top: 26px; gap: 22px; }
    .hero-card { margin-top: 6px; }
    .marquee-track span { font-size: 13px; }
}

@media (max-width: 540px) {
    .hero h1 { font-size: 30px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    /* 优势 / 流程 / 数据：两列更紧凑 */
    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .feature, .value-card { padding: 16px 14px; }
    .feature .ico, .value-card .ico { width: 42px; height: 42px; font-size: 20px; margin-bottom: 10px; }
    .feature h3, .value-card h3 { font-size: 15px; }
    .feature p, .value-card p { font-size: 13px; }
    .step { padding-left: 0; }
    .stat-box { padding: 20px 10px; }
    .stat-box .num { font-size: 28px; }

    /* 产品页：两列紧凑卡片，突出 图+名+价+按钮 */
    .grid-products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .grid-products .product-card .desc,
    .grid-products .product-card .chips,
    .grid-products .product-card .rating { display: none; }
    .grid-products .product-card .cover { height: 104px; }
    .grid-products .product-card .body { padding: 11px; }
    .grid-products .product-card h3 { font-size: 13.5px; margin-bottom: 8px; min-height: 36px; line-height: 1.35; }
    .grid-products .product-card .foot {
        flex-direction: column; align-items: stretch; gap: 8px;
        margin-top: 8px; padding-top: 10px;
    }
    .grid-products .product-card .price { font-size: 17px; }
    .grid-products .product-card .btn { width: 100%; padding: 9px 0; font-size: 13px; }

    /* 页脚移动端：品牌块置顶通栏 + 导航三列紧凑 */
    .footer { margin-top: 28px; }
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px 12px;
        padding: 30px 0 20px;
    }
    .footer-about { grid-column: 1 / -1; }
    .footer-about p { max-width: none; font-size: 13px; }
    .footer .logo { margin-bottom: 10px; }
    .footer h4 { font-size: 14px; margin-bottom: 10px; }
    .footer-col a, .footer-col p { font-size: 12.5px; padding: 4px 0; }
    .socials { margin-top: 12px; }
    .socials span { width: 36px; height: 36px; font-size: 16px; }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 0;
        font-size: 12px;
    }
}
