/* Extracted from splash.html <style> block (T5 — cacheable, smaller HTML). */
        /* ===== RESET ===== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --orange: #FF6600;
            --orange-hover: #e55c00;
            --orange-glow: rgba(255, 102, 0, 0.15);
            --orange-glow-strong: rgba(255, 102, 0, 0.3);
            --bg: #0a0a0a;
            --surface: #141414;
            --surface-elevated: #1a1a1a;
            --border: #2a2a2a;
            --border-subtle: #1f1f1f;
            --text-primary: #f5f5f5;
            --text-secondary: #a3a3a3;
            --text-tertiary: #737373;
            --green: #22c55e;
            --red: #ef4444;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text-primary);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ===== TYPOGRAPHY ===== */
        .font-mono { font-family: 'JetBrains Mono', monospace; }
        .tracking-wide { letter-spacing: 0.05em; }
        .tracking-wider { letter-spacing: 0.1em; }
        .tracking-widest { letter-spacing: 0.15em; }
        .uppercase { text-transform: uppercase; }

        /* ===== ANIMATED GRID BACKGROUND ===== */
        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 102, 0, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 102, 0, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: gridShift 20s linear infinite;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 102, 0, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse 60% 40% at 20% 80%, rgba(255, 102, 0, 0.04) 0%, transparent 50%);
        }

        @keyframes gridShift {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        /* Scan line effect */
        .scanline {
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 0, 0, 0.03) 2px,
                rgba(0, 0, 0, 0.03) 4px
            );
            pointer-events: none;
            z-index: 1;
        }

        /* Horizontal scan sweep */
        .scan-sweep {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(180deg, rgba(255, 102, 0, 0.03) 0%, transparent 100%);
            animation: scanSweep 8s ease-in-out infinite;
            pointer-events: none;
            z-index: 1;
        }

        @keyframes scanSweep {
            0%, 100% { transform: translateY(-200px); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(100vh); opacity: 0; }
        }

        /* ===== NAV OVERRIDE FOR SPLASH ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            margin-bottom: 0;
        }

        .splash-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 8px 20px;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
            white-space: nowrap;
        }

        .splash-btn-primary {
            background: var(--orange);
            color: white;
        }
        .splash-btn-primary:hover {
            background: var(--orange-hover);
        }

        .splash-btn-ghost {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border);
        }
        .splash-btn-ghost:hover {
            color: var(--text-primary);
            border-color: var(--text-tertiary);
        }

        .splash-btn-large {
            padding: 14px 36px;
            font-size: 12px;
        }

        .splash-btn-outline-primary {
            background: transparent;
            color: var(--orange);
            border: 1px solid var(--orange);
        }
        .splash-btn-outline-primary:hover {
            background: var(--orange-glow);
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 24px 80px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            text-align: center;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--orange);
            margin-bottom: 32px;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards;
            animation-delay: 0.2s;
        }

        .hero-tag::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--orange);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .hero-headline {
            font-family: 'JetBrains Mono', monospace;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 24px;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards;
            animation-delay: 0.4s;
        }

        .hero-headline .accent {
            color: var(--orange);
        }

        .hero-sub {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1rem, 2vw, 1.25rem);
            line-height: 1.6;
            color: var(--text-secondary);
            max-width: 580px;
            margin: 0 auto 40px;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards;
            animation-delay: 0.6s;
        }

        .hero-ctas {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards;
            animation-delay: 0.8s;
        }

        .hero-free-note {
            width: 100%;
            margin-top: 16px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== TERMINAL PREVIEW ===== */
        .terminal-preview {
            margin-top: 64px;
            border: 1px solid var(--border);
            background: var(--surface);
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards;
            animation-delay: 1s;
        }

        .terminal-titlebar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-bottom: 1px solid var(--border);
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .terminal-dot {
            width: 8px;
            height: 8px;
            background: var(--orange);
        }

        .terminal-body {
            padding: 20px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            line-height: 1.8;
        }

        .terminal-line {
            display: flex;
            gap: 8px;
            opacity: 0;
            animation: termReveal 0.4s ease forwards;
        }

        .terminal-line:nth-child(1) { animation-delay: 1.4s; }
        .terminal-line:nth-child(2) { animation-delay: 1.8s; }
        .terminal-line:nth-child(3) { animation-delay: 2.2s; }
        .terminal-line:nth-child(4) { animation-delay: 2.6s; }
        .terminal-line:nth-child(5) { animation-delay: 3.0s; }
        .terminal-line:nth-child(6) { animation-delay: 3.4s; }

        @keyframes termReveal {
            from { opacity: 0; transform: translateX(-8px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .terminal-prompt { color: var(--orange); }
        .terminal-cmd { color: var(--text-primary); }
        .terminal-output { color: var(--text-tertiary); padding-left: 16px; }
        .terminal-success { color: var(--green); }
        .terminal-signal { color: var(--orange); }

        /* ===== SECTION COMMON ===== */
        section {
            padding: 100px 24px;
        }

        .section-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--orange);
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'JetBrains Mono', monospace;
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-secondary);
            max-width: 560px;
        }

        /* ===== FEATURES ===== */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
            margin-top: 56px;
        }

        @media (max-width: 768px) {
            .features-grid { grid-template-columns: 1fr; }
        }

        .feature-card {
            border: 1px solid var(--border);
            background: var(--surface);
            padding: 40px;
            position: relative;
            transition: border-color 0.3s ease;
        }

        .feature-card:hover {
            border-color: var(--orange);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--orange-glow);
            margin-bottom: 24px;
            font-size: 18px;
        }

        .feature-title {
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 12px;
        }

        .feature-desc {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .feature-tag {
            display: inline-block;
            margin-top: 20px;
            padding: 4px 10px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border: 1px solid var(--border);
            color: var(--text-tertiary);
        }

        /* ===== HOW IT WORKS ===== */
        .steps-section {
            background: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0;
            margin-top: 56px;
            max-width: 880px;
        }

        @media (max-width: 768px) {
            .steps-grid { grid-template-columns: 1fr; }
        }

        .step {
            padding: 40px;
            position: relative;
        }

        .step:not(:last-child) {
            border-right: 1px solid var(--border);
        }

        @media (max-width: 768px) {
            .step:not(:last-child) {
                border-right: none;
                border-bottom: 1px solid var(--border);
            }
        }

        .step-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 48px;
            font-weight: 700;
            color: var(--border);
            line-height: 1;
            margin-bottom: 24px;
        }

        .step-title {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 12px;
        }

        .step-desc {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        /* ===== COUNCIL VISUAL ===== */
        .council-section {
            position: relative;
            overflow: hidden;
        }

        .council-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            margin-top: 56px;
        }

        @media (max-width: 768px) {
            .council-grid { grid-template-columns: 1fr; }
        }

        .council-visual {
            border: 1px solid var(--border);
            background: var(--surface);
            padding: 32px;
        }

        .council-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 24px;
        }

        .council-header-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--orange);
        }

        .council-status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            color: var(--green);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .council-status-dot {
            width: 6px;
            height: 6px;
            background: var(--green);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .agent-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
        }

        .agent-row:last-child { border-bottom: none; }

        .agent-name {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-primary);
        }

        .agent-indicator {
            width: 3px;
            height: 16px;
            background: var(--orange);
        }

        .agent-vote {
            padding: 2px 8px;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .agent-vote.buy {
            color: var(--green);
            background: rgba(34, 197, 94, 0.1);
        }

        .agent-vote.sell {
            color: var(--red);
            background: rgba(239, 68, 68, 0.1);
        }

        .agent-vote.hold {
            color: var(--text-tertiary);
            background: rgba(115, 115, 115, 0.1);
        }

        .council-consensus {
            margin-top: 20px;
            padding: 16px;
            border: 1px solid rgba(34, 197, 94, 0.3);
            background: rgba(34, 197, 94, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .consensus-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-tertiary);
        }

        .consensus-value {
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            color: var(--green);
            text-transform: uppercase;
        }

        .council-details {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .council-detail-item h3 {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 8px;
        }

        .council-detail-item p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        /* ===== PRICING / FREE TIER ===== */
        .pricing-section {
            background: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .pricing-card {
            max-width: 480px;
            margin: 56px auto 0;
            border: 1px solid var(--orange);
            position: relative;
        }

        .pricing-badge {
            position: absolute;
            top: -1px;
            right: -1px;
            background: var(--orange);
            color: white;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 6px 14px;
        }

        .pricing-card-inner {
            padding: 40px;
        }

        .pricing-name {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-tertiary);
            margin-bottom: 8px;
        }

        .pricing-price {
            font-family: 'JetBrains Mono', monospace;
            font-size: 48px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 4px;
        }

        .pricing-period {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: var(--text-tertiary);
            margin-bottom: 32px;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 32px;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 8px 0;
            font-size: 14px;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-subtle);
        }

        .pricing-features li:last-child { border-bottom: none; }

        .pricing-check {
            color: var(--orange);
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .pricing-cta {
            width: 100%;
        }

        /* ===== FINAL CTA ===== */
        .final-cta {
            text-align: center;
            position: relative;
        }

        .final-cta-inner {
            max-width: 600px;
            margin: 0 auto;
        }

        .final-cta .section-title {
            margin-bottom: 20px;
        }

        .final-cta-desc {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }

        .final-cta-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* ===== FOOTER ===== */
        .footer {
            border-top: 1px solid var(--border);
            padding: 32px 24px;
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: var(--orange);
            color: white;
            font-family: 'JetBrains Mono', monospace;
            font-size: 7px;
            font-weight: 700;
        }

        .footer-copy {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: var(--text-tertiary);
        }

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

        .footer-links a {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: var(--text-tertiary);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: color 0.2s;
        }

        .footer-links a:hover { color: var(--orange); }

        /* ===== DATA STREAM DECORATION ===== */
        .data-stream {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 1px;
            overflow: hidden;
            pointer-events: none;
        }

        .data-stream::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 0;
            width: 1px;
            height: 30%;
            background: linear-gradient(180deg, transparent, var(--orange), transparent);
            animation: streamFlow 6s linear infinite;
        }

        .data-stream.left { left: 10%; }
        .data-stream.right { right: 10%; }
        .data-stream.right::before { animation-delay: -3s; }

        @keyframes streamFlow {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(400%); }
        }

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== DIVIDER ===== */
        .divider {
            height: 1px;
            background: var(--border);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 640px) {
            .hero { padding: 100px 20px 60px; }
            section { padding: 64px 20px; }
            .feature-card { padding: 28px; }
            .step { padding: 28px; }
            .pricing-card-inner { padding: 28px; }
            .header-content { padding: 0 16px; }
            .council-grid { gap: 32px; }
        }

        /* ===== MOBILE <=767px — ADDITIVE ONLY (desktop/tablet unchanged) ===== */
        @media (max-width: 767px) {
            /* Footer link row is a non-wrapping flex (~585px) — wrap it */
            .footer-links { flex-wrap: wrap; gap: 12px 24px; justify-content: center; }
        }
    
