/* roulang page: index */
:root {
            --primary: #d4a853;
            --primary-dark: #b8913a;
            --primary-light: #f0d9a7;
            --deep: #0f1a1f;
            --night: #0a1115;
            --charcoal: #16242b;
            --goldish: #c9a25e;
            --body: #e8ece9;
            --muted: #94a3a0;
            --soft-line: rgba(255, 255, 255, 0.08);
            --card-bg: rgba(255, 255, 255, 0.035);
            --radius: 18px;
            --shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.7);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--night);
            color: var(--body);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            margin: 0;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        .text-gradient {
            background: linear-gradient(135deg, #f0d9a7 0%, #d4a853 50%, #b8913a 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .btn-gold {
            background: linear-gradient(135deg, #e8c878 0%, #d4a853 100%);
            color: #0a1115;
            font-weight: 700;
            border-radius: 50px;
            padding: 0.9rem 2.2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(212, 168, 83, 0.25);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: 0.02em;
            text-decoration: none;
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 36px rgba(212, 168, 83, 0.4);
            background: linear-gradient(135deg, #f2d98f 0%, #e0b55e 100%);
        }

        .btn-ghost {
            background: transparent;
            border: 1px solid rgba(212, 168, 83, 0.5);
            color: #e8c878;
            font-weight: 600;
            border-radius: 50px;
            padding: 0.9rem 2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            font-size: 0.95rem;
        }

        .btn-ghost:hover {
            border-color: #d4a853;
            background: rgba(212, 168, 83, 0.08);
            transform: translateY(-2px);
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(212, 168, 83, 0.12);
            border: 1px solid rgba(212, 168, 83, 0.25);
            color: #e8c878;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .card-base {
            background: var(--card-bg);
            border: 1px solid var(--soft-line);
            border-radius: var(--radius);
            backdrop-filter: blur(12px);
            transition: all 0.4s ease;
        }

        .card-base:hover {
            border-color: rgba(212, 168, 83, 0.3);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: var(--shadow);
            transform: translateY(-4px);
        }

        /* 导航 */
        .top-bar {
            background: rgba(10, 17, 21, 0.98);
            border-bottom: 1px solid var(--soft-line);
            padding: 0.4rem 0;
            font-size: 0.82rem;
            color: var(--muted);
        }

        .main-nav {
            background: rgba(10, 17, 21, 0.92);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--soft-line);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-links a {
            color: var(--body);
            padding: 0.5rem 1.1rem;
            font-size: 0.92rem;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.25s ease;
            text-decoration: none;
        }

        .nav-links a:hover {
            color: #f0d9a7;
            background: rgba(212, 168, 83, 0.1);
        }

        .nav-links a.active {
            color: #f0d9a7;
            background: rgba(212, 168, 83, 0.15);
            border: 1px solid rgba(212, 168, 83, 0.3);
        }

        .mobile-menu-btn {
            background: transparent;
            border: 1px solid var(--soft-line);
            border-radius: 10px;
            padding: 0.4rem 0.7rem;
            color: var(--body);
        }

        /* Hero */
        .hero-area {
            position: relative;
            background-color: var(--night);
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            isolation: isolate;
        }

        .hero-area::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 17, 21, 0.75) 0%, rgba(10, 17, 21, 0.55) 50%, rgba(10, 17, 21, 0.9) 100%);
            z-index: -1;
        }

        .hero-stats-bar {
            border-top: 1px solid var(--soft-line);
            border-bottom: 1px solid var(--soft-line);
            background: rgba(10, 17, 21, 0.6);
            backdrop-filter: blur(10px);
        }

        /* 裂变说明 */
        .fx-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--soft-line);
            transition: all 0.3s ease;
        }

        .fx-card:hover {
            border-color: rgba(212, 168, 83, 0.3);
            background: rgba(212, 168, 83, 0.06);
        }

        .fx-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: linear-gradient(135deg, #d4a853, #8a6a2f);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0a1115;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* 排行榜 */
        .rank-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .rank-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.9rem 1.2rem;
            background: var(--card-bg);
            border: 1px solid var(--soft-line);
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .rank-item:hover {
            background: rgba(255, 255, 255, 0.06);
            transform: translateX(4px);
            border-color: rgba(212, 168, 83, 0.3);
        }

        .rank-num {
            font-size: 1.3rem;
            font-weight: 800;
            color: #d4a853;
            min-width: 36px;
            font-style: italic;
        }

        /* 资讯列表 */
        .news-item {
            padding: 1.1rem 1.2rem;
            border-bottom: 1px solid var(--soft-line);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            transition: all 0.25s ease;
            border-radius: 10px;
        }

        .news-item:hover {
            background: rgba(255, 255, 255, 0.04);
            padding-left: 1.6rem;
        }

        .news-item a {
            color: var(--body);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.94rem;
            transition: color 0.2s ease;
        }

        .news-item a:hover {
            color: #f0d9a7;
        }

        /* FAQ */
        .faq-box {
            background: var(--card-bg);
            border: 1px solid var(--soft-line);
            border-radius: 14px;
            padding: 1.3rem 1.5rem;
            transition: all 0.3s ease;
        }

        .faq-box:hover {
            border-color: rgba(212, 168, 83, 0.3);
        }

        /* Footer */
        .site-footer {
            background: #070d10;
            border-top: 1px solid var(--soft-line);
        }

        .footer-link {
            color: var(--muted);
            text-decoration: none;
            transition: color 0.2s ease;
            font-size: 0.9rem;
        }

        .footer-link:hover {
            color: #e8c878;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 17, 21, 0.98);
                padding: 1.2rem;
                flex-direction: column;
                gap: 0.8rem;
                border-bottom: 1px solid var(--soft-line);
            }

            .nav-links.open {
                display: flex;
            }

            .hero-area {
                background-attachment: scroll;
            }

            .btn-gold,
            .btn-ghost {
                width: 100%;
                justify-content: center;
            }

            .news-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.3rem;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding-left: 0.9rem;
                padding-right: 0.9rem;
            }

            .hero-stats-bar {
                flex-direction: column;
                gap: 0.5rem;
                padding: 1rem 0;
            }
        }

        /* 其他 */
        .pointer-events-none {
            pointer-events: none;
        }

        .text-gold {
            color: #d4a853;
        }

        .bg-deep {
            background: #0f1a1f;
        }

        .bg-night {
            background: #0a1115;
        }

        .border-soft {
            border-color: var(--soft-line);
        }

        /* 输入框 focus */
        .input-custom:focus {
            outline: none;
            border-color: #d4a853;
            box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.2);
        }

        .faq-item {
            transition: all 0.3s ease;
        }

        .faq-item summary {
            cursor: pointer;
            font-weight: 600;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.8rem;
            color: #d4a853;
            transition: transform 0.3s ease;
        }

        .faq-item[open] summary::after {
            transform: rotate(180deg);
        }

/* roulang page: category1 */
:root {
            --bg-dark: #0a1115;
            --bg-light: #f8f7f4;
            --gold: #d4a653;
            --gold-light: #e8c87a;
            --gold-dark: #b8893a;
            --text-dark: #142126;
            --text-body: #5b6b72;
            --text-light: #94a3a8;
            --border-light: #e8e4dc;
            --shadow: 0 10px 40px rgba(10, 17, 21, 0.08);
            --shadow-lg: 0 20px 60px rgba(10, 17, 21, 0.15);
            --radius: 16px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
            background: #fff;
            color: var(--text-dark);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        img {
            display: block;
            max-width: 100%;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        section {
            position: relative;
        }

        .text-gradient {
            background: linear-gradient(135deg, #f0d48a 0%, #d4a653 50%, #b8893a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ===== Header / Nav ===== */
        .main-nav {
            position: relative;
            background: rgba(10, 17, 21, 0.96);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            z-index: 50;
        }
        .nav-links {
            display: flex;
            gap: 2.25rem;
        }
        .nav-links a {
            color: #94a3a8;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 0.25rem 0;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: #fff;
        }
        .nav-links a.active {
            color: #fff;
            font-weight: 600;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 28px;
            height: 2px;
            border-radius: 2px;
            background: linear-gradient(90deg, #e8c87a, #d4a653);
        }
        .mobile-menu-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 74px;
                left: 0;
                right: 0;
                background: rgba(10, 17, 21, 0.98);
                flex-direction: column;
                padding: 1.5rem 1.5rem;
                gap: 1.1rem;
                transform: translateY(-140%);
                transition: transform 0.4s ease;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                z-index: 40;
            }
            .nav-links.open {
                transform: translateY(0);
            }
            .nav-links a {
                font-size: 1rem;
                padding: 0.4rem 0;
            }
            .nav-links a.active::after {
                left: 0;
                transform: none;
                width: 32px;
            }
        }

        /* ===== Buttons ===== */
        .btn-gold {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 1.9rem;
            border-radius: 999px;
            background: linear-gradient(135deg, #e8c87a 0%, #d4a653 50%, #b8893a 100%);
            color: #0a1115;
            font-weight: 700;
            font-size: 0.925rem;
            box-shadow: 0 8px 24px rgba(212, 166, 83, 0.35);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(212, 166, 83, 0.45);
            color: #0a1115;
        }
        .btn-gold:active {
            transform: translateY(0);
            box-shadow: 0 4px 16px rgba(212, 166, 83, 0.3);
        }
        .btn-gold:focus-visible {
            outline: 3px solid rgba(212, 166, 83, 0.5);
            outline-offset: 3px;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 1.9rem;
            border-radius: 999px;
            border: 1.5px solid rgba(212, 166, 83, 0.5);
            color: #d4a653;
            font-weight: 600;
            font-size: 0.925rem;
            background: transparent;
            transition: all 0.3s ease;
        }
        .btn-outline:hover {
            background: rgba(212, 166, 83, 0.1);
            border-color: #d4a653;
            color: #e8c87a;
        }
        .btn-outline:focus-visible {
            outline: 3px solid rgba(212, 166, 83, 0.5);
            outline-offset: 3px;
        }

        /* ===== Badge ===== */
        .badge-gold {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            color: #d4a653;
            background: rgba(212, 166, 83, 0.12);
            border: 1px solid rgba(212, 166, 83, 0.25);
            border-radius: 999px;
            padding: 0.4rem 1.1rem;
        }

        .text-gold {
            color: #d4a653;
        }

        /* ===== Hero Dashboard ===== */
        .hero-senior {
            background: #0a1115;
        }
        .hero-dashboard {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 22px;
            padding: 1.85rem;
            backdrop-filter: blur(10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
        }
        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.02em;
        }
        .dashboard-live {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #d4a653;
            font-weight: 500;
            font-size: 0.78rem;
        }
        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22c55e;
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(0.8);
            }
        }
        .rank-item {
            margin-bottom: 1.15rem;
        }
        .rank-item .rank-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            margin-bottom: 0.45rem;
        }
        .rank-item .rank-label span:first-child {
            color: #cbd5e1;
        }
        .rank-item .rank-label span:last-child {
            color: #fff;
            font-weight: 700;
        }
        .progress-bar {
            height: 8px;
            border-radius: 99px;
            background: rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }
        .progress-fill {
            height: 100%;
            border-radius: 99px;
            background: linear-gradient(90deg, #e8c87a, #b8893a);
            transition: width 1.2s ease;
        }
        .dashboard-footer {
            margin-top: 1.5rem;
            padding-top: 1.1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.8rem;
            color: #94a3a8;
        }

        /* ===== Feature Items ===== */
        .feature-item {
            display: flex;
            gap: 1.1rem;
            align-items: flex-start;
            padding: 1.1rem 1.2rem;
            border-radius: 14px;
            background: #fff;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }
        .feature-item:hover {
            box-shadow: var(--shadow);
            border-color: #d4a653;
            transform: translateX(4px);
        }
        .feature-icon {
            width: 46px;
            height: 46px;
            border-radius: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 166, 83, 0.14);
            color: #b8893a;
            font-size: 1.15rem;
            flex-shrink: 0;
        }
        .feature-item h4 {
            font-size: 1.02rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.2rem;
        }
        .feature-item p {
            font-size: 0.9rem;
            color: var(--text-body);
            line-height: 1.7;
        }

        /* ===== Scene Cards ===== */
        .scene-card {
            border-radius: 18px;
            overflow: hidden;
            background: #fff;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .scene-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(212, 166, 83, 0.4);
        }
        .scene-card .scene-img {
            overflow: hidden;
            height: 190px;
        }
        .scene-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .scene-card:hover img {
            transform: scale(1.06);
        }
        .scene-card .scene-body {
            padding: 1.4rem 1.4rem 1.6rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .scene-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.45rem;
        }
        .scene-card p {
            font-size: 0.9rem;
            color: var(--text-body);
            line-height: 1.75;
        }
        .scene-card .scene-tag {
            display: inline-flex;
            align-items: center;
            font-size: 0.78rem;
            color: #b8893a;
            background: rgba(212, 166, 83, 0.12);
            border-radius: 999px;
            padding: 0.25rem 0.8rem;
            margin-bottom: 0.8rem;
            align-self: flex-start;
        }
        .scene-dark {
            border-radius: 18px;
            overflow: hidden;
            height: 100%;
            min-height: 320px;
            position: relative;
            display: flex;
            align-items: flex-end;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .scene-dark .scene-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 17, 21, 0.92) 0%, rgba(10, 17, 21, 0.4) 60%, rgba(10, 17, 21, 0.2) 100%);
        }
        .scene-dark .scene-body {
            position: relative;
            z-index: 2;
            padding: 1.6rem;
            color: #fff;
        }
        .scene-dark h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }
        .scene-dark p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.75;
        }

        /* ===== Step Cards ===== */
        .step-card {
            position: relative;
            padding: 2rem 1.3rem 1.6rem;
            border-radius: 18px;
            background: #fff;
            border: 1px solid var(--border-light);
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        .step-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
            border-color: rgba(212, 166, 83, 0.35);
        }
        .step-num {
            width: 52px;
            height: 52px;
            margin: 0 auto 1.1rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #e8c87a, #b8893a);
            color: #0a1115;
            font-weight: 800;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(212, 166, 83, 0.35);
        }
        .step-card h3 {
            font-size: 1.02rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        .step-card p {
            font-size: 0.88rem;
            color: var(--text-body);
            line-height: 1.7;
        }
        .step-card::after {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 50%;
            right: -16px;
            transform: translateY(-50%);
            color: #d4a653;
            font-size: 0.8rem;
            opacity: 0.5;
            z-index: 2;
            pointer-events: none;
        }
        .step-card:last-child::after {
            display: none;
        }

        @media (max-width: 1024px) {
            .step-card::after {
                display: none;
            }
        }

        /* ===== FAQ ===== */
        .faq-item {
            border: 1px solid var(--border-light);
            border-radius: 16px;
            background: #fff;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-item:hover {
            border-color: rgba(212, 166, 83, 0.4);
            box-shadow: 0 4px 24px rgba(10, 17, 21, 0.06);
        }
        .faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 1.35rem 1.6rem;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            transition: color 0.3s ease;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #d4a653;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        .faq-item[open] summary::after {
            transform: rotate(180deg);
        }
        .faq-item[open] summary {
            color: #b8893a;
        }
        .faq-answer {
            padding: 0 1.6rem 1.5rem;
            color: var(--text-body);
            line-height: 1.85;
            font-size: 0.93rem;
        }

        /* ===== CTA ===== */
        .cta-card {
            background: linear-gradient(135deg, #0a1115 0%, #142126 55%, #1a2d36 100%);
            border-radius: 28px;
            padding: 4rem 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(10, 17, 21, 0.3);
        }
        .cta-card::before {
            content: '';
            position: absolute;
            top: -70px;
            right: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(212, 166, 83, 0.1);
        }
        .cta-card::after {
            content: '';
            position: absolute;
            bottom: -90px;
            left: -40px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: rgba(212, 166, 83, 0.06);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #0a1115;
            color: #94a3a8;
        }
        .footer-link {
            color: #94a3a8;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }
        .footer-link:hover {
            color: #d4a653;
        }

        /* ===== Misc ===== */
        .section-head-muted {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            color: #94a3a8;
            text-transform: uppercase;
        }

        @media (max-width: 640px) {
            .hero-dashboard {
                padding: 1.4rem;
            }
            .cta-card {
                padding: 2.8rem 1.4rem;
            }
            .cta-card h2 {
                font-size: 1.5rem;
            }
        }
