* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

body {
    min-height: 100vh;
    background:
    radial-gradient(circle at top, rgba(155, 120, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #0b0620, #12072f 60%, #090415);
    color: #e9e6ff;
    display: flex;
    justify-content: center;
    padding: 24px 14px;
    overflow-x: hidden;
}

/* 背景能量流 */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(170, 130, 255, 0.12) 50%, transparent 60%);
    animation: flow 8s linear infinite;
    pointer-events: none;
}

@keyframes flow {
    from {
    transform: translateX(-60%);
    }

    to {
    transform: translateX(60%);
    }
}

/* 主卡片 */
.container {
    width: 100%;
    max-width: 420px;
    background: rgba(18, 8, 48, 0.88);
    border: 1px solid rgba(155, 120, 255, 0.35);
    border-radius: 18px;
    padding: 22px 22px 30px;
    box-shadow:
    0 0 0 1px rgba(155, 120, 255, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.55);
    position: relative;
    overflow: hidden;
}

/* 顶部“雷达区域” */
.hero {
    position: relative;
    border-radius: 16px;
    padding: 18px 16px 16px;
    margin-bottom: 30px;
    background:
    radial-gradient(circle at 30% 20%, rgba(177, 130, 255, 0.25), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(120, 90, 255, 0.18), transparent 55%),
    rgba(10, 5, 28, 0.35);
    border: 1px solid rgba(155, 120, 255, 0.22);
}

/* 微网格（科技感） */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
    linear-gradient(to right, rgba(180, 150, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(180, 150, 255, 0.08) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .65;
    pointer-events: none;
    mask-image: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 70%);
}

/* 雷达整体 */
.radar-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.radar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    position: relative;
    flex: 0 0 auto;
    background:
    radial-gradient(circle at center, rgba(170, 140, 255, 0.20), rgba(20, 10, 55, 0.0) 60%),
    radial-gradient(circle at center, rgba(170, 140, 255, 0.08), rgba(20, 10, 55, 0.0) 72%);
    border: 1px solid rgba(170, 140, 255, 0.35);
    box-shadow: inset 0 0 18px rgba(170, 140, 255, 0.18);
    overflow: hidden;
}

/* 雷达圆环 */
.radar::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px dashed rgba(190, 160, 255, 0.25);
}

/* 雷达十字线 */
.radar::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
    linear-gradient(to right, transparent 49%, rgba(190, 160, 255, 0.22) 50%, transparent 51%),
    linear-gradient(to bottom, transparent 49%, rgba(190, 160, 255, 0.22) 50%, transparent 51%);
    pointer-events: none;
}

/* 扫描扇形（重点） */
.sweep {
    position: absolute;
    inset: -20%;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
        rgba(160, 120, 255, 0) 0deg,
        rgba(160, 120, 255, 0) 290deg,
        rgba(160, 120, 255, 0.0) 300deg,
        rgba(160, 120, 255, 0.38) 330deg,
        rgba(160, 120, 255, 0) 360deg);
    animation: sweep 2.2s linear infinite;
    filter: blur(0.2px);
    opacity: .95;
}

@keyframes sweep {
    from {
    transform: rotate(0deg);
    }

    to {
    transform: rotate(360deg);
    }
}

/* 雷达“信号点”闪烁 */
.ping {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(210, 190, 255, 0.95);
    box-shadow: 0 0 12px rgba(180, 150, 255, 0.8);
    top: 26px;
    left: 54px;
    animation: ping 1.6s ease-in-out infinite;
}

.ping2 {
    top: 54px;
    left: 28px;
    animation-delay: .6s;
    opacity: .85;
}

@keyframes ping {

    0%,
    100% {
    transform: scale(0.95);
    opacity: .55;
    }

    50% {
    transform: scale(1.35);
    opacity: 1;
    }
}

/* 顶部标题与小字 */
.hero-title {
    font-size: 16px;
    font-weight: 800;
    background: linear-gradient(90deg, #d6ccff, #8f6bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: .3px;
}

.hero-sub {
    margin-top: 6px;
    font-size: 12.5px;
    color: rgba(230, 225, 255, 0.78);
    line-height: 1.55;
}

/* 主标题 */
.title {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    margin: 10px 0 14px;
    background: linear-gradient(90deg, #c9b7ff, #8f6bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 文案 */
p {
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 14px;
    color: #e3ddff;
}

.em {
    color: #bfa8ff;
    font-weight: 650;
}

/* 分隔线 */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(155, 120, 255, 0.6), transparent);
    margin: 18px 0;
}

/* 列表 */
ul {
    list-style: none;
    margin-bottom: 22px;
}

ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #efeaff;
}

/* CTA按钮 */
.cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    border-radius: 14px;
    background: linear-gradient(135deg, #8f6bff, #b384ff);
    text-decoration: none;
    position: relative;
    box-shadow:
    0 0 0 1px rgba(190, 160, 255, 0.4),
    0 10px 30px rgba(143, 107, 255, 0.45);
    animation: pulse 2.4s infinite;
}

@keyframes pulse {
    0% {
    box-shadow: 0 0 0 0 rgba(170, 140, 255, 0.55);
    }

    70% {
    box-shadow: 0 0 0 18px rgba(170, 140, 255, 0);
    }

    100% {
    box-shadow: 0 0 0 0 rgba(170, 140, 255, 0);
    }
}

/* 结尾 */
.footer {
    margin-top: 18px;
    font-size: 14px;
    color: #bfb6ff;
    text-align: center;
    opacity: 0.9;
}

.footers {
    margin-top: 30px;
}
.footers p {
    font-size: 12px;
    color: #bfb6ff;
    text-align: center;
    margin-bottom: 0;
}

/* 小屏优化 */
@media (max-width: 360px) {
    .radar {
    width: 78px;
    height: 78px;
    }

    p {
    font-size: 15px;
    }
}

/* Logo 区域 */
.logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.logo-wrap img {
    height: 34px;
    width: auto;
    opacity: 0.95;
    filter:
    drop-shadow(0 0 6px rgba(155, 120, 255, 0.55)) drop-shadow(0 0 18px rgba(155, 120, 255, 0.25));
}

/* 背景 Logo 水印 */
.container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/static/image/aj.png");
    background-repeat: no-repeat;
    background-position: right 28%;
    background-size: 65%;
    opacity: 0.55; /* 关键：低调 */
    filter:
    blur(0.2px) drop-shadow(0 0 20px rgba(155, 120, 255, 0.25));
    pointer-events: none;
    z-index: 0;
}

.container>* {
    position: relative;
    z-index: 1;
}

/* #p{
    text-align: center;
} */