
        :root {
            --primary: #E84B2A;
            --primary-dark: #C93D1E;
            --secondary: #DBA028;
            --gradient: linear-gradient(135deg, #E84B2A 0%, #DBA028 100%);
            --bg: #ffffff;
            --bg-off: #f6f7f9;
            --text: #111827;
            --text-2: #6b7280;
            --text-3: #9ca3af;
            --border: #e5e7eb;
            --font-d: 'Outfit', sans-serif;
            --font-b: 'Sora', sans-serif;
            --font-m: 'JetBrains Mono', monospace;
            --ease: cubic-bezier(0.65, 0.05, 0, 1);
            --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
            --container: 1200px;
            --radius: 16px;
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html.lenis, html.lenis body { height: auto; }
        html { -webkit-font-smoothing: antialiased; scrollbar-color: #E84B2A #f6f7f9; }
        body { background: var(--bg); color: var(--text); font-family: var(--font-b); overflow-x: hidden; }
        ::selection { background: rgba(219,160,40,0.28); color: var(--text); }
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: var(--bg-off); }
        ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #E84B2A, #DBA028); border-radius: 5px; border: 2px solid var(--bg-off); }
        :focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; border-radius: 4px; }
        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }
        .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

        /* ======= PRELOADER ======= */
        .preloader {
            position: fixed; inset: 0; z-index: 9999;
            background: var(--bg);
            display: flex; align-items: center; justify-content: center;
            transition: opacity 0.6s var(--ease), visibility 0.6s;
        }
        .preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
        .preloader-logo {
            width: 80px; height: 80px;
            animation: preloaderPulse 1s ease-in-out infinite alternate;
        }
        @keyframes preloaderPulse { from { transform: scale(0.9); opacity: 0.5; } to { transform: scale(1.1); opacity: 1; } }

        /* ======= SCROLL PROGRESS ======= */
        .scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--gradient); z-index: 10001; }

        /* ======= NAV ======= */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 18px 0; transition: all 0.5s var(--ease);
        }
        .nav.scrolled {
            padding: 10px 0; background: rgba(255,255,255,0.88);
            backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--border);
        }
        .nav-inner { display: flex; justify-content: space-between; align-items: center; }
        .nav-logo { display: flex; align-items: center; gap: 10px; position: relative; }
        .nav-logo img { height: 36px; transition: opacity 0.4s var(--ease); }
        .nav-logo span { font-family: var(--font-d); font-size: 1.2rem; font-weight: 700; }
        .nav-eye-canvas {
            position: absolute; top: 0; left: 0;
            width: 36px; height: 36px;
            opacity: 0; transition: opacity 0.4s var(--ease);
            pointer-events: none;
        }
        .nav-logo.eye-active img { opacity: 0; }
        .nav-logo.eye-active .nav-eye-canvas { opacity: 1; }
        .nav-right { display: flex; align-items: center; gap: 28px; }
        .nav-links { display: flex; gap: 24px; }
        .nav-link {
            color: var(--text-2); font-size: 0.9rem; font-weight: 500;
            position: relative; overflow: hidden;
        }
        .nav-link span {
            display: inline-block; transition: transform 0.5s var(--ease);
        }
        .nav-link:hover span { transform: translateY(-100%); }
        .nav-link::after {
            content: attr(data-text); position: absolute; top: 100%; left: 0;
            color: var(--primary); transition: top 0.5s var(--ease);
        }
        .nav-link:hover::after { top: 0; }
        .nav-cta {
            padding: 10px 26px; background: var(--text); border-radius: 50px;
            color: white; font-size: 0.88rem; font-weight: 600;
            border: none; cursor: pointer; transition: all 0.5s var(--ease);
            position: relative; overflow: hidden;
        }
        .nav-cta::before {
            content: ''; position: absolute; inset: 0;
            background: var(--gradient); transform: translateY(100%);
            transition: transform 0.5s var(--ease);
        }
        .nav-cta:hover::before { transform: translateY(0); }
        .nav-cta span { position: relative; z-index: 1; }

        /* ======= LANGUAGE SELECTOR ======= */
        .language-selector { position: relative; }
        .selected-language {
            display: flex; align-items: center; gap: 8px;
            padding: 7px 12px; background: rgba(0,0,0,0.04);
            border-radius: 10px; cursor: pointer;
            transition: all 0.3s var(--ease); border: 1px solid transparent;
        }
        .selected-language:hover { background: rgba(0,0,0,0.08); border-color: rgba(0,0,0,0.1); }
        .selected-language img { width: 22px; height: 16px; object-fit: cover; border-radius: 3px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
        .selected-language span { font-family: var(--font-b); font-size: 0.82rem; font-weight: 600; color: var(--text); }
        .selected-language i { font-size: 0.65rem; color: var(--text-3); transition: transform 0.3s var(--ease); }
        .language-selector:hover .selected-language i { transform: rotate(180deg); }
        .language-dropdown {
            position: absolute; top: calc(100% + 8px); right: 0;
            min-width: 130px; background: white;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 12px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
            padding: 6px; list-style: none;
            opacity: 0; visibility: hidden; transform: translateY(8px);
            transition: all 0.25s var(--ease); z-index: 10000;
        }
        .language-selector:hover .language-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
        .language-dropdown li {
            display: flex; align-items: center; gap: 10px;
            padding: 9px 12px; cursor: pointer; border-radius: 8px;
            transition: background 0.2s ease;
        }
        .language-dropdown li:hover { background: rgba(232,75,42,0.06); }
        .language-dropdown li img { width: 22px; height: 16px; object-fit: cover; border-radius: 3px; }
        .language-dropdown li span { font-family: var(--font-b); font-size: 0.82rem; font-weight: 500; color: var(--text); }

        /* Mobile language grid */
        .mobile-language-selector { width: 100%; max-width: 280px; }
        .mobile-lang-grid {
            display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
        }
        .mobile-lang-item {
            display: flex; flex-direction: column; align-items: center; gap: 4px;
            padding: 10px 4px; border-radius: 10px; cursor: pointer;
            transition: background 0.2s ease;
        }
        .mobile-lang-item:hover { background: rgba(232,75,42,0.06); }
        .mobile-lang-item img { width: 28px; height: 20px; object-fit: cover; border-radius: 3px; }
        .mobile-lang-item span { font-family: var(--font-b); font-size: 0.7rem; font-weight: 600; color: var(--text-2); }

        .mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
        .mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: all 0.3s ease; }
        @media (max-width: 768px) { .nav-links, .language-selector { display: none; } .mobile-menu-btn { display: block; } }

        .mobile-overlay {
            position: fixed; inset: 0; background: var(--bg); z-index: 999;
            display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
            clip-path: circle(0% at calc(100% - 40px) 30px);
            transition: clip-path 0.7s var(--ease);
        }
        .mobile-overlay.open { clip-path: circle(150% at calc(100% - 40px) 30px); }
        .mobile-overlay a { font-family: var(--font-d); font-size: 2rem; font-weight: 700; }
        .mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

        /* ======= HERO ======= */
        .hero {
            min-height: 100vh; display: flex; align-items: center; justify-content: center;
            padding: 120px 0 80px; position: relative; overflow: hidden;
        }
        /* The eye is the hero's light source: a central bloom above the fold,
           two warm wings at the edges. Perceptible, still light-theme quiet. */
        .hero-bg {
            position: absolute; inset: 0; z-index: 0;
            background:
                radial-gradient(ellipse at 50% 30%, rgba(232,75,42,0.10) 0%, transparent 42%),
                radial-gradient(ellipse at 20% 50%, rgba(232,75,42,0.07) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(219,160,40,0.06) 0%, transparent 50%);
        }
        .hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 24px; }

        /* ============================================================
           Hero gutters — real platform screenshots in browser chrome
           ============================================================ */
        .hero-floats {
            position: absolute; inset: 0;
            z-index: 1;
            pointer-events: none;
        }
        .hero-preview {
            position: absolute;
            margin: 0;
            pointer-events: auto;
        }
        .hp-frame {
            background: var(--bg);
            border: 1px solid rgba(219, 160, 40, 0.30);
            border-radius: 12px;
            overflow: hidden;
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.6) inset,
                0 30px 70px -28px rgba(0, 0, 0, 0.32),
                0 18px 40px -22px rgba(232, 75, 42, 0.15);
            transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
        }
        /* Forged rail: no borrowed macOS chrome. Warm brushed metal, three
           ember-gold rivets and a rune notch mark these as Odin's own windows. */
        .hp-bar {
            display: flex; align-items: center; gap: 5px;
            padding: 8px 10px;
            background: linear-gradient(180deg, #fbf7f1 0%, #f3ede3 100%);
            border-bottom: 1px solid rgba(219, 160, 40, 0.35);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }
        .hp-bar::before {
            content: 'ᛟ';
            font-size: 0.62rem; line-height: 1;
            color: rgba(232, 75, 42, 0.55);
            margin-right: 3px;
        }
        .hp-bar > span:nth-child(1),
        .hp-bar > span:nth-child(2),
        .hp-bar > span:nth-child(3) {
            width: 5px; height: 5px; border-radius: 1px;
            background: linear-gradient(135deg, #E84B2A, #DBA028);
            opacity: 0.55;
            transform: rotate(45deg);
        }
        .hp-url {
            flex: 1; text-align: center;
            margin: 0 14px;
            padding: 3px 10px;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 999px;
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.6rem; font-weight: 600;
            color: var(--text-3);
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }
        .hp-url i { color: #10b981; font-size: 0.55rem; margin-right: 4px; }
        .hp-frame img {
            display: block;
            width: 100%; height: auto;
            cursor: zoom-in;
        }

        /* Annotation tag — sits at top of each preview, calls out the feature */
        .hp-tag {
            position: absolute;
            display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 14px;
            background: var(--bg);
            border: 1px solid rgba(232, 75, 42, 0.30);
            border-radius: 999px;
            font-size: 0.78rem; font-weight: 600;
            color: var(--text-2);
            box-shadow: 0 10px 24px -10px rgba(232, 75, 42, 0.30);
            white-space: nowrap;
            z-index: 2;
        }
        .hp-tag i { color: var(--primary); font-size: 0.85rem; }
        .hp-tag strong { color: var(--text); font-weight: 800; }
        .hp-tag-left  { top: -14px; right: 18px; }
        .hp-tag-right { top: -14px; left:  18px; }

        /* Per-side positioning + tilt + float animation */
        .hp-left {
            top: 18%; left: -4%;
            width: clamp(360px, 26vw, 460px);
            transform: rotate(-5deg);
            animation: hpFloatL 9s ease-in-out infinite;
        }
        .hp-right {
            top: 22%; right: -4%;
            width: clamp(360px, 26vw, 460px);
            transform: rotate(5deg);
            animation: hpFloatR 10s ease-in-out infinite -3s;
        }
        @keyframes hpFloatL {
            0%, 100% { transform: rotate(-5deg) translateY(0); }
            50%      { transform: rotate(-5deg) translateY(-14px); }
        }
        @keyframes hpFloatR {
            0%, 100% { transform: rotate(5deg) translateY(0); }
            50%      { transform: rotate(5deg) translateY(-14px); }
        }
        .hero-preview:hover { animation-play-state: paused; }
        .hero-preview:hover .hp-frame {
            transform: translateY(-4px) scale(1.015);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.6) inset,
                0 40px 90px -28px rgba(0, 0, 0, 0.40),
                0 22px 50px -22px rgba(232, 75, 42, 0.22);
        }

        /* Hide on screens too narrow for side gutters */
        @media (max-width: 1379px) {
            .hero-floats { display: none; }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-preview { animation: none !important; }
        }

        /* The Eye of Odin */
        .eye-container {
            position: relative;
            width: 220px; height: 220px;
            margin: 0 auto 36px;
        }
        .eye-canvas {
            width: 100%; height: 100%;
            cursor: pointer;
        }
        .eye-glow {
            position: absolute; inset: -70px;
            background: radial-gradient(circle, rgba(232,75,42,0.12) 0%, rgba(219,160,40,0.05) 45%, transparent 70%);
            pointer-events: none;
            animation: eyeGlowPulse 4s ease-in-out infinite;
        }
        @keyframes eyeGlowPulse {
            0%, 100% { opacity: 0.6; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.08); }
        }
        /* Rune particles around the eye */
        .eye-runes {
            position: absolute; inset: -60px;
            pointer-events: none;
        }
        .eye-rune {
            position: absolute;
            font-size: 0.7rem;
            color: rgba(232,75,42,0.15);
            font-family: var(--font-m);
            animation: runeFloat 8s ease-in-out infinite;
        }
        .eye-rune:nth-child(1) { top: 5%; left: 10%; animation-delay: 0s; }
        .eye-rune:nth-child(2) { top: 15%; right: 8%; animation-delay: -1.5s; }
        .eye-rune:nth-child(3) { bottom: 20%; left: 5%; animation-delay: -3s; }
        .eye-rune:nth-child(4) { bottom: 10%; right: 12%; animation-delay: -4.5s; }
        .eye-rune:nth-child(5) { top: 50%; left: -2%; animation-delay: -6s; }
        .eye-rune:nth-child(6) { top: 40%; right: -2%; animation-delay: -2s; }
        @keyframes runeFloat {
            0%, 100% { opacity: 0.1; transform: translateY(0) scale(1); }
            50% { opacity: 0.35; transform: translateY(-8px) scale(1.1); }
        }
        /* Angry eye easter egg */
        .eye-container.angry-1 .eye-glow {
            background: radial-gradient(circle, rgba(232,50,20,0.14) 0%, transparent 70%);
            animation-duration: 2.5s;
        }
        .eye-container.angry-2 .eye-glow {
            background: radial-gradient(circle, rgba(220,20,10,0.22) 0%, transparent 70%);
            animation-duration: 1.5s;
        }
        .eye-container.angry-3 .eye-glow {
            background: radial-gradient(circle, rgba(200,10,5,0.35) 0%, transparent 70%);
            animation-duration: 0.8s;
        }
        .eye-container.angry-1 .eye-rune { color: rgba(232,60,35,0.2); animation-duration: 6s; }
        .eye-container.angry-2 .eye-rune { color: rgba(230,40,25,0.3); animation-duration: 4s; }
        .eye-container.angry-3 .eye-rune { color: rgba(220,30,20,0.4); animation-duration: 2s; }
        @keyframes angryShake {
            0%, 100% { transform: translate(0, 0); }
            10% { transform: translate(-2px, 1px); }
            30% { transform: translate(2px, -1px); }
            50% { transform: translate(-1px, 2px); }
            70% { transform: translate(1px, -2px); }
            90% { transform: translate(-2px, -1px); }
        }
        .eye-container.angry-3 { animation: angryShake 0.3s ease-in-out infinite; }

        @media (max-width: 768px) { .eye-container { width: 160px; height: 160px; } }

        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 20px; border: 1px solid var(--border); border-radius: 50px;
            font-size: 0.78rem; font-weight: 600; color: var(--text-2);
            letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px;
        }
        .hero-badge i { color: var(--primary); }

        .hero-title {
            font-family: var(--font-d); font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 900; line-height: 1.0; margin-bottom: 20px;
            letter-spacing: -0.04em;
        }
        .hero-title .typing-line { white-space: nowrap; min-height: 1.05em; }
        .hero-mythology {
            font-size: 0.88rem; color: var(--text-3);
            font-style: italic; margin-bottom: 28px;
            letter-spacing: 0.02em;
        }
        .hero-title .line { display: block; overflow: hidden; }
        .hero-title .line-inner {
            display: block;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
        .hero-title .gradient-word {
            background: var(--gradient);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }

        .hero-sub {
            font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--text-2);
            max-width: 520px; margin: 0 auto 40px; line-height: 1.8;
        }
        .hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; margin-bottom: 18px; }
        .hero-cta-trust {
            font-size: 0.82rem; color: var(--text-3); font-weight: 500;
            letter-spacing: 0.01em; margin-bottom: 48px;
            display: inline-flex; align-items: center; gap: 4px; flex-wrap: wrap;
            justify-content: center; max-width: 580px;
        }
        .hero-cta-trust i { color: var(--primary); margin: 0 4px; font-size: 0.74rem; }
        @media (max-width: 480px) {
            .hero-cta-trust { font-size: 0.74rem; gap: 2px; padding: 0 12px; }
        }

        .btn-primary {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 18px 38px; background: var(--text); border: none;
            border-radius: 60px; color: white; font-family: var(--font-b);
            font-size: 1rem; font-weight: 600; cursor: pointer;
            position: relative; overflow: hidden; transition: transform 0.5s var(--ease);
        }
        .btn-primary::before {
            content: ''; position: absolute; inset: 0;
            background: var(--gradient); transform: translateY(100%);
            transition: transform 0.5s var(--ease);
        }
        .btn-primary:hover { transform: scale(1.03); }
        .btn-primary:hover::before { transform: translateY(0); }
        .btn-primary span, .btn-primary i { position: relative; z-index: 1; }

        /* Stacked variant: main verb on top, free-tier sub-line below */
        .btn-primary-stacked {
            flex-direction: column; align-items: center;
            gap: 4px; padding: 12px 32px 11px;
            line-height: 1.1;
        }
        .btn-primary-stacked .btn-main {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em;
        }
        .btn-primary-stacked .btn-sub {
            display: inline-flex; align-items: center; gap: 5px;
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.62rem; font-weight: 700;
            color: rgba(255, 255, 255, 0.78);
            letter-spacing: 0.10em; text-transform: uppercase;
        }
        .btn-primary-stacked .btn-sub i {
            color: #4ade80; font-size: 0.62rem;
        }

        .btn-secondary {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 18px 38px; background: transparent; border: 2px solid var(--border);
            border-radius: 60px; color: var(--text); font-family: var(--font-b);
            font-size: 1rem; font-weight: 600; cursor: pointer;
            transition: all 0.5s var(--ease);
        }
        .btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: scale(1.03); }

        /* Subtle scroll-down cue — replaces the old "Explore Features" CTA.
           Round, low-emphasis, gently bouncing chevron. */
        .scroll-down-cue {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text-3);
            width: 44px; height: 44px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 0.9rem;
            display: flex; align-items: center; justify-content: center;
            transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
            animation: scrollCueBounce 2.4s ease-in-out infinite;
            margin: -22px auto 22px;
        }
        .scroll-down-cue:hover {
            color: var(--primary);
            border-color: var(--primary);
            background: rgba(232, 75, 42, 0.06);
            animation-play-state: paused;
        }
        @keyframes scrollCueBounce {
            0%, 100% { transform: translateY(0); }
            50%      { transform: translateY(5px); }
        }
        @media (prefers-reduced-motion: reduce) {
            .scroll-down-cue { animation: none; }
        }
        .btn-demo {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 18px 38px; background: transparent; border: 2px solid #DBA028;
            border-radius: 60px; color: #DBA028; font-family: var(--font-b);
            font-size: 1rem; font-weight: 600; cursor: pointer;
            transition: all 0.5s var(--ease); text-decoration: none;
        }
        .btn-demo:hover { border-color: #f0b840; color: #f0b840; transform: scale(1.03); box-shadow: 0 0 20px rgba(219,160,40,0.2); }

        /* Stacked demo variant: action verb + "preview / simulated" sub-line */
        .btn-demo-stacked {
            flex-direction: column; align-items: center;
            gap: 4px; padding: 12px 30px 11px;
            line-height: 1.1;
        }
        .btn-demo-stacked .btn-main {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em;
        }
        .btn-demo-stacked .btn-sub {
            display: inline-flex; align-items: center; gap: 5px;
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.62rem; font-weight: 700;
            color: rgba(219, 160, 40, 0.72);
            letter-spacing: 0.10em; text-transform: uppercase;
        }
        .btn-demo-stacked .btn-sub i { font-size: 0.62rem; }
        .btn-cta-demo {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 18px 38px; background: transparent; border: 2px solid #DBA028;
            border-radius: 60px; color: #DBA028; font-family: var(--font-b);
            font-size: 1.05rem; font-weight: 700; cursor: pointer;
            transition: all 0.5s var(--ease); text-decoration: none;
        }
        .btn-cta-demo:hover { border-color: #f0b840; color: #f0b840; transform: scale(1.03); box-shadow: 0 0 24px rgba(219,160,40,0.25); }

        /* Hero Stats */
        .hero-stats { display: flex; gap: 0; justify-content: center; }
        .hero-stat {
            text-align: center; padding: 24px 36px;
            border-right: 1px solid var(--border);
            position: relative;
        }
        .hero-stat:last-child { border-right: none; }
        .hero-stat-value {
            font-family: var(--font-d); font-size: 2.4rem; font-weight: 900;
            letter-spacing: -0.03em;
        }
        .hero-stat-label { font-size: 0.72rem; color: var(--text-3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
        .hero-providers {
            display: flex; align-items: center; justify-content: center; gap: 40px;
            margin-top: 36px;
        }
        .hero-providers img { height: 48px; width: auto; }
        @media (max-width: 768px) {
            .hero-providers { gap: 28px; }
            .hero-providers img { height: 36px; }
        }

        @media (max-width: 768px) {
            .hero-stats { flex-wrap: wrap; }
            .hero-stat { padding: 18px 24px; border-right: none; border-bottom: 1px solid var(--border); width: 50%; }
            .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-bottom: none; }
            .hero-stat-value { font-size: 1.8rem; }
        }

        /* ======= MARQUEE ======= */
        .marquee {
            padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
            overflow: hidden; position: relative; z-index: 1;
            -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
        }
        .marquee:hover .marquee-track { animation-play-state: paused; }
        .marquee-track {
            display: flex; gap: 60px; width: max-content;
            animation: marqueeScroll 40s linear infinite;
        }
        .marquee-item {
            font-family: var(--font-d); font-size: 1rem; font-weight: 600;
            color: var(--text-3); white-space: nowrap; display: flex; align-items: center; gap: 12px;
            text-transform: uppercase; letter-spacing: 0.06em;
        }
        .marquee-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
        @keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* ======= SECTION SHARED ======= */
        .section { position: relative; z-index: 1; }
        .section-label {
            font-size: 0.72rem; font-weight: 700; color: var(--primary);
            letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px;
        }
        .section-title {
            font-family: var(--font-d); font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 16px;
        }
        .section-title .line { display: block; overflow: hidden; }
        .section-title .line-inner { display: block; }
        .section-sub { font-size: 1rem; color: var(--text-2); max-width: 500px; line-height: 1.7; }
        .section-header-centered { text-align: center; margin-bottom: 60px; }
        .section-header-centered .section-sub { margin: 0 auto; }
        .gradient-word {
            background: var(--gradient);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }

        /* ======= HORIZONTAL SCROLL — LAYOUTS ======= */
        .layouts-section { padding: 0; background: var(--bg); overflow: hidden; }
        .layouts-pin { position: relative; }
        .layouts-header { padding: 120px 0 40px; }
        .layouts-track-wrapper { overflow: visible; }
        .layouts-track {
            display: flex; gap: 24px; padding: 0 24px;
            width: max-content;
        }
        .layout-card {
            width: 70vw; max-width: 900px; flex-shrink: 0;
            border-radius: var(--radius); overflow: hidden;
            border: 1px solid var(--border); background: #131722;
            box-shadow: 0 8px 40px rgba(0,0,0,0.08);
            transition: transform 0.6s var(--ease);
        }
        .layout-card:hover { transform: scale(0.98); }
        .layout-card img { width: 100%; display: block; }
        .layout-card-label {
            padding: 16px 20px; background: var(--bg);
            font-family: var(--font-d); font-size: 0.9rem; font-weight: 600; color: var(--text);
            border-top: 1px solid var(--border);
        }

        .feature-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; padding: 40px 24px 120px; }
        .feature-pill {
            padding: 10px 20px; background: var(--bg-off); border: 1px solid var(--border);
            border-radius: 50px; font-size: 0.82rem; font-weight: 500; color: var(--text-2);
            transition: all 0.4s var(--ease);
        }
        .feature-pill:hover { border-color: var(--primary); color: var(--primary); background: rgba(232,75,42,0.03); transform: translateY(-2px); }
        .feature-pill i { margin-right: 6px; }

        /* ======= BENTO GRID ======= */
        .modules-section { padding: 120px 0; background: var(--bg-off); }
        .bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
        .bento-card {
            position: relative; background: var(--bg); border: 1px solid var(--border);
            border-radius: var(--radius); padding: 28px; overflow: hidden;
            transition: all 0.6s var(--ease);
        }
        .bento-card::after {
            content: ''; position: absolute; inset: 0;
            background: var(--gradient); opacity: 0;
            transition: opacity 0.6s var(--ease);
            z-index: 0;
        }
        .bento-card:hover::after { opacity: 0.03; }
        .bento-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); border-color: rgba(232,75,42,0.2); }
        .bento-card > * { position: relative; z-index: 1; }
        .bento-card.large { grid-column: span 2; padding: 36px; }
        .bento-card.tall { grid-row: span 2; }
        .bento-num { font-family: var(--font-m); font-size: 0.65rem; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
        .bento-title { font-family: var(--font-d); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
        .bento-card.large .bento-title { font-size: 1.4rem; }
        .bento-desc { font-size: 0.86rem; color: var(--text-2); line-height: 1.7; margin-bottom: 12px; }
        .bento-list { list-style: none; }
        .bento-list li { padding: 4px 0 4px 18px; font-size: 0.82rem; color: var(--text); position: relative; }
        .bento-list li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); opacity: 0.4; }
        .integration-badge { position: absolute; top: 16px; right: 16px; padding: 4px 10px; background: rgba(22,163,74,0.06); border: 1px solid rgba(22,163,74,0.18); border-radius: 20px; font-size: 0.65rem; font-weight: 700; color: #16a34a; text-transform: uppercase; letter-spacing: 0.1em; }
        .bento-preview { margin-top: 14px; padding: 12px; background: var(--bg-off); border-radius: 10px; border: 1px solid var(--border); }
        .workflow-steps { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 14px; }
        .workflow-step { padding: 7px 14px; background: rgba(232,75,42,0.05); border-radius: 8px; font-size: 0.78rem; font-weight: 600; color: var(--primary); }
        .workflow-arrow { color: var(--text-3); font-size: 0.75rem; }
        @media (max-width: 900px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } .bento-card.large { grid-column: span 2; } }
        @media (max-width: 640px) { .bento-grid { grid-template-columns: 1fr; } .bento-card.large { grid-column: span 1; } }

        /* ===== Modules Bento Redesign — per-card unique visuals =====
           Same approach as the why-section: 6-col grid with span variants,
           each card has its OWN visual hook instead of a uniform icon-box.
           Prefix .mb-* to avoid collisions with the legacy .bento-* classes
           still used by other sections. */
        .mb-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
            max-width: 1180px;
            margin: 0 auto;
        }
        .mb-card {
            position: relative;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 22px;
            overflow: hidden;
            transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
            display: flex;
            flex-direction: column;
            gap: 14px;
            min-height: 200px;
        }
        .mb-card:hover {
            transform: translateY(-4px);
            border-color: rgba(232, 75, 42, 0.25);
            box-shadow: 0 18px 38px -18px rgba(0, 0, 0, 0.10);
        }
        .mb-h {
            font-family: var(--font-d); font-size: 1.02rem; font-weight: 800;
            letter-spacing: -0.02em; line-height: 1.25;
            margin: auto 0 0; color: var(--text);
        }
        .mb-p {
            font-size: 0.82rem; line-height: 1.45;
            color: var(--text-2); margin: 4px 0 0;
        }
        /* Span variants — 7 cards in 6-col grid: 2+2+2, 3+3, 3+3 */
        .mb-01, .mb-02, .mb-03 { grid-column: span 2; }
        .mb-04, .mb-05, .mb-06, .mb-10 { grid-column: span 3; }

        /* --- 01 Order Entry: BUY/SELL buttons --- */
        .mb-buyrow { display: flex; gap: 8px; }
        .mb-buy, .mb-sell {
            flex: 1; padding: 11px 0; border-radius: 8px;
            text-align: center; font-weight: 800; font-size: 0.86rem; color: #fff;
            letter-spacing: 0.04em;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
        }
        .mb-buy  { background: linear-gradient(180deg, #26a69a 0%, #1f857c 100%); }
        .mb-sell { background: linear-gradient(180deg, #ef5350 0%, #c23a37 100%); }
        .mb-qtybar { display: flex; align-items: center; gap: 6px; justify-content: center; }
        .mb-qtybar span {
            padding: 4px 10px; background: var(--bg-off); border: 1px solid var(--border);
            border-radius: 6px; font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.78rem; font-weight: 700;
        }
        .mb-qtybar .mb-q-active { border-color: var(--primary); color: var(--primary); }

        /* --- 02 Positions: stacked rows --- */
        .mb-poslist, .mb-tradelist, .mb-acclist, .mb-quote-list, .mb-news {
            display: flex; flex-direction: column; gap: 5px;
        }
        .mb-pos, .mb-trade, .mb-quote {
            display: flex; align-items: center; justify-content: space-between;
            padding: 7px 10px; background: var(--bg-off);
            border: 1px solid var(--border); border-radius: 7px;
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.74rem; font-weight: 600;
        }
        .mb-sym { color: var(--text); font-weight: 800; min-width: 38px; }
        .mb-qty.long  { color: #26a69a; }
        .mb-qty.short { color: #ef5350; }
        .mb-pl.up   { color: #26a69a; font-weight: 800; }
        .mb-pl.down { color: #ef5350; font-weight: 800; }
        .mb-side.long  { color: #26a69a; font-weight: 700; }
        .mb-side.short { color: #ef5350; font-weight: 700; }
        .mb-time { color: var(--text-3); }
        .mb-px   { color: var(--text); }

        /* --- 03 Working Orders: pending count badge --- */
        .mb-pending-wrap {
            display: flex; align-items: center; justify-content: center;
            flex: 1; min-height: 80px;
        }
        .mb-pending-stack {
            position: relative;
            display: inline-flex; align-items: center; gap: 14px;
            padding: 14px 22px;
            background: rgba(245, 158, 11, 0.08);
            border: 1px dashed rgba(245, 158, 11, 0.55);
            border-radius: 12px;
        }
        .mb-pending-num {
            font-family: var(--font-d); font-size: 2.4rem; font-weight: 900;
            line-height: 1; color: #d97706;
        }
        .mb-pending-lbl {
            font-size: 0.62rem; font-weight: 800;
            letter-spacing: 0.18em;
            color: #d97706; text-transform: uppercase;
        }
        .mb-pending-cancel {
            font-size: 0.7rem; font-weight: 700;
            color: var(--text-3);
            text-decoration: line-through;
            text-decoration-color: rgba(239, 68, 68, 0.6);
        }

        /* --- 04 Accounts --- */
        .mb-acc {
            display: grid; grid-template-columns: 1fr auto auto;
            gap: 10px; align-items: center;
            padding: 8px 10px; background: var(--bg-off);
            border: 1px solid var(--border); border-radius: 7px;
            font-size: 0.74rem;
        }
        .mb-acc-name { color: var(--text); font-weight: 700; }
        .mb-acc-bal  { color: var(--text); font-family: var(--font-m, ui-monospace, monospace); font-weight: 700; }
        .mb-acc-pl   { font-family: var(--font-m, ui-monospace, monospace); font-weight: 800; min-width: 56px; text-align: right; }

        /* --- 05 Trades (uses .mb-tradelist + .mb-trade) --- */
        .mb-trade { display: grid; grid-template-columns: 42px 1fr auto auto; gap: 10px; }

        /* --- 06 Watchlist (uses .mb-quote-list + .mb-quote) --- */
        .mb-quote .up   { color: #26a69a; }
        .mb-quote .down { color: #ef5350; }

        /* --- 10 News Feed --- */
        .mb-news-item {
            display: flex; align-items: center; gap: 8px;
            padding: 7px 10px; background: var(--bg-off);
            border: 1px solid var(--border); border-radius: 7px;
            font-size: 0.74rem; font-weight: 600; color: var(--text);
        }
        .mb-news-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
        .mb-news-dot.low  { background: #6c7080; }
        .mb-news-dot.med  { background: #d97706; }
        .mb-news-dot.high { background: #ef5350; }
        .mb-news-dot.crit { background: #ef4444; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2); }
        .mb-news-time { margin-left: auto; color: var(--text-3); font-family: var(--font-m, ui-monospace, monospace); font-size: 0.68rem; }

        @media (max-width: 980px) {
            .mb-grid { grid-template-columns: repeat(4, 1fr); }
            .mb-01, .mb-02, .mb-03 { grid-column: span 2; }
            .mb-04, .mb-05, .mb-06, .mb-10 { grid-column: span 4; }
        }
        @media (max-width: 600px) {
            .mb-grid { grid-template-columns: 1fr; }
            .mb-card { grid-column: span 1 !important; }
        }

        /* ======= TRI-FORCE ======= */
        .triforce-section {
            padding: 120px 0 80px; background: var(--bg-off);
            position: relative; overflow: visible;
        }
        .triforce-section::before {
            content: ''; position: absolute; inset: 0;
            background:
                radial-gradient(ellipse at 30% 40%, rgba(232,75,42,0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(219,160,40,0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .triforce-visual {
            position: relative; max-width: 480px; width: 100%;
            margin: 0 auto 48px; height: 340px;
        }
        .triforce-svg { width: 100%; height: 100%; display: block; overflow: visible; }

        .triforce-line {
            stroke-dasharray: 12 8; opacity: 0.6;
            animation: triforceLineFlow 3s linear infinite;
        }
        .triforce-line:nth-child(4) { animation-delay: -1.5s; }
        @keyframes triforceLineFlow {
            from { stroke-dashoffset: 0; }
            to { stroke-dashoffset: -40; }
        }

        .triforce-particle { filter: drop-shadow(0 0 6px currentColor); opacity: 0; }

        .triforce-node {
            position: absolute; display: flex; flex-direction: column;
            align-items: center; gap: 10px; z-index: 2;
        }
        .triforce-node img {
            width: 56px; height: 56px; border-radius: 16px;
            object-fit: contain;
            position: relative; z-index: 1;
            transition: transform 0.5s var(--ease);
            filter: drop-shadow(0 0 8px rgba(232,75,42,0.15));
        }
        .triforce-node:hover img { transform: scale(1.12); }
        .triforce-node-ring {
            position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
            width: 72px; height: 72px; border-radius: 20px;
            border: 2px solid rgba(232,75,42,0.15);
            animation: triforceNodePulse 3s ease-in-out infinite;
        }
        @keyframes triforceNodePulse {
            0%, 100% { opacity: 0.3; box-shadow: 0 0 12px rgba(232,75,42,0.05); border-color: rgba(232,75,42,0.15); }
            50% { opacity: 0.7; box-shadow: 0 0 20px rgba(232,75,42,0.12); border-color: rgba(219,160,40,0.3); }
        }
        .triforce-node-saga .triforce-node-ring { animation-delay: -1s; }
        .triforce-node-thor .triforce-node-ring { animation-delay: -2s; }

        .triforce-node-label {
            font-family: var(--font-d); font-size: 0.82rem; font-weight: 700;
            color: var(--text-2); letter-spacing: 0.05em;
            text-transform: uppercase; position: relative; z-index: 1;
        }

        .triforce-node-odin { top: 2%; left: 50%; transform: translateX(-50%); }
        .triforce-node-saga { bottom: 0; left: 7%; }
        .triforce-node-thor { bottom: 0; right: 7%; }

        .triforce-hub {
            position: absolute; top: 48%; left: 50%;
            transform: translate(-50%, -50%);
            width: 44px; height: 44px; border-radius: 50%;
            background: rgba(232,75,42,0.06);
            border: 1px solid rgba(232,75,42,0.15);
            display: flex; align-items: center; justify-content: center;
            color: var(--primary); font-size: 0.9rem;
            animation: triforceHubPulse 4s ease-in-out infinite;
        }
        @keyframes triforceHubPulse {
            0%, 100% { box-shadow: 0 0 16px rgba(232,75,42,0.05); }
            50% { box-shadow: 0 0 32px rgba(232,75,42,0.12), 0 0 60px rgba(219,160,40,0.04); }
        }

        .triforce-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
        .triforce-card {
            background: var(--bg); border: 1px solid var(--border);
            border-radius: var(--radius); padding: 28px;
            transition: all 0.5s var(--ease); position: relative; overflow: hidden;
        }
        .triforce-card::after {
            content: ''; position: absolute; inset: 0;
            background: var(--gradient); opacity: 0;
            transition: opacity 0.5s var(--ease);
        }
        .triforce-card:hover {
            transform: translateY(-6px); border-color: rgba(232,75,42,0.2);
            box-shadow: 0 16px 40px rgba(0,0,0,0.06);
        }
        .triforce-card:hover::after { opacity: 0.03; }
        .triforce-card > * { position: relative; z-index: 1; }

        .triforce-card-link {
            color: inherit; text-decoration: none;
            transition: color 0.3s ease;
        }
        .triforce-card-link:hover { color: var(--primary); }

        /* ============================================================
           TRI-FORCE CARDS — three radically different visual languages
           ODIN  = floating window deck (depth + perspective)
           SAGA  = torn notebook page (rings + ruling + rubber stamp)
           THOR  = orbital broadcast (rings + satellites)
           ============================================================ */

        .tri-card {
            position: relative;
            padding: 0;
            overflow: hidden;
            min-height: 460px;
            display: flex; flex-direction: column;
        }
        .tri-wordmark {
            position: absolute;
            top: -22px; right: -8px;
            font-family: var(--font-d);
            font-size: 8.5rem; font-weight: 900;
            letter-spacing: -0.06em; line-height: 1;
            color: rgba(232, 75, 42, 0.07);
            pointer-events: none; user-select: none;
            z-index: 0;
            transition: color 0.6s var(--ease);
        }
        .tri-card:hover .tri-wordmark {
            color: rgba(232, 75, 42, 0.14);
        }

        .tri-stage {
            position: relative;
            flex: 1; min-height: 260px;
            margin: 28px 28px 0;
        }
        .tri-foot { padding: 22px 28px 28px; position: relative; z-index: 2; }
        .tri-name {
            font-family: var(--font-d); font-size: 1.35rem; font-weight: 900;
            letter-spacing: -0.025em; margin: 0 0 6px;
            color: var(--text);
        }
        .tri-name-tag {
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.58rem; font-weight: 700;
            background: rgba(232, 75, 42, 0.08); color: var(--primary);
            padding: 3px 8px; border-radius: 4px;
            text-transform: uppercase; letter-spacing: 0.08em;
            vertical-align: middle; margin-left: 8px;
        }
        .tri-line {
            font-size: 0.92rem; color: var(--text-2);
            line-height: 1.45; margin: 0; font-weight: 500;
        }

        /* =========== ODIN — floating window deck =========== */
        .tri-stage-odin { perspective: 1200px; min-height: 280px; }
        .tri-win {
            position: absolute;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
            box-shadow:
                0 1px 0 rgba(255,255,255,0.5) inset,
                0 24px 50px -20px rgba(0,0,0,0.25),
                0 12px 28px -16px rgba(232, 75, 42, 0.15);
            transition: transform 0.6s var(--ease);
            transform-origin: center center;
        }
        /* Forged rail, same treatment as the hero frames */
        .tri-win-bar {
            display: flex; align-items: center; gap: 5px;
            padding: 7px 10px;
            background: linear-gradient(180deg, #fbf7f1 0%, #f3ede3 100%);
            border-bottom: 1px solid rgba(219, 160, 40, 0.35);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }
        .tri-win-bar::before {
            content: 'ᛟ';
            font-size: 0.58rem; line-height: 1;
            color: rgba(232, 75, 42, 0.55);
            margin-right: 3px;
        }
        .tri-win-bar > span:nth-child(1),
        .tri-win-bar > span:nth-child(2),
        .tri-win-bar > span:nth-child(3) {
            width: 4.5px; height: 4.5px; border-radius: 1px;
            background: linear-gradient(135deg, #E84B2A, #DBA028);
            opacity: 0.55;
            transform: rotate(45deg);
        }
        .tri-win-title {
            margin-left: 6px;
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.62rem; font-weight: 700;
            color: var(--text-3); letter-spacing: 0.04em;
        }
        .tri-win-body {
            padding: 10px;
            display: flex; flex-direction: column; gap: 4px;
        }
        .tri-win-1 {
            top: 165px; left: 0;
            width: 56%;
            transform: rotate(-4deg) translateZ(0);
            z-index: 3;
        }
        .tri-win-2 {
            top: 60px; left: 22%;
            width: 70%;
            transform: rotate(2deg) translateZ(0);
            z-index: 2;
        }
        .tri-win-3 {
            top: 0; right: 0;
            width: 48%;
            transform: rotate(6deg) translateZ(0);
            z-index: 1;
            opacity: 0.92;
        }
        .tri-card:hover .tri-win-1 { transform: rotate(-3deg) translate(-4px, -4px); }
        .tri-card:hover .tri-win-2 { transform: rotate(1deg) translate(0, -4px); }
        .tri-card:hover .tri-win-3 { transform: rotate(5deg) translate(4px, -4px); }
        .tri-chart-svg { width: 100%; height: 80px; display: block; }
        .tri-win-dom { gap: 3px; }
        .tri-dom-row {
            display: grid; grid-template-columns: 1fr 50px 1fr;
            gap: 4px; align-items: center;
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.62rem; font-weight: 700;
            color: var(--text-3);
        }
        .tri-dom-row.tri-dom-mid .tri-dom-px {
            color: var(--primary);
            background: rgba(232, 75, 42, 0.08);
            border-radius: 3px;
        }
        .tri-dom-px { text-align: center; }
        .tri-dom-bid { display: block; height: 4px; background: rgba(38,166,154,0.45); border-radius: 2px; justify-self: end; }
        .tri-dom-ask { display: block; height: 4px; background: rgba(239,83,80,0.45); border-radius: 2px; justify-self: start; }
        .tri-win-order {
            flex-direction: row; gap: 6px;
        }
        .tri-ord-buy, .tri-ord-sell {
            flex: 1; padding: 7px 0;
            text-align: center; color: #fff;
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.7rem; font-weight: 800;
            letter-spacing: 0.06em; border-radius: 5px;
        }
        .tri-ord-buy  { background: linear-gradient(180deg, #26a69a, #1f857c); }
        .tri-ord-sell { background: linear-gradient(180deg, #ef5350, #c23a37); }
        .tri-pulse {
            position: absolute;
            top: 12px; left: 14px;
            width: 10px; height: 10px; border-radius: 50%;
            background: #10b981;
            box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55);
            animation: triPulse 2s ease-out infinite;
            z-index: 5;
        }
        @keyframes triPulse {
            0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
            70%  { box-shadow: 0 0 0 14px rgba(16, 185, 129, 0); }
            100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }

        /* =========== SAGA — torn notebook page =========== */
        .tri-stage-saga { display: flex; align-items: stretch; }
        .tri-paper {
            position: relative;
            flex: 1;
            background:
                linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65)),
                repeating-linear-gradient(
                    transparent 0,
                    transparent 23px,
                    rgba(60, 90, 200, 0.18) 23px,
                    rgba(60, 90, 200, 0.18) 24px
                ),
                #fdfbf5;
            border-radius: 6px;
            padding: 18px 18px 18px 38px;
            transform: rotate(-1.5deg);
            box-shadow:
                0 1px 0 rgba(255,255,255,0.8) inset,
                0 18px 40px -20px rgba(0,0,0,0.18),
                0 8px 16px -10px rgba(0,0,0,0.10);
            transition: transform 0.6s var(--ease);
            overflow: hidden;
        }
        .tri-card:hover .tri-paper { transform: rotate(-0.5deg) translateY(-2px); }
        .tri-paper::before {
            /* Torn top edge */
            content: '';
            position: absolute; top: -1px; left: 0; right: 0; height: 8px;
            background: var(--bg-off);
            clip-path: polygon(0 0, 4% 100%, 9% 30%, 14% 90%, 20% 20%, 26% 80%, 32% 40%, 38% 90%, 44% 30%, 50% 80%, 56% 20%, 62% 90%, 68% 40%, 74% 80%, 80% 30%, 86% 90%, 92% 20%, 96% 80%, 100% 0);
        }
        .tri-paper::after {
            /* Red margin line */
            content: '';
            position: absolute; top: 8px; bottom: 0; left: 28px;
            width: 1px; background: rgba(239, 83, 80, 0.55);
        }
        .tri-paper-rings {
            position: absolute; top: 12px; left: 14px;
            display: flex; flex-direction: column; gap: 26px;
        }
        .tri-paper-rings span {
            display: block; width: 8px; height: 8px;
            border-radius: 50%;
            background: #fff;
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
        }
        .tri-paper-content { position: relative; }
        .tri-paper-meta {
            display: flex; flex-direction: column;
            margin-bottom: 14px;
        }
        .tri-paper-date {
            font-family: 'Georgia', 'Times New Roman', serif;
            font-style: italic; font-size: 0.95rem; font-weight: 700;
            color: #2a3142;
        }
        .tri-paper-sess {
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.58rem; font-weight: 700;
            color: rgba(42, 49, 66, 0.5);
            letter-spacing: 0.14em; margin-top: 2px;
        }
        .tri-stamp {
            position: absolute;
            top: -8px; right: 4px;
            display: inline-flex; align-items: center; justify-content: center;
            width: 78px; height: 78px;
            font-family: var(--font-d);
            font-size: 2.6rem; font-weight: 900;
            letter-spacing: -0.05em; line-height: 1;
            color: rgba(206, 50, 30, 0.85);
            border: 4px solid rgba(206, 50, 30, 0.75);
            border-radius: 50%;
            transform: rotate(-14deg);
            background: radial-gradient(circle at 35% 35%, transparent 0%, transparent 35%, rgba(206, 50, 30, 0.04) 50%);
            box-shadow: inset 0 0 0 1px rgba(206, 50, 30, 0.15);
            text-shadow: 1px 1px 0 rgba(255,255,255,0.3);
            opacity: 0.92;
        }
        .tri-stamp::before, .tri-stamp::after {
            content: ''; position: absolute;
            background: rgba(206, 50, 30, 0.85);
        }
        .tri-stamp::before {
            top: 50%; left: -8px; width: 6px; height: 1px;
        }
        .tri-stamp::after {
            top: 50%; right: -8px; width: 6px; height: 1px;
        }
        .tri-paper-quote {
            font-family: 'Georgia', 'Times New Roman', serif;
            font-style: italic;
            font-size: 1.02rem; font-weight: 500;
            color: #2a3142; line-height: 1.55;
            margin: 0 0 18px;
            max-width: 80%;
        }
        .tri-quote-mark, .tri-quote-mark-end {
            color: rgba(206, 50, 30, 0.6);
            font-size: 1.4rem; font-weight: 700;
            line-height: 0;
        }
        .tri-paper-sign svg { width: 100%; max-width: 140px; height: 22px; }

        /* =========== THOR — orbital broadcast =========== */
        .tri-stage-thor {
            display: flex; align-items: center; justify-content: center;
            min-height: 280px;
        }
        .tri-orbit {
            position: relative;
            width: 100%; max-width: 280px;
            aspect-ratio: 1;
            margin: 0 auto;
        }
        .tri-ring {
            position: absolute; inset: 0;
            border: 1px dashed rgba(232, 75, 42, 0.25);
            border-radius: 50%;
            animation: triSpin 28s linear infinite;
        }
        .tri-ring-2 {
            inset: 14%;
            border-color: rgba(219, 160, 40, 0.30);
            animation-duration: 18s;
            animation-direction: reverse;
        }
        .tri-ring-3 {
            inset: 30%;
            border-color: rgba(232, 75, 42, 0.20);
            animation-duration: 12s;
        }
        @keyframes triSpin { to { transform: rotate(360deg); } }
        .tri-core {
            position: absolute;
            top: 50%; left: 50%;
            width: 64px; height: 64px;
            margin-top: -32px; margin-left: -32px;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            box-shadow:
                0 0 0 6px rgba(232, 75, 42, 0.04),
                0 0 0 12px rgba(232, 75, 42, 0.02),
                0 16px 32px -10px rgba(232, 75, 42, 0.30);
            animation: triCorePulse 3s ease-in-out infinite;
            z-index: 5;
        }
        @keyframes triCorePulse {
            0%, 100% {
                box-shadow:
                    0 0 0 6px rgba(232, 75, 42, 0.04),
                    0 0 0 12px rgba(232, 75, 42, 0.02),
                    0 16px 32px -10px rgba(232, 75, 42, 0.30);
            }
            50% {
                box-shadow:
                    0 0 0 10px rgba(232, 75, 42, 0.06),
                    0 0 0 20px rgba(232, 75, 42, 0.03),
                    0 20px 40px -10px rgba(232, 75, 42, 0.40);
            }
        }
        .tri-core img { width: 36px; height: 36px; object-fit: contain; }
        .tri-sat {
            position: absolute;
            width: 34px; height: 34px;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 9px;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 6px 14px -6px rgba(0,0,0,0.15);
            transform: translate(-50%, -50%);
            z-index: 4;
        }
        .tri-sat img { width: 20px; height: 20px; object-fit: contain; }
        /* Outer ring (radius 50%): 6 satellites every 60° */
        .tri-sat-1 { top:   0%; left: 50%;   }   /*  90° — top */
        .tri-sat-2 { top:  25%; left: 93.3%; }   /*  30° — upper right */
        .tri-sat-3 { top:  75%; left: 93.3%; }   /* -30° — lower right */
        .tri-sat-4 { top: 100%; left: 50%;   }   /* -90° — bottom */
        .tri-sat-5 { top:  75%; left: 6.7%;  }   /* 210° — lower left */
        .tri-sat-6 { top:  25%; left: 6.7%;  }   /* 150° — upper left */
        /* Inner ring (radius ~36%): 4 satellites every 90°, interleaved */
        .tri-sat-7  { top: 24.5%; left: 75.5%; }   /*  45° */
        .tri-sat-8  { top: 24.5%; left: 24.5%; }   /* 135° */
        .tri-sat-9  { top: 75.5%; left: 24.5%; }   /* 225° */
        .tri-sat-10 { top: 75.5%; left: 75.5%; }   /* 315° */

        /* responsive collapse */
        @media (max-width: 880px) {
            .triforce-cards { grid-template-columns: 1fr; }
            .tri-card { min-height: 420px; }
            .tri-wordmark { font-size: 11rem; }
        }


        @media (max-width: 900px) {
            .triforce-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
            .triforce-visual { max-width: 340px; height: 260px; }
        }
        @media (max-width: 640px) {
            .triforce-section { padding: 100px 0; }
            .triforce-visual { max-width: 280px; height: 220px; }
            .triforce-node img { width: 40px; height: 40px; border-radius: 12px; }
            .triforce-node-ring { width: 56px; height: 56px; }
            .triforce-node-label { font-size: 0.65rem; }
        }

        /* ======= DRAUPNIR RING (CTA decoration) ======= */
        .draupnir-ring {
            position: absolute; pointer-events: none;
        }
        .draupnir-ring svg {
            width: 100%; height: 100%;
            animation: ringRotate 30s linear infinite;
        }
        .draupnir-ring.left { top: 50%; left: -40px; width: 300px; height: 300px; transform: translateY(-50%); opacity: 0.18; }
        .draupnir-ring.right { top: 50%; right: -40px; width: 360px; height: 360px; transform: translateY(-50%); opacity: 0.14; }
        @keyframes ringRotate { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }

        /* ======= CHARTS ======= */
        .charts-section { padding: 120px 0; background: var(--bg-off); }
        .charts-card { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 32px; }
        .charts-tabs {
            display: flex; gap: 4px; margin-bottom: 28px; padding: 4px;
            background: var(--bg-off); border-radius: 12px; width: fit-content;
        }
        .charts-tab {
            padding: 10px 22px; border: none; background: transparent;
            color: var(--text-2); font-family: var(--font-b); font-size: 0.86rem;
            font-weight: 600; border-radius: 8px; cursor: pointer; transition: all 0.4s var(--ease);
        }
        .charts-tab.active { background: var(--text); color: white; }
        .charts-tab:hover:not(.active) { color: var(--text); }
        .tab-content { display: none; }
        .tab-content.active { display: flex; flex-direction: column; gap: 16px; animation: tabIn 0.5s var(--ease); }

        /* ===== Lightbox (platform screenshots) ===== */
        img.zoomable { cursor: zoom-in; transition: filter 0.25s var(--ease); }
        img.zoomable:hover { filter: brightness(1.04) saturate(1.05); }
        .lightbox {
            position: fixed; inset: 0;
            background: rgba(10, 12, 20, 0.88);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: none;
            align-items: center; justify-content: center;
            z-index: 99999;
            padding: 40px;
            opacity: 0;
            transition: opacity 0.25s var(--ease);
        }
        .lightbox.open { display: flex; opacity: 1; animation: lbIn 0.25s var(--ease); }
        @keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
        .lightbox-img {
            max-width: 100%; max-height: 100%;
            border-radius: 8px;
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
            object-fit: contain;
            animation: lbZoom 0.35s var(--ease);
        }
        @keyframes lbZoom {
            from { transform: scale(0.92); opacity: 0; }
            to   { transform: scale(1);    opacity: 1; }
        }
        .lightbox-close,
        .lightbox-nav {
            position: fixed;
            border: 1px solid rgba(255, 255, 255, 0.20);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            border-radius: 50%;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s var(--ease);
            z-index: 1;
        }
        .lightbox-close {
            top: 22px; right: 26px;
            width: 44px; height: 44px;
            font-size: 1.1rem;
        }
        .lightbox-close:hover {
            background: rgba(232, 75, 42, 0.85);
            border-color: rgba(232, 75, 42, 1);
            transform: rotate(90deg);
        }
        .lightbox-nav {
            top: 50%; transform: translateY(-50%);
            width: 52px; height: 52px;
            font-size: 1.2rem;
        }
        .lightbox-prev { left: 26px; }
        .lightbox-next { right: 26px; }
        .lightbox-nav:hover {
            background: rgba(232, 75, 42, 0.85);
            border-color: rgba(232, 75, 42, 1);
        }
        .lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
        .lightbox-next:hover { transform: translateY(-50%) translateX(3px); }
        .lightbox-cap {
            position: fixed; bottom: 24px; left: 50%;
            transform: translateX(-50%);
            display: inline-flex; align-items: center; gap: 10px;
            color: rgba(255, 255, 255, 0.7);
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.72rem; font-weight: 600;
            letter-spacing: 0.10em; text-transform: uppercase;
            padding: 6px 14px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 999px;
            backdrop-filter: blur(4px);
            white-space: nowrap;
        }
        .lightbox-cap-sep { color: rgba(255, 255, 255, 0.30); }
        .lightbox-cap-num { color: var(--primary); font-weight: 800; }
        @media (max-width: 600px) {
            .lightbox { padding: 16px; }
            .lightbox-close { top: 14px; right: 14px; width: 36px; height: 36px; font-size: 0.95rem; }
            .lightbox-nav { width: 40px; height: 40px; font-size: 0.95rem; }
            .lightbox-prev { left: 8px; }
            .lightbox-next { right: 8px; }
            .lightbox-cap { bottom: 14px; font-size: 0.62rem; }
        }
        @keyframes tabIn { from { opacity: 0; transform: translateY(12px); } }
        .tab-content img { border-radius: 12px; border: 1px solid var(--border); }
        .mini-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
        .mini-stat { background: var(--bg-off); border: 1px solid var(--border); border-radius: 10px; padding: 12px; display: flex; align-items: center; gap: 10px; }
        .mini-stat-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
        .mini-stat-icon.green { background: rgba(22,163,74,0.08); color: #16a34a; }
        .mini-stat-icon.orange { background: rgba(232,75,42,0.08); color: var(--primary); }
        .mini-stat-icon.blue { background: rgba(219,160,40,0.08); color: var(--secondary); }
        .mini-stat-icon.purple { background: rgba(139,92,246,0.08); color: #8b5cf6; }
        .mini-stat-label { font-size: 0.65rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }
        .mini-stat-value { font-family: var(--font-m); font-size: 1rem; font-weight: 700; }
        @media (max-width: 768px) { .mini-stats { grid-template-columns: repeat(2, 1fr); } }
        .drawing-categories { display: flex; flex-direction: column; gap: 14px; }
        .drawing-cat h5 { font-family: var(--font-d); font-size: 0.72rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
        .drawing-pills { display: flex; flex-wrap: wrap; gap: 5px; }
        .drawing-pills span { padding: 5px 11px; background: var(--bg-off); border: 1px solid var(--border); border-radius: 6px; font-size: 0.74rem; font-weight: 500; transition: all 0.3s ease; }
        .drawing-pills span:hover { border-color: var(--primary); color: var(--primary); }

        /* =========================================================
           Drawing Tools gallery — actual SVG previews per tool
           ========================================================= */
        .dt-header {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-bottom: 18px;
        }
        .dt-header-stat {
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            padding: 16px 8px;
            background: linear-gradient(135deg, rgba(232, 75, 42, 0.04) 0%, rgba(219, 160, 40, 0.03) 100%);
            border: 1px solid var(--border);
            border-radius: 10px;
        }
        .dt-header-stat strong {
            font-family: var(--font-d);
            font-size: 1.5rem; font-weight: 900;
            letter-spacing: -0.03em; line-height: 1;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .dt-header-stat span {
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.6rem; font-weight: 700;
            color: var(--text-3);
            letter-spacing: 0.10em; text-transform: uppercase;
            margin-top: 4px;
        }

        .dt-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        .dt-card {
            position: relative;
            display: flex; flex-direction: column;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 14px 14px 12px;
            overflow: hidden;
            transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
        }
        .dt-card:hover {
            transform: translateY(-3px);
            border-color: rgba(232, 75, 42, 0.30);
            box-shadow: 0 14px 30px -16px rgba(232, 75, 42, 0.20);
        }
        .dt-cat {
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.55rem; font-weight: 800;
            color: var(--text-3);
            letter-spacing: 0.12em; text-transform: uppercase;
            margin-bottom: 6px;
        }
        .dt-svg {
            width: 100%;
            aspect-ratio: 22 / 13;       /* matches viewBox 220 x 130 → no distortion */
            display: block;
            background:
                linear-gradient(rgba(0,0,0,0.02), transparent),
                repeating-linear-gradient(
                    transparent 0,
                    transparent 14px,
                    rgba(0, 0, 0, 0.03) 14px,
                    rgba(0, 0, 0, 0.03) 15px
                );
            border-radius: 6px;
            border: 1px solid var(--border);
        }
        .dt-name {
            font-family: var(--font-d);
            font-size: 0.86rem; font-weight: 800;
            color: var(--text);
            letter-spacing: -0.01em;
            margin-top: 10px;
        }

        .dt-more {
            display: flex; flex-wrap: wrap; gap: 5px;
            margin-top: 18px;
            padding-top: 16px;
            border-top: 1px dashed var(--border);
        }
        .dt-more-pill {
            padding: 5px 10px;
            background: var(--bg-off);
            border: 1px solid var(--border);
            border-radius: 999px;
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.66rem; font-weight: 600;
            color: var(--text-2);
        }
        .dt-more-cta {
            background: rgba(232, 75, 42, 0.08);
            border-color: rgba(232, 75, 42, 0.25);
            color: var(--primary);
            font-weight: 800;
        }

        @media (max-width: 880px) {
            .dt-header { grid-template-columns: repeat(2, 1fr); }
            .dt-gallery { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) {
            .dt-gallery { grid-template-columns: 1fr; }
            .dt-svg { height: 140px; }
        }
        .indicator-pills { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 14px; }
        .indicator-pills span { padding: 6px 14px; background: var(--bg-off); border: 1px solid var(--border); border-radius: 6px; font-size: 0.8rem; font-weight: 500; color: var(--text-2); transition: all 0.3s ease; }
        .indicator-pills span:hover { border-color: var(--primary); color: var(--primary); }
        .alert-card { padding: 24px; background: var(--bg-off); border-radius: var(--radius); border: 1px solid var(--border); text-align: center; }

        /* Pine tab: paste-your-script → Odin bridge visual */
        .pine-bridge {
            display: flex; align-items: center; justify-content: center;
            gap: 28px; padding: 32px 24px;
            background: linear-gradient(135deg, rgba(232, 75, 42, 0.04) 0%, rgba(219, 160, 40, 0.03) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 16px;
        }
        .pine-bridge-side {
            display: flex; flex-direction: column; align-items: center; gap: 10px;
            flex-shrink: 0;
        }
        .pine-bridge-side img {
            width: 88px; height: 88px;
            object-fit: contain;
            filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.08));
            transition: transform 0.5s var(--ease);
        }
        .pine-bridge-side:hover img { transform: translateY(-3px); }
        .pine-bridge-glyph {
            width: 88px; height: 88px;
            display: flex; align-items: center; justify-content: center;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 20px;
            font-size: 2.1rem; color: var(--primary);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
            transition: transform 0.5s var(--ease);
        }
        .pine-bridge-side:hover .pine-bridge-glyph { transform: translateY(-3px); }
        @media (max-width: 640px) {
            .pine-bridge-glyph { width: 64px; height: 64px; font-size: 1.5rem; }
        }
        .pine-bridge-name {
            font-family: var(--font-d); font-size: 0.92rem; font-weight: 800;
            letter-spacing: -0.01em; color: var(--text);
        }
        .pine-bridge-flow {
            display: flex; flex-direction: column; align-items: center; gap: 6px;
            min-width: 140px; max-width: 200px; flex: 1;
        }
        .pine-bridge-pill {
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.66rem; font-weight: 800;
            color: var(--primary); letter-spacing: 0.16em;
            padding: 4px 10px;
            background: rgba(232, 75, 42, 0.10);
            border: 1px solid rgba(232, 75, 42, 0.25);
            border-radius: 999px;
        }
        .pine-bridge-flow svg {
            width: 100%; height: 14px; display: block;
        }
        .pine-bridge-sub {
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.62rem; font-weight: 700;
            color: var(--text-3); letter-spacing: 0.10em;
            text-transform: uppercase;
        }
        @media (max-width: 640px) {
            .pine-bridge { gap: 14px; padding: 22px 14px; }
            .pine-bridge-side img { width: 64px; height: 64px; }
            .pine-bridge-flow { min-width: 80px; }
        }
        .alert-card i { font-size: 2rem; color: var(--primary); margin-bottom: 10px; display: block; }
        .alert-card h4 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
        .alert-card p { color: var(--text-2); line-height: 1.65; font-size: 0.88rem; }


        /* ======= INFRA ======= */
        .infra-section { padding: 120px 0; background: var(--bg-off); }
        .infra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
        .infra-card {
            background: var(--bg); border: 1px solid var(--border);
            border-radius: var(--radius); padding: 32px; text-align: center;
            transition: all 0.5s var(--ease); position: relative; overflow: hidden;
        }
        .infra-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.05); }
        .infra-icon {
            width: 52px; height: 52px; background: var(--bg-off); border-radius: 14px;
            display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
            transition: all 0.5s var(--ease);
        }
        .infra-card:hover .infra-icon { background: rgba(232,75,42,0.06); }
        .infra-icon i { font-size: 1.1rem; color: var(--text-2); transition: color 0.4s ease; }
        .infra-card:hover .infra-icon i { color: var(--primary); }
        .infra-title { font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
        .infra-desc { font-size: 0.86rem; color: var(--text-2); line-height: 1.55; }
        @media (max-width: 1024px) { .infra-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 640px) { .infra-grid { grid-template-columns: 1fr; } }

        /* ======= GET ODIN ======= */
        .getit-section { padding: 120px 0; background: var(--bg); }
        .getit-card {
            max-width: 620px; margin: 0 auto; background: var(--bg-off);
            border: 1px solid var(--border); border-radius: 20px; padding: 48px; text-align: center;
        }
        .getit-providers { display: flex; align-items: center; justify-content: center; gap: 36px; margin-bottom: 28px; }
        .getit-providers img { height: 40px; width: auto; object-fit: contain; }
        .getit-divider { width: 1px; height: 40px; background: var(--border); }
        .getit-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 600; color: var(--primary); margin-bottom: 20px; }
        .getit-text { font-size: 1rem; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; }
        .getit-text strong { color: var(--text); }
        .getit-phoenix { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
        .getit-phoenix img { height: 32px; width: auto; }
        .getit-phoenix span { font-size: 0.82rem; color: var(--text-3); font-weight: 500; }
        .getit-cta {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 18px 40px; background: var(--text); border: none;
            border-radius: 60px; color: white; font-family: var(--font-b);
            font-size: 1rem; font-weight: 600; cursor: pointer;
            position: relative; overflow: hidden; transition: transform 0.5s var(--ease);
        }
        .getit-cta::before { content: ''; position: absolute; inset: 0; background: var(--gradient); transform: translateY(100%); transition: transform 0.5s var(--ease); }
        .getit-cta:hover { transform: scale(1.03); }
        .getit-cta:hover::before { transform: translateY(0); }
        .getit-cta span, .getit-cta i { position: relative; z-index: 1; }
        .getit-trust { margin-top: 18px; font-size: 0.8rem; color: var(--text-3); display: flex; align-items: center; gap: 6px; justify-content: center; }
        .getit-trust i { color: #16a34a; }

        /* ======= PRICING ======= */
        .pricing-section {
            padding: 140px 0 160px; background: var(--bg-off);
            position: relative; overflow: hidden;
        }
        .pricing-section::before {
            content: ''; position: absolute; inset: 0;
            background:
                radial-gradient(ellipse 60% 40% at 50% 10%, rgba(232,75,42,0.06) 0%, transparent 70%),
                radial-gradient(ellipse 40% 30% at 85% 60%, rgba(219,160,40,0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        .pricing-section .container { position: relative; z-index: 1; }

        /* Dramatic anchor math line */
        .pricing-anchor-hero {
            text-align: center; margin: 18px auto 56px; max-width: 820px;
            padding: 20px 28px; display: inline-flex; align-items: center; gap: 14px;
            background: var(--bg); border: 1px solid var(--border); border-radius: 999px;
            box-shadow: 0 6px 24px rgba(17, 24, 39, 0.04);
            font-family: var(--font-b);
            position: relative;
        }
        .pricing-anchor-wrap { text-align: center; margin: 0 0 56px; }
        .pricing-anchor-hero .pa-strike {
            position: relative; color: var(--text-3); font-size: 1rem;
        }
        /* The strike is a hand-drawn SVG line injected by JS; it draws itself
           on arrival instead of sitting pre-rotated. */
        .pa-strike-svg {
            position: absolute; left: -4px; right: -4px; top: 0; bottom: 0;
            width: calc(100% + 8px); height: 100%;
            overflow: visible; pointer-events: none;
        }
        .pricing-anchor-hero .pa-arrow { color: var(--text-3); font-size: 0.9rem; }
        .pricing-anchor-hero .pa-bundle {
            font-family: var(--font-d); font-weight: 800; font-size: 1.35rem;
            background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text; color: transparent;
        }
        .pricing-anchor-hero .pa-save {
            font-size: 0.82rem; color: #16a34a; font-weight: 700;
            background: rgba(22, 163, 74, 0.08); padding: 4px 10px; border-radius: 999px;
        }

        /* Reassurance strip above the grid */
        .pricing-promises {
            display: flex; flex-wrap: wrap; gap: 8px 28px;
            justify-content: center; align-items: center;
            margin: 0 auto 36px; max-width: 920px;
            padding: 14px 22px;
            border: 1px solid var(--border); border-radius: 999px;
            background: rgba(255,255,255,0.55);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .pricing-promises .pp-item {
            display: inline-flex; align-items: center; gap: 8px;
            font-family: var(--font-b); font-size: 0.84rem; font-weight: 600;
            color: var(--text-2); letter-spacing: -0.01em;
            white-space: nowrap;
        }
        .pricing-promises .pp-item i {
            display: inline-flex; align-items: center; justify-content: center;
            width: 16px; height: 16px; border-radius: 50%;
            background: rgba(16,185,129,0.12); color: #10b981;
            font-size: 0.6rem;
        }
        @media (max-width: 720px) {
            .pricing-promises { border-radius: 18px; gap: 8px 18px; padding: 12px 16px; }
            .pricing-promises .pp-item { font-size: 0.78rem; }
        }

        /* Per-card Monthly/Yearly mini-toggle, sits inside each card just above the price. */
        .pc-card-toggle {
            display: inline-flex; align-items: center; gap: 2px;
            padding: 3px; margin: 0 0 12px;
            border: 1px solid var(--border); border-radius: 999px;
            background: var(--bg-off);
            width: fit-content;
        }
        .pc-card-toggle .pct-btn {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 6px 12px; border-radius: 999px;
            font-family: var(--font-b); font-size: 0.74rem; font-weight: 700;
            color: var(--text-2); background: transparent; border: none;
            cursor: pointer; transition: 160ms var(--ease);
            letter-spacing: -0.005em;
            white-space: nowrap;
        }
        .pc-card-toggle .pct-btn:hover { color: var(--text); }
        .pc-card-toggle .pct-btn.active {
            background: var(--text); color: var(--bg);
            box-shadow: 0 2px 8px rgba(0,0,0,0.12);
        }
        .pc-card-toggle .pct-save {
            display: inline-block; padding: 1px 6px; border-radius: 999px;
            font-size: 0.6rem; font-weight: 800; letter-spacing: 0.04em;
            background: rgba(16,185,129,0.16); color: #10b981;
        }
        .pc-card-toggle .pct-btn.active .pct-save {
            background: rgba(255,255,255,0.18); color: #5eead4;
        }

        /* Grid -- featured card gets visually larger */
        .pricing-grid {
            display: grid; grid-template-columns: 1fr 1fr 1fr;
            gap: 20px; max-width: 1160px; margin: 0 auto;
            align-items: stretch;
        }
        .pricing-card {
            background: var(--bg); border: 1px solid var(--border); border-radius: 22px;
            padding: 36px 30px 32px; display: flex; flex-direction: column;
            position: relative; overflow: hidden;
            transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
        }
        .pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
            border-color: rgba(17, 24, 39, 0.18);
        }

        /* Featured = Phoenix Bundle, the hero */
        .pricing-card.featured {
            border: none;
            background: var(--bg);
            box-shadow: 0 30px 70px rgba(232, 75, 42, 0.18);
            transform: translateY(-8px);
        }
        .pricing-card.featured::before {
            content: ''; position: absolute; inset: 0; padding: 2px; border-radius: 22px;
            background: var(--gradient);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor; mask-composite: exclude;
            pointer-events: none;
        }
        .pricing-card.featured:hover {
            transform: translateY(-14px);
            box-shadow: 0 38px 90px rgba(232, 75, 42, 0.25);
        }
        /* Flat, confident tab; the rotated ribbon read like a discount store */
        .pricing-ribbon {
            position: absolute; top: 14px; right: 14px;
            background: var(--gradient); color: white;
            font-family: var(--font-d); font-weight: 800;
            font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase;
            padding: 6px 14px; border-radius: 999px;
            box-shadow: 0 6px 18px rgba(232, 75, 42, 0.30);
        }

        /* Header block */
        .pc-header {
            display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
        }
        .pc-badge {
            height: 48px; border-radius: 12px; flex-shrink: 0;
            display: inline-flex; align-items: center; justify-content: center;
            padding: 0 10px; gap: 0;
        }
        /* Composite-logo stack: each logo sits on its own white "coin" with a
           ring-like outline so it reads as a distinct logo even when overlapped
           with a neighbour of similar hue. Overlap reduced from -10px to -5px
           so each logo is ~80% visible (was ~60%, too cramped). */
        .pc-badge img {
            /* Rounded square, not a circle: circles geometrically crop any
               square logo's corners, so the coins are squircles instead. */
            height: 34px; width: 34px; object-fit: contain; display: block;
            background: #fff;
            border-radius: 9px;
            padding: 4px;
            box-shadow: 0 0 0 2px var(--bg), 0 2px 6px rgba(17, 24, 39, 0.08);
            position: relative;
        }
        .pc-badge img + img { margin-left: -5px; }
        .pc-badge img:nth-child(2) { z-index: 2; }
        .pc-badge img:nth-child(3) { z-index: 3; }
        .pc-badge.free   { width: 52px; background: var(--bg-off); }
        .pc-badge.pro    {
            width: 88px; padding: 0 8px;
            background: rgba(232, 75, 42, 0.08);
            box-shadow: inset 0 0 0 1px rgba(232, 75, 42, 0.16);
        }
        .pc-badge.bundle {
            width: 120px; padding: 0 8px;
            background: var(--gradient);
            box-shadow: 0 8px 22px rgba(232, 75, 42, 0.35);
        }
        /* On the Bundle's gradient background, ring the logos in white (not bg)
           so they pop against the orange. */
        .pc-badge.bundle img {
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 2px 6px rgba(17, 24, 39, 0.15);
        }
        .pc-tier-name {
            font-family: var(--font-d); font-size: 1.35rem; font-weight: 800;
            letter-spacing: -0.01em;
        }
        .pc-tier-name .highlight {
            background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text; color: transparent;
        }
        .pc-tagline {
            font-size: 0.9rem; color: var(--text-2); line-height: 1.55;
            margin-bottom: 24px; min-height: 44px;
        }

        /* Price block */
        .pc-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 2px; }
        .pc-price-amount {
            font-family: var(--font-d); font-size: 3rem; font-weight: 900;
            line-height: 1; letter-spacing: -0.03em;
        }
        .pc-price-unit { font-size: 0.9rem; color: var(--text-3); font-weight: 500; }
        .pc-price-yearly { font-size: 0.78rem; color: var(--text-3); margin-bottom: 24px; min-height: 18px; }

        /* Feature categories */
        .pc-section-label {
            font-family: var(--font-d); font-size: 0.68rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.12em;
            color: var(--text-3); margin: 18px 0 8px;
            padding-top: 14px; border-top: 1px dashed var(--border);
        }
        .pc-section-label:first-of-type { padding-top: 0; border-top: none; margin-top: 0; }
        .pc-section-label .pc-sec-logo {
            width: 14px; height: 14px; object-fit: contain;
            vertical-align: middle; margin-right: 7px;
            display: inline-block;
            transform: translateY(-1px);
        }
        .pc-features li .pc-feat-logo {
            width: 14px; height: 14px; object-fit: contain;
            display: inline-block; vertical-align: middle;
            margin-right: 5px; transform: translateY(-1px);
            flex-shrink: 0;
        }
        .pc-features li.muted .pc-feat-logo,
        .pc-features li.muted .pc-sec-logo { opacity: 0.4; filter: grayscale(0.6); }
        .pc-features li .pc-feat-body { flex: 1; }
        .pc-features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
        .pc-features li {
            display: flex; align-items: flex-start; gap: 10px;
            padding: 6px 0; font-size: 0.88rem; color: var(--text); line-height: 1.5;
        }
        .pc-features li .pc-check {
            display: inline-flex; align-items: center; justify-content: center;
            width: 18px; height: 18px; border-radius: 50%;
            background: rgba(232, 75, 42, 0.1); color: var(--primary);
            font-size: 0.62rem; flex-shrink: 0; margin-top: 2px;
        }
        .pricing-card.featured .pc-features li .pc-check {
            background: var(--gradient); color: white;
        }
        .pc-features li.muted { color: var(--text-3); }
        .pc-features li.muted .pc-check { background: rgba(17,24,39,0.06); color: var(--text-3); }
        .pc-features li strong { font-weight: 700; color: var(--text); }
        .pricing-card.featured .pc-features li strong {
            background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text; color: transparent;
        }
        .pc-features li .pc-hot {
            display: inline-block; margin-left: 6px; padding: 1px 7px;
            background: rgba(232, 75, 42, 0.1); color: var(--primary);
            border-radius: 999px; font-size: 0.64rem; font-weight: 700;
            letter-spacing: 0.06em; text-transform: uppercase;
        }

        /* Provider strip inside Bundle card */
        .pc-providers {
            display: flex; align-items: center; justify-content: center; gap: 14px;
            padding: 12px 0; margin: 0 0 20px;
            border: 1px solid var(--border); border-radius: 12px;
            background: var(--bg-off);
        }
        .pc-providers img { height: 18px; width: auto; object-fit: contain; opacity: 0.9; }

        /* CTA */
        .pc-cta {
            display: inline-flex; align-items: center; justify-content: center; gap: 10px;
            padding: 16px 20px; border-radius: 14px;
            font-family: var(--font-b); font-weight: 700; font-size: 0.95rem;
            cursor: pointer; border: 1.5px solid var(--border); background: var(--bg);
            color: var(--text); text-decoration: none;
            transition: all 0.4s var(--ease); position: relative; overflow: hidden;
        }
        .pc-cta:hover { background: var(--text); color: white; border-color: var(--text); transform: translateY(-2px); }
        .pc-cta.primary {
            background: var(--text); color: white; border-color: var(--text);
        }
        .pc-cta.primary::before {
            content: ''; position: absolute; inset: 0; background: var(--gradient);
            transform: translateY(100%); transition: transform 0.5s var(--ease);
        }
        .pc-cta.primary span, .pc-cta.primary i { position: relative; z-index: 1; }
        .pc-cta.primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(232, 75, 42, 0.35); }
        .pc-cta.primary:hover::before { transform: translateY(0); }
        .pc-cta-trial { font-size: 0.74rem; color: var(--text-3); margin-top: 10px; text-align: center; }

        /* Grandfather notice strip */
        .pricing-notes {
            display: flex; justify-content: center;
            gap: 14px; max-width: 720px; margin: 48px auto 0;
        }
        .pricing-notes .pricing-note-card { flex: 1; }
        .pricing-note-card {
            display: flex; gap: 14px; padding: 18px 22px;
            background: var(--bg); border: 1px solid var(--border); border-radius: 14px;
            align-items: flex-start;
        }
        .pricing-note-icon {
            width: 36px; height: 36px; border-radius: 10px;
            background: var(--bg-off); display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .pricing-note-icon img { height: 18px; width: auto; object-fit: contain; }
        .pricing-note-text { font-size: 0.84rem; line-height: 1.6; color: var(--text-2); }
        .pricing-note-text strong { color: var(--text); font-weight: 700; display: block; margin-bottom: 2px; font-family: var(--font-d); font-size: 0.92rem; }

        @media (max-width: 1024px) {
            .pricing-grid { grid-template-columns: 1fr; max-width: 520px; }
            .pricing-card.featured { transform: translateY(0); }
            .pricing-card.featured:hover { transform: translateY(-6px); }
            .pricing-notes { grid-template-columns: 1fr; }
            .pricing-anchor-hero { flex-wrap: wrap; justify-content: center; }
        }

        /* ======= TESTIMONIALS ======= */
        .testimonials-section { padding: 120px 0; background: var(--bg-off); }
        .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
        .testimonial-card {
            background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
            transition: all 0.5s var(--ease); position: relative;
        }
        .testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.04); }
        .testimonial-quote { position: absolute; top: 10px; right: 18px; font-size: 3rem; font-family: Georgia; color: var(--border); line-height: 1; }
        .testimonial-stars { color: #fbbf24; font-size: 0.85rem; margin-bottom: 12px; }
        .testimonial-text { font-size: 0.92rem; color: var(--text-2); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
        .testimonial-author { display: flex; align-items: center; gap: 12px; }
        .testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-off); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; color: var(--primary); }
        .testimonial-info h4 { font-size: 0.9rem; font-weight: 600; }
        .testimonial-info p { font-size: 0.78rem; color: var(--text-3); }
        @media (max-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

        /* ======= FAQ ======= */
        .faq-section { padding: 120px 0; background: var(--bg); }
        .faq-list { max-width: 760px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-question {
            display: flex; justify-content: space-between; align-items: center;
            padding: 22px 0; cursor: pointer;
            font-family: var(--font-d); font-size: 1.05rem; font-weight: 600;
        }
        .faq-question .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-off); display: flex; align-items: center; justify-content: center; transition: all 0.4s var(--ease); flex-shrink: 0; }
        .faq-question .faq-icon i { font-size: 0.7rem; color: var(--primary); transition: transform 0.4s var(--ease); }
        .faq-item.active .faq-icon { background: var(--primary); }
        .faq-item.active .faq-icon i { color: white; transform: rotate(45deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
        .faq-item.active .faq-answer { max-height: 300px; }
        .faq-answer-content { padding: 0 0 22px; font-size: 0.9rem; color: var(--text-2); line-height: 1.7; max-width: 90%; }

        /* ======= CTA ======= */
        /* Nightfall: the page ends at dusk. Warm dark gradient, an ember glow
           rising from below the fold, and a thin burning horizon at the bottom. */
        .cta-section {
            padding: 160px 0;
            background: linear-gradient(180deg, #1C1410 0%, #14100C 48%, #0E0B09 100%);
            color: white; text-align: center; position: relative; overflow: hidden;
        }
        .cta-section::before {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(ellipse at 50% 115%, rgba(232,75,42,0.26) 0%, rgba(219,160,40,0.10) 34%, transparent 62%);
        }
        .cta-section::after {
            content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(232,75,42,0.9), rgba(219,160,40,0.9), transparent);
            box-shadow: 0 0 40px 6px rgba(232, 75, 42, 0.30);
        }
        .cta-title .cta-line { display: block; overflow: hidden; }
        .draupnir-drop {
            position: absolute; top: 0; left: 0;
            width: 22px; height: 22px;
            border: 2px solid #DBA028;
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(219, 160, 40, 0.6), inset 0 0 6px rgba(219, 160, 40, 0.4);
            pointer-events: none; z-index: 2;
        }
        .cta-drop-glow {
            position: absolute; top: 0; left: 0;
            width: 140px; height: 140px; margin: -70px 0 0 -70px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(219, 160, 40, 0.35) 0%, transparent 70%);
            opacity: 0; pointer-events: none; z-index: 0;
        }
        .cta-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
        .cta-title { font-family: var(--font-d); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 18px; line-height: 1.1; letter-spacing: -0.03em; }
        .cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; line-height: 1.7; }
        .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
        .btn-cta-primary {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 18px 40px; background: var(--gradient); border: none;
            border-radius: 60px; color: white; font-family: var(--font-b);
            font-size: 1rem; font-weight: 600; cursor: pointer;
            transition: all 0.5s var(--ease);
        }
        .btn-cta-primary:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(232,75,42,0.3); }
        .btn-cta-secondary {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 18px 40px; background: transparent; border: 1px solid rgba(255,255,255,0.2);
            border-radius: 60px; color: white; font-family: var(--font-b);
            font-size: 1rem; font-weight: 600; cursor: pointer;
            transition: all 0.5s var(--ease);
        }
        .btn-cta-secondary:hover { border-color: rgba(255,255,255,0.5); transform: scale(1.03); }
        .trust-badges { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
        .trust-badge { display: flex; align-items: center; gap: 7px; font-size: 0.86rem; color: rgba(255,255,255,0.5); }
        .trust-badge i { color: #22c55e; }

        /* ======= FOOTER ======= */
        /* The last page of the magazine: a burning horizon line, then the name
           itself, oversized and asleep until the pointer ignites its letters. */
        .footer { background: #0E0B09; color: rgba(255,255,255,0.4); padding: 72px 0 36px; position: relative; overflow: hidden; }
        .footer-wordmark {
            font-family: var(--font-d);
            font-size: clamp(4.6rem, 13vw, 11rem);
            font-weight: 900; letter-spacing: 0.02em; line-height: 0.95;
            text-align: center; margin-bottom: 48px;
            user-select: none;
        }
        .footer-wordmark span {
            display: inline-block;
            color: rgba(255, 255, 255, 0.09);
            transition: color 0.5s var(--ease), transform 0.5s var(--ease);
        }
        .footer-wordmark span:hover { color: #DBA028; transform: translateY(-6px); }
        .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
        .footer-logo { display: flex; align-items: center; gap: 8px; }
        .footer-phx {
            font-family: var(--font-m); font-size: 0.74rem; font-weight: 600;
            letter-spacing: 0.14em; text-transform: uppercase;
            color: rgba(255,255,255,0.68);
            transition: color 0.3s ease;
        }
        .footer-phx:hover { color: var(--secondary); }
        .footer-links { display: flex; gap: 20px; }
        .footer-links a { font-size: 0.86rem; transition: color 0.3s ease; }
        .footer-links a:hover { color: var(--primary); }
        .footer-copy { font-size: 0.78rem; }
        .footer-marks {
            width: 100%; margin-top: 14px; padding-top: 14px;
            border-top: 1px solid rgba(255,255,255,0.06);
            font-size: 0.68rem; line-height: 1.6; color: rgba(255,255,255,0.28);
        }
        @media (max-width: 768px) { .footer-inner { flex-direction: column; text-align: center; } }

        /* ======= RESPONSIVE ======= */
        @media (max-width: 1024px) {
            .hero-ctas { flex-direction: column; align-items: center; }
            .hero-ctas .btn-primary, .hero-ctas .btn-secondary, .hero-ctas .btn-demo { width: 100%; max-width: 260px; justify-content: center; }
        }
        @media (max-width: 768px) {
            .container { padding: 0 16px; }
            .hero { padding: 110px 0 60px; min-height: auto; }
            .charts-tabs { flex-wrap: wrap; }
            .charts-tab { padding: 9px 14px; font-size: 0.78rem; }
        }

        /* =================================================================
           MOBILE OVERHAUL — added 2026-04-26
           All rules below are inside @media queries or hover/pointer guards,
           so desktop rendering is unchanged.
           ================================================================= */

        /* --- 2a. Foundational mobile UX (universal) --- */
        html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
        body { -webkit-tap-highlight-color: transparent; }
        a, button, [role="button"], .nav-link, .mob-link, .feature-pill,
        .faq-question, .charts-tab, .mobile-lang-item, .language-dropdown li,
        .btn-primary, .btn-secondary, .btn-demo, .pc-cta, .getit-cta,
        .btn-cta-primary, .btn-cta-secondary, .nav-cta, .mobile-menu-btn,
        .mobile-close { touch-action: manipulation; }
        input, select, textarea { font-size: 16px; }

        /* --- 2b. Reduced motion --- */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
            .marquee-track, .eye-glow, .eye-rune, .preloader-logo { animation: none !important; }
        }

        /* --- 2g. Safe-area for notched devices --- */
        .nav { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
        .cta-buttons, .hero-ctas { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }

        /* --- 2c. Tablet & phone (<=1024px) --- */
        @media (max-width: 1024px) {
            .pricing-card.featured:hover, .pricing-card:hover { transform: none !important; }
            .pricing-card.featured { order: -1; }
            .pricing-section, .testimonials-section { padding: 80px 0; }
            .triforce-section, .infra-section, .charts-section { padding: 80px 0; }
        }

        /* --- 2d. Phones / small tablets (<=768px) --- */
        @media (max-width: 768px) {
            .hero { min-height: 100dvh; min-height: 100svh; padding: 96px 0 56px; }
            .hero-content { padding: 0 16px; }
            .hero-mythology { font-size: 0.95rem; padding: 0 8px; }

            .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 12px; max-width: 360px; margin: 28px auto 0; }
            .hero-stat { width: auto !important; padding: 12px; }
            .hero-stat-num { font-size: 1.6rem !important; }
            .hero-stat-label { font-size: 0.7rem !important; }

            .hero-providers { gap: 24px; }
            .hero-providers img { height: 32px; }

            .layouts-track-wrapper { height: auto !important; }
            .layouts-track { display: flex !important; flex-direction: column !important; gap: 24px !important; width: 100% !important; transform: none !important; padding: 0 !important; }
            .layout-card { width: 100% !important; max-width: 100% !important; flex: none !important; }
            .layout-card-inner { padding: 18px; }

            .bento-grid { grid-template-columns: 1fr !important; gap: 14px; }
            .bento-card.large, .bento-card.tall { grid-column: span 1 !important; grid-row: span 1 !important; }
            .bento-card { padding: 22px; }
            .bento-title { font-size: clamp(1rem, 4vw, 1.15rem); }
            .bento-desc { font-size: clamp(0.82rem, 3vw, 0.92rem); }


            .mini-stats { grid-template-columns: 1fr 1fr !important; gap: 10px; }
            .charts-tabs { gap: 6px; }
            .tab-content { padding: 16px; }

            .triforce-section { padding: 60px 0; }
            .triforce-visual { min-height: 280px; }
            .triforce-cards { grid-template-columns: 1fr !important; gap: 14px; max-width: 360px; margin: 0 auto; }
            .triforce-svg .triforce-particle { display: none; }

            .infra-grid { grid-template-columns: 1fr !important; gap: 14px; }

            .pricing-section { padding: 60px 0 80px; }
            .pricing-grid { grid-template-columns: 1fr !important; gap: 16px; max-width: 380px; margin: 0 auto; }
            .pricing-card { padding: 24px 22px; }
            .pc-price-amount { font-size: clamp(2.2rem, 9vw, 2.8rem) !important; }
            .pc-name { font-size: 1.1rem; }
            .pricing-notes { grid-template-columns: 1fr !important; gap: 12px; }
            .pricing-note { padding: 16px; }

            .testimonials-grid { grid-template-columns: 1fr !important; gap: 14px; }
            .testimonial-card { padding: 22px; }
            .testimonial-text { font-size: clamp(0.88rem, 3vw, 0.95rem); }

            .getit-providers { gap: 16px; flex-wrap: wrap; justify-content: center; }
            .getit-providers img { height: 28px; }

            .cta-section { padding: 80px 0; }
            .cta-buttons { flex-direction: column; align-items: stretch; max-width: 280px; margin: 0 auto 32px; }
            .btn-cta-primary, .btn-cta-secondary { padding: 16px 28px; width: 100%; justify-content: center; }
            .draupnir-ring { display: none !important; }
            .trust-badges { gap: 14px; }

            .marquee-track { gap: 32px; }
            .marquee-item { font-size: 0.9rem; }

            .eye-runes { inset: -20px; }
            .eye-rune { font-size: 0.6rem; }

            .faq-list { padding: 0; }
            .faq-question { padding: 16px 14px; font-size: 0.95rem; }
            .faq-item.active .faq-answer { max-height: 600px; }
            .faq-answer { padding: 0 14px 16px; font-size: 0.88rem; }

            .mobile-overlay { min-height: 100dvh; min-height: 100svh; padding: env(safe-area-inset-top) 16px env(safe-area-inset-bottom); }
            .mobile-overlay a.mob-link { font-size: 1.5rem; }

            .pc-cta, .getit-cta { padding: 14px 24px; font-size: 0.92rem; }
            .pc-badge img { height: 26px; width: 26px; padding: 4px; }

            .section-sub { font-size: clamp(0.92rem, 3vw, 1.05rem); padding: 0 8px; }

            .footer { padding: 28px 0 calc(28px + env(safe-area-inset-bottom)); }
            .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px 18px; }
        }

        /* --- 2e. Small phones (<=480px) --- */
        @media (max-width: 480px) {
            .container { padding: 0 14px; }
            .hero-content { padding: 0 14px; }
            .nav { padding: 14px 0; padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
            .nav.scrolled { padding: 8px 0; }
            .nav-logo span { font-size: 1.05rem; }
            .nav-logo img { height: 30px; }

            .eye-container { width: 130px; height: 130px; margin-bottom: 24px; }

            .hero-stats { grid-template-columns: 1fr; max-width: 240px; }

            .hero-ctas { gap: 10px; }
            .hero-ctas .btn-primary, .hero-ctas .btn-secondary, .hero-ctas .btn-demo { width: 100%; max-width: 100%; padding: 14px 24px; font-size: 0.95rem; }

            .mobile-lang-grid { grid-template-columns: repeat(4, 1fr); }

            .marquee-track { gap: 22px; }
            .marquee-item { font-size: 0.82rem; }

            .pricing-section, .testimonials-section, .charts-section, .triforce-section, .infra-section { padding: 56px 0; }

            .pricing-card { padding: 20px 18px; }
            .pc-features li { font-size: 0.86rem; padding: 6px 0; }

            .bento-card { padding: 18px; }

            .cta-section { padding: 56px 0; }
            .cta-sub { font-size: clamp(0.88rem, 3vw, 1rem); padding: 0 12px; }

            .mobile-overlay a.mob-link { font-size: 1.3rem; }
        }

        /* --- 2f. Touch-device fallbacks --- */
        @media (hover: none) and (pointer: coarse) {
            .nav-link:hover span { transform: none; }
            .nav-link:hover::after { top: 100%; }
            .bento-card:hover, .pricing-card:hover, .testimonial-card:hover,
            .triforce-card:hover, .infra-card:hover, .feature-pill:hover { transform: none; }
            .nav-cta:hover::before { transform: translateY(100%); }
            .selected-language:hover { background: rgba(0,0,0,0.04); }
            .language-selector:hover .language-dropdown { opacity: 0; visibility: hidden; }
            .btn-cta-primary:hover, .btn-cta-secondary:hover { transform: none; box-shadow: none; }

            .nav-link, .mob-link, .faq-question, .charts-tab,
            .feature-pill, .mobile-lang-item, .language-dropdown li,
            .footer-links a { min-height: 48px; display: inline-flex; align-items: center; }

            .mobile-menu-btn { padding: 12px; min-width: 48px; min-height: 48px; }
            .mobile-close { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }
        }

        /* ======= WHY ODIN — pain-point benefits, restrained ======= */
        .why-section {
            padding: 120px 0 100px;
            position: relative;
            background: var(--bg-off);
        }
        .why-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
            max-width: 1180px; margin: 0 auto;
        }
        .why-card {
            position: relative;
            padding: 32px 28px;
            border-radius: 18px;
            background: var(--bg);
            border: 1px solid var(--border);
            transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
        }
        .why-card:hover {
            transform: translateY(-4px);
            border-color: rgba(232,75,42,0.25);
            box-shadow: 0 18px 38px -18px rgba(0,0,0,0.10);
        }
        .why-h {
            font-family: var(--font-d); font-size: 1.05rem; font-weight: 800;
            letter-spacing: -0.02em; line-height: 1.25;
            color: var(--text); margin: 0;
        }
        .why-p {
            font-size: 0.86rem; line-height: 1.45;
            color: var(--text-2); margin: 6px 0 0;
        }
        /* Bento layout — 6-column grid, cards span different widths so each
           card has its own visual character instead of a uniform grid. */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-auto-rows: minmax(180px, auto);
            gap: 16px;
            max-width: 1180px;
            margin: 0 auto;
        }
        .why-card.w-01 { grid-column: span 2; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
        .why-card.w-02 { grid-column: span 4; padding: 24px; display: flex; flex-direction: column; gap: 18px; }
        .why-card.w-03 { grid-column: span 2; padding: 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
        .why-card.w-04 { grid-column: span 2; padding: 24px; display: flex; flex-direction: column; gap: 14px; overflow: hidden; position: relative; }
        .why-card.w-05 { grid-column: span 2; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
        .why-card.w-06 { grid-column: span 6; padding: 36px 32px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }

        /* --- Card 01: Pine Script — fake code editor block --- */
        .why-tag {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 4px 10px;
            border: 1px solid var(--border);
            border-radius: 999px;
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.68rem; font-weight: 700;
            color: var(--text-3);
            letter-spacing: 0.08em;
            align-self: flex-start;
            text-transform: uppercase;
        }
        .why-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #10b981; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
        .why-code {
            font-family: var(--font-m, ui-monospace, 'JetBrains Mono', monospace);
            font-size: 0.78rem; line-height: 1.55;
            background: #0d1018;
            color: #e6e8ee;
            padding: 14px 16px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            margin: 0;
            white-space: pre;
            overflow: hidden;
            position: relative;
        }
        .why-code .k { color: #c792ea; }   /* keyword */
        .why-code .s { color: #ecc48d; }   /* string */
        .why-code .f { color: #82aaff; }   /* func */
        .why-code .n { color: #f78c6c; }   /* number */
        .why-code .c { color: #6c7080; }   /* comment */

        /* --- Card 02: Broker wall — 6 logos as the focal element --- */
        .why-broker-wall {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px;
            flex: 1;
        }
        .why-broker {
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            gap: 8px;
            padding: 14px 8px;
            background: rgba(232, 75, 42, 0.04);
            border: 1px solid var(--border);
            border-radius: 10px;
            transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
        }
        .why-broker:hover { transform: translateY(-3px); border-color: rgba(232, 75, 42, 0.45); background: rgba(232, 75, 42, 0.08); }
        .why-broker img { width: 32px; height: 32px; object-fit: contain; }
        .why-broker span { font-size: 0.7rem; font-weight: 600; color: var(--text-2); letter-spacing: -0.01em; }
        @media (max-width: 720px) { .why-broker-wall { grid-template-columns: repeat(3, 1fr); } }

        /* --- Card 03: Saga grade — A+ stamp --- */
        .why-grade {
            position: relative;
            display: inline-flex; align-items: center; justify-content: center;
            width: 88px; height: 88px;
            font-family: var(--font-d, 'Inter', sans-serif);
            font-size: 3rem; font-weight: 900;
            letter-spacing: -0.05em;
            line-height: 1;
            color: #fff;
            background: linear-gradient(135deg, #E84B2A 0%, #DBA028 100%);
            border-radius: 16px;
            box-shadow: 0 12px 28px rgba(232, 75, 42, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transform: rotate(-6deg);
        }
        .why-grade::after {
            content: 'TODAY';
            position: absolute; bottom: -6px; right: -8px;
            transform: rotate(8deg);
            background: var(--text);
            color: var(--bg);
            font-size: 0.55rem; font-weight: 800;
            letter-spacing: 0.12em;
            padding: 3px 7px;
            border-radius: 4px;
        }
        .why-saga-credit { display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; color: var(--text-3); font-weight: 600; }
        .why-saga-credit img { width: 16px; height: 16px; object-fit: contain; }

        /* --- Card 04: Lockouts — red diagonal LOCKED banner --- */
        .why-card.w-04::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                45deg,
                rgba(239, 68, 68, 0.05) 0 12px,
                transparent 12px 24px
            );
            pointer-events: none;
        }
        .why-lock-stamp {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 10px 16px;
            background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
            color: #fff;
            border-radius: 10px;
            font-family: var(--font-d, 'Inter', sans-serif);
            font-size: 0.9rem; font-weight: 800;
            letter-spacing: 0.06em;
            box-shadow: 0 10px 24px rgba(239, 68, 68, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.25);
            align-self: flex-start;
            position: relative;
            z-index: 1;
        }
        .why-lock-stamp i { font-size: 0.95rem; }
        .why-lock-time {
            font-family: var(--font-m, ui-monospace, monospace);
            font-size: 0.78rem; font-weight: 600;
            color: var(--text-3);
            letter-spacing: 0.06em;
            position: relative; z-index: 1;
        }

        /* --- Card 05: Copy trading — 1→N fan SVG --- */
        .why-fan {
            position: relative;
            display: flex; align-items: center; justify-content: center;
            height: 80px;
        }
        .why-fan svg { width: 100%; height: 100%; }
        .why-fan-from, .why-fan-to {
            font-family: var(--font-d, 'Inter', sans-serif);
            font-size: 0.85rem; font-weight: 800;
        }

        /* --- Card 06: Free — $29 crossed → $0 forever --- */
        .why-price-row {
            display: inline-flex; align-items: center; gap: 18px;
            flex-wrap: wrap; justify-content: center;
        }
        .why-old {
            position: relative;
            font-family: var(--font-d, 'Inter', sans-serif);
            font-size: 2rem; font-weight: 800;
            color: var(--text-3);
            letter-spacing: -0.03em;
        }
        .why-old sup { font-size: 0.6em; font-weight: 600; opacity: 0.7; }
        .why-old::after {
            content: '';
            position: absolute;
            left: -8%; right: -8%;
            top: 50%;
            height: 3px;
            background: #ef4444;
            transform: rotate(-8deg);
            border-radius: 2px;
        }
        .why-arrow { color: var(--text-3); font-size: 1.2rem; }
        .why-new {
            font-family: var(--font-d, 'Inter', sans-serif);
            font-size: 3.4rem; font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 1;
            background: linear-gradient(135deg, #E84B2A 0%, #DBA028 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .why-forever {
            font-family: var(--font-d, 'Inter', sans-serif);
            font-size: 0.78rem; font-weight: 800;
            letter-spacing: 0.22em;
            color: var(--text);
            text-transform: uppercase;
            border: 1.5px solid var(--text);
            padding: 6px 12px;
            border-radius: 999px;
        }

        @media (max-width: 980px) {
            .why-section { padding: 80px 0 70px; }
            .why-grid { grid-template-columns: repeat(4, 1fr); }
            .why-card.w-01 { grid-column: span 2; }
            .why-card.w-02 { grid-column: span 4; }
            .why-card.w-03 { grid-column: span 2; }
            .why-card.w-04 { grid-column: span 2; }
            .why-card.w-05 { grid-column: span 4; }
            .why-card.w-06 { grid-column: span 4; }
        }
        @media (max-width: 600px) {
            .why-grid { grid-template-columns: 1fr; max-width: 480px; }
            .why-card.w-01, .why-card.w-02, .why-card.w-03, .why-card.w-04, .why-card.w-05, .why-card.w-06 { grid-column: span 1; padding: 22px; }
            .why-broker-wall { grid-template-columns: repeat(3, 1fr); }
            .why-new { font-size: 2.6rem; }
            .why-old { font-size: 1.6rem; }
        }

        /* =====================================================================
           VENDORS & MARKETS — Futures vs CFD distinction
           Shared design tokens (orange = Futures, gold = CFD)
           ===================================================================== */
        :root {
            --futures-accent: #E84B2A;
            --futures-accent-soft: rgba(232,75,42,0.10);
            --futures-accent-line: rgba(232,75,42,0.35);
            --futures-halo: rgba(232,75,42,0.14);
            --cfd-accent: #DBA028;
            --cfd-accent-soft: rgba(219,160,40,0.10);
            --cfd-accent-line: rgba(219,160,40,0.40);
            --cfd-halo: rgba(219,160,40,0.16);
        }

        /* ======= GROUPED LABEL PRIMITIVE ======= */
        .vp-label {
            display: inline-flex; align-items: center; gap: 8px;
            font-family: var(--font-d); font-size: 0.66rem; font-weight: 800;
            letter-spacing: 0.18em; text-transform: uppercase;
            padding: 5px 12px; border-radius: 999px;
            border: 1px solid transparent;
            line-height: 1; white-space: nowrap;
        }
        .vp-label::before {
            content: ''; width: 6px; height: 6px; border-radius: 50%;
            box-shadow: 0 0 8px currentColor;
        }
        .vp-label.is-futures { color: var(--futures-accent); background: var(--futures-accent-soft); border-color: var(--futures-accent-line); }
        .vp-label.is-cfd { color: var(--cfd-accent); background: var(--cfd-accent-soft); border-color: var(--cfd-accent-line); }

        /* ======= HERO PROVIDERS — GROUPED ======= */
        .hero-providers-grouped {
            display: flex; align-items: center; justify-content: center;
            gap: 18px; margin-top: 28px; flex-wrap: wrap;
        }
        /* compact vp-label inside the hero only */
        .hero-providers-grouped .vp-label {
            font-size: 0.56rem; padding: 3px 9px; gap: 6px;
        }
        .hero-providers-grouped .vp-label::before {
            width: 5px; height: 5px;
        }
        .hero-provider-group {
            display: flex; flex-direction: row; align-items: center; gap: 14px;
            padding: 8px 14px;
            border-radius: 999px;
            border: 1px solid var(--border);
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(14px) saturate(140%);
            -webkit-backdrop-filter: blur(14px) saturate(140%);
            transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
            position: relative; overflow: hidden;
        }
        .hero-provider-group::before {
            content: ''; position: absolute; inset: -1px;
            border-radius: inherit; padding: 1px;
            background: linear-gradient(180deg, currentColor, transparent);
            -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
            -webkit-mask-composite: xor; mask-composite: exclude;
            opacity: 0; transition: opacity 0.5s var(--ease);
            pointer-events: none;
        }
        .hero-provider-group.is-futures { color: var(--futures-accent); }
        .hero-provider-group.is-cfd { color: var(--cfd-accent); }
        .hero-provider-group:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
        .hero-provider-group:hover::before { opacity: 0.7; }
        .hero-provider-row {
            display: flex; align-items: center; gap: 12px;
        }
        .hero-provider-row img {
            height: 22px; width: auto; object-fit: contain;
            filter: saturate(105%);
            transition: transform 0.5s var(--ease);
        }
        .hero-provider-row img:hover { transform: scale(1.12); }
        .hero-provider-divider {
            position: relative;
            display: inline-flex; align-items: center; justify-content: center;
            min-width: 26px; height: 22px;
        }
        .hero-provider-divider::after {
            content: 'OR';
            font-family: var(--font-d); font-size: 0.58rem; font-weight: 800;
            letter-spacing: 0.16em; color: var(--text-3);
            background: var(--bg); padding: 2px 6px; border-radius: 5px;
            border: 1px solid var(--border);
        }
        @media (max-width: 768px) {
            .hero-providers-grouped { gap: 12px; }
            .hero-provider-group { padding: 6px 12px; gap: 10px; }
            .hero-provider-row { gap: 10px; }
            .hero-provider-row img { height: 18px; }
        }

        /* ======================================================
           MARKETS SECTION — The Two Realms
           Norse-themed: drifting runes, Bifrost bridge, sigil
           ====================================================== */
        .markets-section {
            padding: 140px 0 120px;
            position: relative; overflow: hidden;
            background: var(--bg);
        }
        .markets-section::before {
            content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
            background:
                radial-gradient(ellipse 720px 480px at 6% 18%, rgba(232,75,42,0.04) 0%, transparent 60%),
                radial-gradient(ellipse 720px 480px at 94% 82%, rgba(219,160,40,0.04) 0%, transparent 60%);
        }
        .markets-section .container { position: relative; z-index: 2; }

        /* Section header (custom — not the generic .section-header-centered) */
        .markets-header { text-align: center; max-width: 720px; margin: 0 auto 72px; }
        .markets-eyebrow {
            display: inline-flex; align-items: center; gap: 12px;
            font-family: var(--font-m); font-size: 0.72rem; font-weight: 600;
            color: var(--text-3); letter-spacing: 0.24em; text-transform: uppercase;
            margin-bottom: 22px;
        }
        .markets-eyebrow .me-mark {
            width: 28px; height: 1px;
            background: linear-gradient(90deg, transparent, currentColor, transparent);
        }
        .markets-headline {
            font-family: var(--font-d); font-weight: 900;
            font-size: clamp(2.4rem, 5.4vw, 3.6rem);
            line-height: 0.98; letter-spacing: -0.04em;
            margin: 0 0 22px;
        }
        .markets-headline .mh-line { display: block; }
        .markets-headline .mh-gradient {
            background: var(--gradient);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .markets-lede {
            font-family: var(--font-b); font-size: 1.05rem; font-weight: 400;
            color: var(--text-2); line-height: 1.7;
            max-width: 580px; margin: 0 auto;
        }

        /* The stage */
        .markets-stage {
            display: grid; grid-template-columns: 1fr 96px 1fr;
            align-items: stretch; max-width: 1180px; margin: 0 auto;
            gap: 0;
        }

        /* ======= REALM PILLAR (glass card) ======= */
        .market-pillar {
            position: relative; padding: 48px 40px 36px;
            border-radius: 28px; overflow: hidden;
            background: rgba(255,255,255,0.62);
            backdrop-filter: blur(24px) saturate(160%);
            -webkit-backdrop-filter: blur(24px) saturate(160%);
            border: 1px solid var(--border);
            box-shadow: 0 18px 60px -22px rgba(0,0,0,0.10);
            transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease), border-color 0.7s var(--ease);
        }
        /* Subtle gradient spine — no glow */
        .market-pillar::before {
            content: ''; position: absolute; inset: 0; pointer-events: none;
            border-radius: inherit; padding: 1px;
            background: linear-gradient(165deg, currentColor 0%, transparent 55%);
            -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
            -webkit-mask-composite: xor; mask-composite: exclude;
            opacity: 0.4;
        }
        .market-pillar > * { position: relative; z-index: 1; }
        .market-pillar:hover {
            transform: translateY(-4px);
            box-shadow: 0 28px 60px -28px rgba(0,0,0,0.14);
        }
        .market-pillar-futures { color: var(--futures-accent); }
        .market-pillar-futures:hover { border-color: var(--futures-accent-line); }
        .market-pillar-cfd { color: var(--cfd-accent); }
        .market-pillar-cfd:hover { border-color: var(--cfd-accent-line); }

        /* ======= REALM HEADER ======= */
        .realm-header { margin-bottom: 32px; }
        .realm-eyebrow {
            display: inline-flex; align-items: center; gap: 10px;
            font-family: var(--font-m); font-size: 0.7rem; font-weight: 600;
            color: var(--text-3); letter-spacing: 0.2em; text-transform: uppercase;
            margin-bottom: 14px;
        }
        .realm-numeral {
            font-family: var(--font-d); font-size: 0.9rem; font-weight: 800;
            color: currentColor; padding: 2px 8px; line-height: 1;
            border-left: 1px solid currentColor;
            border-right: 1px solid currentColor;
            letter-spacing: 0;
        }
        .realm-name {
            font-family: var(--font-d); font-size: clamp(2.1rem, 3.6vw, 2.7rem); font-weight: 900;
            color: var(--text); letter-spacing: -0.035em; line-height: 1;
            margin: 0;
            position: relative;
        }
        .realm-name::after {
            content: ''; display: block;
            width: 72px; height: 3px; margin-top: 16px;
            background: linear-gradient(90deg, currentColor 0%, transparent 100%);
            border-radius: 3px;
            box-shadow: 0 0 12px -2px currentColor;
        }
        .realm-tagline {
            font-family: var(--font-b); font-size: 0.96rem; font-weight: 400;
            color: var(--text-2); line-height: 1.55;
            margin: 18px 0 0;
            font-style: italic;
        }

        /* ======= VENDOR MEDALLIONS ======= */
        .realm-vendors {
            display: flex; flex-wrap: wrap; gap: 10px;
            margin-bottom: 28px;
        }
        .vendor-medallion {
            position: relative;
            display: inline-flex; align-items: center; gap: 11px;
            padding: 7px 16px 7px 7px;
            border-radius: 999px;
            background: var(--bg);
            border: 1px solid var(--border);
            text-decoration: none;
            transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
        }
        .vendor-medallion:hover {
            transform: translateY(-2px);
            border-color: color-mix(in srgb, currentColor 45%, transparent);
        }
        .medallion-frame {
            position: relative;
            width: 30px; height: 30px; border-radius: 50%;
            background: var(--bg-off);
            border: 1px solid color-mix(in srgb, currentColor 22%, var(--border));
            flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
        }
        .medallion-frame img {
            width: 20px; height: 20px; object-fit: contain;
        }
        .medallion-name {
            font-family: var(--font-d); font-size: 0.86rem; font-weight: 700;
            color: var(--text); letter-spacing: -0.01em;
        }

        /* ======= TICKER TAPE INSIDE EACH REALM ======= */
        .realm-ticker {
            position: relative;
            margin: 0 -40px 28px;
            padding: 13px 0;
            overflow: hidden;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background: linear-gradient(180deg, rgba(0,0,0,0.018) 0%, transparent 100%);
        }
        .realm-ticker::before, .realm-ticker::after {
            content: ''; position: absolute; top: 0; bottom: 0; width: 60px;
            pointer-events: none; z-index: 2;
        }
        .realm-ticker::before { left: 0; background: linear-gradient(90deg, var(--bg) 0%, transparent 100%); }
        .realm-ticker::after { right: 0; background: linear-gradient(270deg, var(--bg) 0%, transparent 100%); }
        .realm-ticker-track {
            display: flex; gap: 14px; width: max-content;
            animation: realmTickerScroll 32s linear infinite;
            will-change: transform;
        }
        .market-pillar-cfd .realm-ticker-track {
            animation-duration: 38s;
            animation-direction: reverse;
        }
        .realm-ticker:hover .realm-ticker-track { animation-play-state: paused; }
        .rt-sym {
            font-family: var(--font-m); font-size: 0.78rem; font-weight: 700;
            color: var(--text); letter-spacing: 0.01em;
            white-space: nowrap;
            position: relative;
            padding-left: 14px;
            display: inline-flex; align-items: center;
        }
        .rt-sym::before {
            content: ''; position: absolute; left: 0; top: 50%;
            transform: translateY(-50%);
            width: 5px; height: 5px; border-radius: 50%;
            background: currentColor;
            opacity: 0.7;
        }
        .market-pillar-futures .rt-sym { color: var(--futures-accent); }
        .market-pillar-cfd .rt-sym { color: var(--cfd-accent); }
        .rt-sep {
            color: var(--text-3);
            font-family: var(--font-m); font-size: 0.78rem;
            display: inline-flex; align-items: center;
        }
        @keyframes realmTickerScroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* ======= REALM TRAITS ======= */
        .realm-traits {
            display: flex; flex-wrap: wrap; gap: 10px 22px;
            list-style: none; margin: 0; padding: 0;
        }
        .realm-traits li {
            display: inline-flex; align-items: center; gap: 9px;
            font-family: var(--font-b); font-size: 0.84rem; font-weight: 500;
            color: var(--text-2); letter-spacing: -0.01em;
        }
        .realm-traits li i {
            font-size: 0.8rem;
            width: 16px; text-align: center;
        }
        .market-pillar-futures .realm-traits li i { color: var(--futures-accent); }
        .market-pillar-cfd .realm-traits li i { color: var(--cfd-accent); }

        /* ======= SEAM (between the two pillars) ======= */
        .bifrost {
            position: relative;
            display: flex; align-items: center; justify-content: center;
        }
        .bifrost-line {
            position: absolute;
            top: 36px; bottom: 36px; left: 50%;
            transform: translateX(-50%);
            width: 1px;
            background: linear-gradient(180deg,
                transparent 0%,
                var(--futures-accent-line) 18%,
                var(--cfd-accent-line) 82%,
                transparent 100%);
            opacity: 0.6;
        }
        .bifrost-mark {
            position: relative;
            width: 10px; height: 10px;
            border-radius: 50%;
            background: var(--bg);
            border: 1px solid var(--border);
            box-shadow: 0 0 0 4px var(--bg);
        }
        .bifrost-mark::before {
            content: ''; position: absolute; inset: 2px;
            border-radius: 50%;
            background: var(--gradient);
        }

        /* ======= REVEAL ======= */
        .markets-stage .market-pillar { opacity: 0; transform: translateY(40px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
        .markets-stage .market-pillar-futures { transform: translateY(40px) translateX(-18px); }
        .markets-stage .market-pillar-cfd { transform: translateY(40px) translateX(18px); }
        .markets-stage.is-revealed .market-pillar { opacity: 1; transform: translateY(0) translateX(0); }
        .markets-stage.is-revealed .market-pillar-cfd { transition-delay: 200ms; }
        .markets-stage .bifrost { opacity: 0; transition: opacity 0.9s var(--ease) 0.45s; }
        .markets-stage.is-revealed .bifrost { opacity: 1; }

        /* ======= CONVERSION SURFACES ======= */
        .inline-demo-cta { display: flex; justify-content: center; margin-top: 36px; }
        .getit-builtby {
            display: flex; flex-direction: column; align-items: center; gap: 12px;
            margin-top: 26px; padding-top: 22px;
            border-top: 1px solid var(--border);
            font-size: 0.82rem; color: var(--text-3); font-weight: 500;
        }
        .getit-builtby-logos { display: flex; align-items: center; gap: 20px; }
        .getit-builtby-logos img { height: 22px; width: auto; opacity: 0.85; }
        .mobile-cta-bar {
            position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
            display: none; gap: 10px;
            padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
            border-top: 1px solid var(--border);
            transform: translateY(110%);
            transition: transform 0.45s var(--ease);
        }
        .mobile-cta-bar.visible { transform: translateY(0); }
        .mcb-primary, .mcb-demo {
            display: flex; align-items: center; justify-content: center;
            padding: 12px 10px; border-radius: 40px;
            font-family: var(--font-b); font-size: 0.88rem; font-weight: 700;
            white-space: nowrap;
        }
        .mcb-primary { flex: 1.35; background: var(--gradient); color: #fff; }
        .mcb-demo { flex: 1; border: 2px solid #DBA028; color: #B07F1E; background: transparent; }
        .mcb-primary i, .mcb-demo i { margin-right: 6px; }
        @media (max-width: 768px) {
            .mobile-cta-bar { display: flex; }
            /* keep the chatbot bubble above the bar (chatbot.css loads later) */
            #cb-toggle { bottom: calc(84px + env(safe-area-inset-bottom)) !important; }
        }
        /* Exit intent: one quiet second chance, never a discount-store popup */
        .exit-veil {
            position: fixed; inset: 0; z-index: 3000;
            background: rgba(17, 24, 39, 0.45);
            backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none;
            transition: opacity 0.45s var(--ease);
        }
        .exit-veil.open { opacity: 1; pointer-events: auto; }
        .exit-card {
            text-align: center; padding: 20px;
            display: flex; flex-direction: column; align-items: center; gap: 28px;
        }
        .exit-line {
            font-family: Georgia, 'Times New Roman', serif; font-style: italic;
            font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.5;
            color: #fff; max-width: 560px;
            text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
        }
        .exit-veil .btn-demo { background: rgba(14, 11, 9, 0.55); }
        .exit-close {
            position: absolute; top: 22px; right: 28px;
            background: none; border: none; color: rgba(255, 255, 255, 0.75);
            font-size: 1.6rem; line-height: 1; cursor: pointer;
        }

        /* ======= FOLIO: chapter numbering (injected, aria-hidden) ======= */
        .folio {
            display: flex; align-items: center; justify-content: center; gap: 10px;
            margin-bottom: 18px;
            font-family: var(--font-m);
            font-size: 0.66rem; font-weight: 600;
            color: var(--text-3); letter-spacing: 0.18em;
        }
        .folio-rune { color: rgba(232, 75, 42, 0.5); font-size: 0.74rem; letter-spacing: 0; }
        .folio-line {
            width: 44px; height: 1px;
            background: linear-gradient(90deg, rgba(232, 75, 42, 0.5), rgba(219, 160, 40, 0.5));
            transform-origin: left center;
        }

        /* ======= ACT BREAK: a held breath between spectacle and proof ======= */
        .actbreak {
            min-height: 85vh;
            display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden;
            background: var(--bg);
        }
        .actbreak-rune {
            position: absolute; left: 50%; top: 50%;
            transform: translate(-50%, -50%);
            font-size: clamp(16rem, 38vw, 28rem);
            line-height: 1; color: rgba(232, 75, 42, 0.035);
            pointer-events: none; user-select: none;
        }
        .actbreak-line {
            position: relative;
            max-width: 660px; padding: 0 24px;
            text-align: center;
            font-family: Georgia, 'Times New Roman', serif;
            font-style: italic;
            font-size: clamp(1.5rem, 3.2vw, 2.4rem);
            line-height: 1.5; color: rgba(17, 24, 39, 0.72);
        }
        @media (max-width: 768px) { .actbreak { min-height: 50vh; } .actbreak-rune { font-size: 14rem; } }

        /* ======= TORCHLIGHT LENS: inspect the platform through the good eye ======= */
        .lens-wrap { position: relative; overflow: hidden; }
        .lens-wrap > .lens {
            position: absolute; inset: 0;
            opacity: 0; transition: opacity 0.35s var(--ease);
            pointer-events: none;
            clip-path: circle(120px at var(--lx, -999px) var(--ly, -999px));
            background: #131722;
            z-index: 2;
        }
        .lens-wrap:hover > .lens { opacity: 1; }
        .lens-wrap > .lens > img {
            position: absolute; top: 0; left: 0;
            width: 135% !important; max-width: none; height: auto;
            transform: translate(calc(var(--lx, 0px) * -0.35), calc(var(--ly, 0px) * -0.35));
            will-change: transform;
        }
        .lens-wrap > .lens::after {
            content: '';
            position: absolute;
            left: calc(var(--lx, -999px) - 120px); top: calc(var(--ly, -999px) - 120px);
            width: 240px; height: 240px;
            border-radius: 50%;
            border: 1px solid rgba(219, 160, 40, 0.65);
            box-shadow: inset 0 0 30px rgba(232, 75, 42, 0.22), 0 0 24px rgba(232, 75, 42, 0.16);
        }

        /* ======= RESPONSIVE ======= */
        @media (max-width: 980px) {
            .markets-section { padding: 90px 0 80px; }
            .markets-header { margin-bottom: 48px; }
            .markets-stage { grid-template-columns: 1fr; gap: 32px; max-width: 600px; }
            .bifrost { height: 56px; }
            .bifrost-line {
                top: 50%; left: 0; right: 0;
                transform: translateY(-50%);
                width: auto; height: 1px;
                background: linear-gradient(90deg,
                    transparent 0%,
                    var(--futures-accent-line) 18%,
                    var(--cfd-accent-line) 82%,
                    transparent 100%);
            }
            .market-pillar { padding: 38px 28px 28px; }
            .realm-header { padding-right: 0; }
            .realm-name { font-size: clamp(1.7rem, 5vw, 2.1rem); }
            .realm-ticker { margin: 0 -28px 24px; }
            .markets-stage .market-pillar-futures, .markets-stage .market-pillar-cfd { transform: translateY(40px); }
        }

        @media (max-width: 480px) {
            .markets-headline { font-size: clamp(1.9rem, 9vw, 2.4rem); }
            .markets-eyebrow { font-size: 0.65rem; gap: 8px; }
            .markets-eyebrow .me-mark { width: 18px; }
            .vendor-medallion { padding-right: 12px; }
            .medallion-name { font-size: 0.78rem; }
            .realm-traits { gap: 8px 14px; }
            .realm-traits li { font-size: 0.78rem; }
        }

        @media (prefers-reduced-motion: reduce) {
            .realm-ticker-track { animation: none !important; }
            .markets-stage .market-pillar { opacity: 1 !important; transform: none !important; }
            .markets-stage .bifrost { opacity: 1 !important; }
        }

        /* ======= GET ODIN — grouped providers ======= */
        .getit-providers-grouped {
            display: flex; align-items: stretch; justify-content: center;
            gap: 24px; margin-bottom: 28px; flex-wrap: wrap;
        }
        .getit-provider-group {
            display: flex; flex-direction: column; align-items: center; gap: 14px;
            padding: 18px 26px;
            border-radius: 18px;
            background: var(--bg);
            border: 1px solid var(--border);
            transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
            position: relative; overflow: hidden;
        }
        .getit-provider-group::before {
            content: ''; position: absolute; inset: 0;
            border-radius: inherit; padding: 1px; pointer-events: none;
            background: linear-gradient(180deg, currentColor 0%, transparent 75%);
            -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
            -webkit-mask-composite: xor; mask-composite: exclude;
            opacity: 0.4;
        }
        .getit-provider-group.is-futures { color: var(--futures-accent); }
        .getit-provider-group.is-cfd { color: var(--cfd-accent); }
        .getit-provider-group:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(0,0,0,0.06);
        }
        .getit-provider-group .vp-label { align-self: center; }
        .getit-provider-row {
            display: flex; align-items: center; gap: 26px;
        }
        .getit-provider-row img { height: 38px; width: auto; object-fit: contain; transition: transform 0.4s var(--ease); }
        .getit-provider-row img:hover { transform: scale(1.08); }
        @media (max-width: 768px) {
            .getit-providers-grouped { gap: 14px; }
            .getit-provider-group { padding: 14px 18px; }
            .getit-provider-row { gap: 18px; }
            .getit-provider-row img { height: 28px; }
        }

        /* ======= PRICING BUNDLE — grouped provider strip ======= */
        .pc-providers-grouped {
            display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
            margin: 0 0 20px;
        }
        .pc-providers-group {
            display: flex; flex-direction: column; align-items: center; gap: 8px;
            padding: 10px 8px;
            border: 1px solid var(--border);
            border-radius: 12px;
            background: var(--bg-off);
            position: relative; overflow: hidden;
        }
        .pc-providers-group::before {
            content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px;
            background: linear-gradient(90deg, transparent, currentColor, transparent);
            opacity: 0.7;
        }
        .pc-providers-group.is-futures { color: var(--futures-accent); }
        .pc-providers-group.is-cfd { color: var(--cfd-accent); }
        .pc-providers-group .vp-label {
            font-size: 0.58rem; padding: 3px 8px; letter-spacing: 0.16em;
        }
        .pc-providers-row { display: flex; align-items: center; gap: 12px; }
        .pc-providers-row img { height: 18px; width: auto; object-fit: contain; opacity: 0.95; }


    

    /* ---- Prop firm risk section ------------------------------------------
       The lead differentiator: Odin reads each funded account's configuration
       and tracks its rules live. Restrained styling - the meter is the visual,
       everything else stays quiet. */
    .risk-section { background: var(--bg-off); }
    .risk-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; margin-top: 44px; }
    @media (max-width: 900px) { .risk-layout { grid-template-columns: 1fr; gap: 36px; } }

    .risk-meter { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 26px 22px; }
    .risk-meter-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
    .risk-meter-acct { font-family: var(--font-m); font-size: 0.78rem; color: var(--text-3); letter-spacing: 0.02em; }
    .risk-meter-type { font-family: var(--font-m); font-size: 0.7rem; font-weight: 600; color: var(--primary);
                       border: 1px solid rgba(232,75,42,0.3); border-radius: 999px; padding: 3px 9px; }

    .risk-row { margin-bottom: 20px; }
    .risk-row:last-child { margin-bottom: 0; }
    .risk-row-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 7px; }
    .risk-row-label { font-size: 0.8rem; color: var(--text-2); font-weight: 500; }
    .risk-row-val { font-family: var(--font-m); font-size: 0.9rem; font-weight: 600; color: var(--text); }
    .risk-bar { height: 8px; border-radius: 999px; background: var(--border); overflow: hidden; }
    .risk-bar span { display: block; height: 100%; border-radius: 999px; }
    .risk-bar .fill-ok { background: var(--gradient); }
    .risk-bar .fill-warn { background: linear-gradient(90deg, #DBA028, #E84B2A); }
    .risk-foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border);
                 font-size: 0.78rem; color: var(--text-2); line-height: 1.55; }
    .risk-foot strong { color: var(--text); font-weight: 600; }

    .risk-points { display: grid; gap: 18px; }
    .risk-point { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
    .risk-point i { color: var(--primary); font-size: 1rem; margin-top: 3px; }
    .risk-point h3 { font-family: var(--font-d); font-size: 1.02rem; font-weight: 700; margin-bottom: 4px; }
    .risk-point p { font-size: 0.88rem; color: var(--text-2); line-height: 1.6; }

    .risk-dd { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    @media (max-width: 760px) { .risk-dd { grid-template-columns: 1fr; } }
    .risk-dd-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; }
    .risk-dd-card h4 { font-family: var(--font-m); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em;
                       text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
    .risk-dd-card p { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }
    .risk-dd-card p strong { color: var(--text); font-weight: 600; }


        .sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
    