:root {
            --bg: #061218;
            --surface: #0d2230;
            --surface-hover: #153245;
            --accent: #22d3ee;
            --accent-glow: rgba(34, 211, 238, 0.3);
            --accent2: #a3e635;
            --text: #f0faff;
            --muted: #8fadb8;
            --border: rgba(143, 173, 184, 0.2);

            --font-display: 'Chakra Petch', sans-serif;
            --font-body: 'Manrope', sans-serif;

            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;

            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--accent2);
        }

        h1, h2, h3, .logo {
            font-family: var(--font-display);
            line-height: 1.2;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- HEADER STYLES --- */
        header {
            background-color: rgba(6, 18, 24, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
            text-transform: lowercase;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 24px;
        }

        .nav-links a {
            color: var(--text);
            font-weight: 500;
            font-size: 15px;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
        }

        /* --- HERO BANNER --- */
        .rtp-hero {
            position: relative;
            padding: 60px 0 80px;
            background:
                radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(163, 230, 53, 0.1) 0%, transparent 40%),
                linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
            border-bottom: 1px solid var(--border);
            text-align: center;
            overflow: hidden;
        }

        /* Decorative data grid lines */
        .rtp-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image:
                linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
            background-size: 30px 30px;
            z-index: 0;
            pointer-events: none;
        }

        .rtp-hero .container {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .breadcrumb {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 24px;
            display: inline-block;
            background: rgba(13, 34, 48, 0.6);
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid var(--border);
        }

        .breadcrumb span {
            color: var(--accent);
            font-weight: 500;
        }

        .rtp-hero h1 {
            font-size: clamp(32px, 5vw, 48px);
            color: var(--text);
            margin-bottom: 24px;
            text-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
            letter-spacing: 1px;
        }

        .meta-chips {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .chip {
            font-size: 13px;
            font-weight: 600;
            color: var(--bg);
            background-color: var(--accent2);
            padding: 6px 16px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 0 10px rgba(163, 230, 53, 0.2);
        }

        .chip:first-child {
            background-color: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
            box-shadow: none;
        }

        /* --- CONTENT AREA --- */
        .main-content {
            padding: 60px 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            max-width: 800px;
            margin: 0 auto;
        }

        .intro-block {
            background: linear-gradient(135deg, var(--surface) 0%, rgba(13, 34, 48, 0.5) 100%);
            border-left: 4px solid var(--accent);
            padding: 30px;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .content-section {
            scroll-margin-top: 90px;
        }

        .content-section h2 {
            font-size: 28px;
            color: var(--text);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .content-section h2::before {
            content: '';
            display: block;
            width: 8px;
            height: 8px;
            background: var(--accent2);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent2);
        }

        .content-section p {
            color: var(--muted);
            margin-bottom: 16px;
            font-size: 16px;
        }

        .content-section p a {
            color: var(--accent);
            border-bottom: 1px dashed var(--accent);
            padding-bottom: 2px;
        }

        .content-section p a:hover {
            color: var(--accent2);
            border-bottom-color: var(--accent2);
        }

        .custom-list {
            list-style: none;
            margin: 24px 0;
            padding: 0;
            background: var(--surface);
            border-radius: var(--radius-md);
            padding: 24px;
            border: 1px solid var(--border);
        }

        .custom-list li {
            position: relative;
            padding-left: 36px;
            margin-bottom: 16px;
            color: var(--text);
            font-size: 16px;
        }

        .custom-list li:last-child {
            margin-bottom: 0;
        }

        .custom-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 2px;
            width: 24px;
            height: 24px;
            background: rgba(34, 211, 238, 0.1);
            color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
            font-family: var(--font-display);
        }

        /* --- FAQ SECTION --- */
        .faq-wrapper {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        details {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition);
        }

        details[open] {
            border-color: var(--accent);
            box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
        }

        summary {
            padding: 20px 24px;
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text);
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary::after {
            content: '+';
            font-size: 24px;
            color: var(--accent);
            transition: transform 0.3s ease;
        }

        details[open] summary::after {
            transform: rotate(45deg);
            color: var(--accent2);
        }

        details p {
            padding: 0 24px 24px;
            color: var(--muted);
            margin: 0;
        }

        /* --- RELATED LINKS --- */
        .related-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid var(--border);
        }

        .related-section h2 {
            text-align: center;
            font-size: 24px;
            margin-bottom: 30px;
            color: var(--text);
        }

        .related-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }

        .related-card {
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 16px 24px;
            border-radius: 30px;
            color: var(--text);
            font-weight: 600;
            font-family: var(--font-display);
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .related-card::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            transition: var(--transition);
        }

        .related-card:hover {
            background: var(--surface-hover);
            border-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(34, 211, 238, 0.15);
        }

        .related-card:hover::before {
            background: var(--accent2);
            box-shadow: 0 0 8px var(--accent2);
        }

        /* --- CTA SECTION --- */
        .cta-section {
            margin: 60px auto 0;
            max-width: 1000px;
            background: linear-gradient(135deg, #0d2230 0%, #061218 100%);
            border: 1px solid var(--accent);
            border-radius: var(--radius-lg);
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 40px rgba(34, 211, 238, 0.1);
        }

        /* Decorative wave in CTA */
        .cta-section::before {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -10%;
            width: 120%;
            height: 100px;
            background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-section h2 {
            font-size: 32px;
            margin-bottom: 16px;
            color: var(--text);
        }

        .cta-section p {
            color: var(--muted);
            font-size: 18px;
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-height: 48px;
            min-width: 160px;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--bg);
            box-shadow: 0 0 20px var(--accent-glow);
        }

        .btn-primary:hover {
            background: #fff;
            color: var(--bg);
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent2);
            border: 2px solid var(--accent2);
        }

        .btn-secondary:hover {
            background: rgba(163, 230, 53, 0.1);
            transform: translateY(-2px);
        }

        /* --- FOOTER STYLES --- */
        footer {
            background-color: var(--surface);
            padding: 60px 0 20px;
            border-top: 1px solid var(--border);
            margin-top: 80px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand p {
            color: var(--muted);
            margin-top: 16px;
            font-size: 14px;
            max-width: 300px;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .footer-links div {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: var(--muted);
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 4px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            color: var(--muted);
            font-size: 14px;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--surface);
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                border-bottom: 1px solid var(--border);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }

            .nav-links.active {
                display: flex;
            }

            .footer-links {
                grid-template-columns: 1fr 1fr;
            }

            .content-section h2 {
                font-size: 24px;
            }

            .cta-section {
                padding: 40px 20px;
            }
        }

        @media (max-width: 390px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            .meta-chips {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
            }
            .related-card {
                width: 100%;
                justify-content: center;
            }
        }


/* pipeline image & layout guards */
html, body { overflow-x: clip; }
img { max-width: 100%; height: auto; }
img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
/* 合规声明块（zb-disclaimer，全站 footer） */
.zb-disclaimer { margin-top: 18px !important; padding: 14px 0 0 0 !important; border-top: 1px solid rgba(128,128,128,.25) !important; font-size: .72rem !important; line-height: 1.7 !important; opacity: .85 !important; display: block !important; text-align: left !important; width: 100% !important; clear: both !important; }
.zb-disclaimer .zb-18 { display: inline-block !important; padding: 2px 10px !important; border: 1.5px solid currentColor !important; border-radius: 6px !important; font-weight: 800 !important; letter-spacing: 1px !important; margin: 0 0 10px 0 !important; font-size: .78rem !important; }
.zb-disclaimer p { display: block !important; margin: 5px 0 !important; padding: 0 !important; color: inherit !important; font-size: .72rem !important; line-height: 1.7 !important; }
.zb-disclaimer p:last-child { margin-bottom: 0 !important; }
