        :root {
            --bg: #0a0a0f;
            --bg-card: #12121a;
            --bg-card-hover: #1a1a26;
            --border: #1e1e2e;
            --text: #e4e4ef;
            --text-muted: #8888a0;
            --accent: #00d4aa;
            --accent-dim: #00d4aa22;
            --red: #ff4466;
            --red-dim: #ff446622;
            --gold: #f0b90b;
            --blue: #4488ff;
        }

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

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(10, 10, 15, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 16px 0;
        }

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

        .nav-brand {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .brand-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
        }

        .brand-by {
            font-size: 13px;
            color: var(--text-muted);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

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

        .nav-cta {
            padding: 8px 20px;
            background: var(--accent);
            color: #000 !important;
            border-radius: 8px;
            font-weight: 600 !important;
        }

        .nav-cta:hover {
            box-shadow: 0 4px 16px rgba(0, 212, 170, 0.3);
        }

        .footer-brand {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 8px;
            margin-bottom: 4px;
        }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Grid background */
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: 
                linear-gradient(rgba(0,212,170,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0,212,170,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* Hero */
        .hero {
            padding: 140px 0 80px;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            padding: 6px 16px;
            background: var(--accent-dim);
            border: 1px solid var(--accent);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 28px;
        }

        .hero h1 {
            font-size: clamp(36px, 5vw, 64px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 20px;
            color: var(--text-muted);
            max-width: 640px;
            margin: 0 auto 40px;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat .number {
            font-size: 48px;
            font-weight: 800;
            font-family: 'JetBrains Mono', monospace;
            color: var(--accent);
        }

        .hero-stat .number.red { color: var(--red); }
        .hero-stat .number.gold { color: var(--gold); }

        .hero-stat .label {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .cta-btn {
            display: inline-block;
            padding: 18px 48px;
            background: var(--accent);
            color: #000;
            font-size: 18px;
            font-weight: 700;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 212, 170, 0.3);
        }

        .cta-price {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 12px;
        }

        /* Sections */
        section {
            padding: 80px 0;
        }

        section h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
            text-align: center;
        }

        section .subtitle {
            font-size: 18px;
            color: var(--text-muted);
            text-align: center;
            max-width: 600px;
            margin: 0 auto 48px;
        }

        /* Performance Table */
        .perf-table {
            width: 100%;
            border-collapse: collapse;
            margin: 32px 0;
            font-size: 16px;
        }

        .perf-table th {
            padding: 14px 20px;
            text-align: left;
            font-weight: 600;
            color: var(--text-muted);
            border-bottom: 2px solid var(--border);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .perf-table td {
            padding: 14px 20px;
            border-bottom: 1px solid var(--border);
        }

        .perf-table tr:hover td {
            background: var(--bg-card-hover);
        }

        .perf-table .highlight {
            color: var(--accent);
            font-weight: 700;
            font-family: 'JetBrains Mono', monospace;
        }

        .perf-table .dimmed {
            color: var(--text-muted);
        }

        .perf-table .positive { color: var(--accent); }
        .perf-table .negative { color: var(--red); }

        /* Cards */
        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.2s;
        }

        .card:hover {
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        .card-icon {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .card p {
            color: var(--text-muted);
            font-size: 15px;
        }

        /* How it works */
        .pipeline {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin: 40px 0;
        }

        .pipeline-step {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px 28px;
            text-align: center;
            min-width: 160px;
        }

        .pipeline-step .step-num {
            font-size: 12px;
            color: var(--accent);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .pipeline-step h4 {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .pipeline-step p {
            font-size: 13px;
            color: var(--text-muted);
        }

        .pipeline-arrow {
            font-size: 24px;
            color: var(--accent);
        }

        /* Assets grid */
        .assets-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
            margin: 32px 0;
        }

        .asset-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .asset-item .asset-symbol {
            font-family: 'JetBrains Mono', monospace;
            font-weight: 700;
            font-size: 15px;
        }

        .asset-item .asset-role {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Yearly table */
        .yearly-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 12px;
            margin: 32px 0;
        }

        .yearly-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
        }

        .yearly-item .year {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .yearly-item .return {
            font-size: 24px;
            font-weight: 700;
            font-family: 'JetBrains Mono', monospace;
        }

        /* Risk metrics */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
        }

        .metric-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
        }

        .metric-card .metric-label {
            font-size: 13px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .metric-card .metric-value {
            font-size: 28px;
            font-weight: 700;
            font-family: 'JetBrains Mono', monospace;
        }

        .metric-card .metric-note {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* What's included */
        .included-list {
            list-style: none;
            max-width: 600px;
            margin: 0 auto;
        }

        .included-list li {
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 17px;
        }

        .included-list .check {
            color: var(--accent);
            font-size: 20px;
        }

        /* FAQ */
        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 24px 0;
        }

        .faq-item h4 {
            font-size: 18px;
            margin-bottom: 8px;
            cursor: pointer;
        }

        .faq-item p {
            color: var(--text-muted);
            font-size: 15px;
        }

        /* Disclaimer */
        .disclaimer {
            background: var(--red-dim);
            border: 1px solid var(--red);
            border-radius: 12px;
            padding: 24px 32px;
            margin: 48px 0;
        }

        .disclaimer h4 {
            color: var(--red);
            margin-bottom: 8px;
        }

        .disclaimer p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* CTA section */
        .cta-section {
            text-align: center;
            padding: 100px 0;
        }

        .cta-section h2 {
            margin-bottom: 24px;
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--border);
            padding: 40px 0;
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
        }

        /* Chart placeholder */
        .chart-container {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            margin: 32px 0;
            min-height: 400px;
        }

        .chart-container canvas {
            width: 100% !important;
            height: 400px !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links a:not(.nav-cta) { display: none; }
            .hero { padding: 100px 0 40px; }
            .hero-stats { gap: 24px; }
            .hero-stat .number { font-size: 36px; }
            .pipeline { flex-direction: column; }
            .pipeline-arrow { transform: rotate(90deg); }
            section { padding: 48px 0; }
            .perf-table { font-size: 14px; }
            .perf-table th, .perf-table td { padding: 10px 12px; }
        }
