:root {
            --bg: #140d08;
            --surface: #241710;
            --accent: #e8965a;
            --accent2: #f5c542;
            --text: #fef8f0;
            --muted: #b89878;
            --border-color: rgba(232, 150, 90, 0.2);
            --glow: 0 0 15px rgba(232, 150, 90, 0.15);
        }

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

        body {
            font-family: 'Fira Sans', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, .brand, .footer-brand {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

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

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1.25rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            text-transform: uppercase;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            min-height: 44px; /* Touch target */
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), #d1783c);
            color: #000 !important;
            border: none;
            box-shadow: 0 4px 10px rgba(232, 150, 90, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--accent2), var(--accent));
            box-shadow: 0 6px 15px rgba(245, 197, 66, 0.4);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent) !important;
            border: 1px solid var(--accent);
        }

        .btn-secondary:hover {
            background: rgba(232, 150, 90, 0.1);
            color: var(--accent2) !important;
            border-color: var(--accent2);
        }

        .btn-lg {
            padding: 0.75rem 2rem;
            font-size: 1.125rem;
        }

        /* Header (Matching Homepage constraint) */
        header {
            background-color: rgba(20, 13, 8, 0.95);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

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

        .brand {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            margin-right: 2rem;
            letter-spacing: 1px;
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 1.5rem;
        }

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

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

        .mobile-menu-btn {
            display: block;
            margin-left: auto;
            background: none;
            border: 1px solid var(--border-color);
            color: var(--accent);
            font-size: 1.5rem;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            cursor: pointer;
            min-height: 44px;
        }

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

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

        .mobile-nav a {
            padding: 0.75rem 1.5rem;
            color: var(--text);
            font-weight: 500;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            min-height: 44px;
            display: flex;
            align-items: center;
        }

        .mobile-nav a:last-child {
            border-bottom: none;
        }

        /* Hero Banner */
        .page-hero {
            background: radial-gradient(circle at center top, var(--surface) 0%, var(--bg) 100%);
            padding: 4rem 0 3rem;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0.5;
        }

        .breadcrumb {
            font-size: 0.875rem;
            color: var(--muted);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

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

        .page-hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--text);
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .meta-chips {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .chip {
            background-color: rgba(232, 150, 90, 0.1);
            border: 1px solid var(--border-color);
            color: var(--muted);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8125rem;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
        }

        /* Main Content Area */
        .content-area {
            padding: 4rem 0;
        }

        /* Intro Blockquote */
        .intro-block {
            background-color: var(--surface);
            border-left: 4px solid var(--accent);
            padding: 2rem;
            margin-bottom: 4rem;
            border-radius: 0 8px 8px 0;
            box-shadow: var(--glow);
            font-size: 1.125rem;
            color: #fff;
            position: relative;
        }

        /* Body Sections */
        .info-section {
            margin-bottom: 4rem;
            position: relative;
        }

        .info-section:last-of-type {
            margin-bottom: 5rem;
        }

        .section-header {
            display: flex;
            align-items: baseline;
            gap: 1rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding-bottom: 0.5rem;
        }

        .section-number {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            color: var(--bg);
            background-color: var(--accent);
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .info-section h2 {
            font-size: 1.75rem;
            color: var(--accent2);
        }

        .info-section p {
            margin-bottom: 1rem;
            color: var(--muted);
            font-size: 1.05rem;
        }

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

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

        .custom-list {
            list-style: none;
            margin: 1.5rem 0;
            padding: 1.5rem;
            background-color: rgba(36, 23, 16, 0.5);
            border: 1px solid var(--border-color);
            border-radius: 8px;
        }

        .custom-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 0.75rem;
            color: var(--text);
        }

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

        .custom-list li::before {
            content: '♦';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent);
            font-size: 1.2rem;
            line-height: 1.4;
        }

        /* FAQ Accordion */
        .faq-wrapper {
            background-color: var(--surface);
            padding: 3rem 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            margin-bottom: 4rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .faq-wrapper h2 {
            text-align: center;
            margin-bottom: 2.5rem;
            font-size: 2rem;
            color: var(--text);
        }

        .faq-wrapper h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent);
            margin: 0.5rem auto 0;
            border-radius: 2px;
        }

        details {
            margin-bottom: 1rem;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 6px;
            background-color: rgba(20, 13, 8, 0.6);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        details[open] {
            border-color: var(--accent);
            box-shadow: var(--glow);
        }

        summary {
            padding: 1.25rem 1.5rem;
            font-family: 'Oswald', sans-serif;
            font-size: 1.125rem;
            font-weight: 500;
            color: var(--text);
            cursor: pointer;
            position: relative;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 44px;
        }

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

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

        details[open] summary::after {
            content: '−';
            transform: rotate(180deg);
        }

        details p {
            padding: 0 1.5rem 1.25rem;
            color: var(--muted);
            margin: 0;
            border-top: 1px solid transparent;
        }

        details[open] p {
            border-top-color: rgba(255,255,255,0.05);
            padding-top: 1rem;
        }

        /* Related Pages */
        .related-pages {
            margin-bottom: 4rem;
        }

        .related-pages h2 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .related-pages h2::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 24px;
            background-color: var(--accent2);
        }

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

        .related-link {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            background-color: var(--surface);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text);
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            font-size: 0.95rem;
            text-align: center;
            min-height: 60px;
            transition: all 0.3s ease;
        }

        .related-link:hover {
            background-color: rgba(232, 150, 90, 0.1);
            border-color: var(--accent);
            color: var(--accent2);
            transform: translateY(-3px);
        }

        /* Final CTA */
        .cta-banner {
            background: linear-gradient(to right, var(--surface), #3a2317);
            border: 2px solid var(--accent);
            border-radius: 12px;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.6);
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(232, 150, 90, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-banner h2 {
            font-size: 2.5rem;
            color: var(--text);
            margin-bottom: 1rem;
            position: relative;
        }

        .cta-banner p {
            font-size: 1.125rem;
            color: var(--muted);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .cta-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            position: relative;
            flex-wrap: wrap;
        }

        /* Footer (Matching Homepage constraint) */
        footer {
            background-color: #0a0604;
            padding: 4rem 0 2rem;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }

        .footer-brand {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .footer-tagline {
            color: var(--muted);
            margin-bottom: 2rem;
            font-size: 0.95rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem 1.5rem;
            margin-bottom: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-links a {
            color: var(--text);
            font-size: 0.875rem;
            opacity: 0.8;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: var(--accent);
            opacity: 1;
        }

        .copyright {
            color: #666;
            font-size: 0.875rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 2rem;
        }

        /* Media Queries */
        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
            .mobile-menu-btn {
                display: none;
            }
            .info-section {
                padding-left: 2rem;
            }
            .faq-wrapper {
                padding: 4rem;
            }
        }

        @media (min-width: 1024px) {
            .info-section {
                display: grid;
                grid-template-columns: 2fr 3fr;
                gap: 3rem;
                align-items: start;
            }
            .section-header {
                flex-direction: column;
                border-bottom: none;
                border-right: 1px solid rgba(255,255,255,0.1);
                padding-right: 2rem;
                padding-bottom: 0;
            }
            .info-section h2 {
                font-size: 2rem;
                line-height: 1.3;
            }
        }


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