:root {
            --bg: #0a120c;
            --surface: #122018;
            --surface-hover: #1a2e22;
            --accent: #4ade80;
            --accent2: #a3e635;
            --text: #f0fdf4;
            --muted: #8fb89f;
            --font-display: 'Anton', sans-serif;
            --font-body: 'Barlow', sans-serif;
            --nav-height: 70px;
            --container-w: 1200px;
            --article-w: 840px;
        }

        * {
            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;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

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

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

        .container {
            width: 100%;
            max-width: var(--container-w);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* HEADER (As Provided + Styling) */
        header {
            background-color: var(--surface);
            border-bottom: 1px solid rgba(74, 222, 128, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            height: var(--nav-height);
            display: flex;
            align-items: center;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-display);
            font-size: 28px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

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

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

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--accent);
            font-size: 28px;
            cursor: pointer;
        }

        /* HERO / BANNER */
        .hero {
            position: relative;
            padding: 60px 0 80px;
            background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
            border-bottom: 1px solid rgba(74, 222, 128, 0.05);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background: linear-gradient(135deg, transparent 25%, rgba(74, 222, 128, 0.02) 25%, rgba(74, 222, 128, 0.02) 50%, transparent 50%, transparent 75%, rgba(74, 222, 128, 0.02) 75%, rgba(74, 222, 128, 0.02) 100%);
            background-size: 60px 60px;
            z-index: 0;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: var(--article-w);
            margin: 0 auto;
        }

        .breadcrumb {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb a {
            color: var(--muted);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }

        h1 {
            font-family: var(--font-display);
            font-size: clamp(40px, 6vw, 64px);
            line-height: 1.1;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
            text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
        }

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

        .chip {
            background-color: rgba(18, 32, 24, 0.8);
            border: 1px solid var(--accent);
            color: var(--accent);
            padding: 6px 14px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 2px;
            clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
        }

        /* MAIN ARTICLE AREA */
        .article-main {
            max-width: var(--article-w);
            margin: 0 auto;
            padding: 40px 20px 80px;
        }

        .intro-block {
            background-color: var(--surface);
            padding: 30px;
            border-left: 4px solid var(--accent);
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 50px;
            position: relative;
        }

        .intro-block::after {
            content: '”';
            position: absolute;
            bottom: -20px;
            right: 20px;
            font-family: var(--font-display);
            font-size: 80px;
            color: rgba(74, 222, 128, 0.1);
            line-height: 1;
        }

        h2 {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--accent2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px dashed rgba(143, 184, 159, 0.3);
        }

        p {
            margin-bottom: 20px;
            font-size: 16px;
            color: #d1e8d9;
        }

        p a {
            font-weight: 600;
            border-bottom: 1px solid rgba(74, 222, 128, 0.4);
        }
        p a:hover {
            border-bottom-color: var(--accent2);
        }

        /* CUSTOM LIST */
        .feature-list {
            list-style: none;
            margin: 30px 0;
            padding: 20px;
            background: rgba(18, 32, 24, 0.5);
            border: 1px solid rgba(74, 222, 128, 0.2);
        }

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

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

        .feature-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            width: 16px;
            height: 16px;
            background-color: var(--accent);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        }

        /* FAQ SECTION */
        .faq-wrapper {
            margin-top: 60px;
        }

        details {
            background-color: var(--surface);
            margin-bottom: 15px;
            border: 1px solid rgba(143, 184, 159, 0.1);
            transition: all 0.3s ease;
        }

        details:hover {
            border-color: rgba(74, 222, 128, 0.3);
        }

        summary {
            padding: 20px;
            font-family: var(--font-display);
            font-size: 20px;
            letter-spacing: 0.5px;
            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: '+';
            color: var(--accent);
            font-size: 24px;
            transition: transform 0.3s;
        }

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

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

        /* RELATED LINKS */
        .related-section {
            margin-top: 60px;
            padding: 40px;
            background-color: var(--surface);
            border-top: 2px solid var(--accent);
        }

        .related-section h3 {
            font-family: var(--font-display);
            font-size: 24px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .related-grid a {
            display: block;
            padding: 15px;
            background: rgba(10, 18, 12, 0.8);
            border: 1px solid rgba(143, 184, 159, 0.2);
            text-align: center;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .related-grid a:hover {
            background: var(--accent);
            color: var(--bg);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        /* CTA SECTION */
        .cta-grand {
            margin-top: 80px;
            padding: 60px 20px;
            text-align: center;
            background: linear-gradient(45deg, var(--surface) 0%, #173322 100%);
            border: 1px solid rgba(74, 222, 128, 0.2);
            position: relative;
            overflow: hidden;
        }

        .cta-grand::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%; width: 200%; height: 200%;
            background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(74, 222, 128, 0.03) 10px, rgba(74, 222, 128, 0.03) 20px);
            pointer-events: none;
        }

        .cta-grand h2 {
            margin-top: 0;
            border: none;
            font-size: 36px;
            position: relative;
            z-index: 1;
        }

        .cta-grand p {
            font-size: 18px;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            position: relative;
            z-index: 1;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 30px;
            font-family: var(--font-display);
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            min-width: 160px;
            min-height: 44px;
            transition: all 0.3s ease;
            clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
        }

        .btn-primary {
            background-color: var(--accent);
            color: var(--bg);
        }

        .btn-primary:hover {
            background-color: var(--accent2);
            color: var(--bg);
            transform: scale(1.05);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
            /* clip-path and border workaround */
            position: relative;
            clip-path: none;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid var(--accent);
            clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
        }

        .btn-secondary:hover {
            background-color: rgba(74, 222, 128, 0.1);
            color: var(--accent2);
        }

        /* FOOTER (As Provided + Styling) */
        footer {
            background-color: var(--surface);
            padding: 60px 0 20px;
            border-top: 1px solid rgba(74, 222, 128, 0.1);
            margin-top: 40px;
        }

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

        .footer-brand {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--accent);
            text-transform: uppercase;
            display: block;
            margin-bottom: 15px;
        }

        .footer-tagline {
            color: var(--muted);
            font-size: 15px;
            max-width: 300px;
        }

        .footer-links h4 {
            font-family: var(--font-display);
            font-size: 20px;
            color: var(--text);
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

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

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

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(143, 184, 159, 0.1);
            color: var(--muted);
            font-size: 14px;
        }

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

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                width: 100%;
                background-color: var(--surface);
                flex-direction: column;
                padding: 20px;
                border-bottom: 1px solid rgba(74, 222, 128, 0.2);
            }

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

            .menu-toggle {
                display: block;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            h1 {
                font-size: 36px;
            }

            h2 {
                font-size: 26px;
            }
        }

        @media (max-width: 390px) {
            .hero {
                padding: 40px 0;
            }
            .article-main {
                padding: 20px 10px 40px;
            }
            .intro-block {
                padding: 20px;
                font-size: 16px;
            }
            .related-grid {
                grid-template-columns: 1fr;
            }
        }


/* 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; }
