        /* Futura Font Family */
        @font-face {
            font-family: 'Futura';
            src: url('assets/fonts/Futura-Light-font.ttf') format('truetype');
            font-weight: 300;
            font-style: normal;
        }

        @font-face {
            font-family: 'Futura';
            src: url('assets/fonts/Futura-Book-font.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
        }

        @font-face {
            font-family: 'Futura';
            src: url('assets/fonts/futura-medium-bt.ttf') format('truetype');
            font-weight: 500;
            font-style: normal;
        }

        @font-face {
            font-family: 'Futura';
            src: url('assets/fonts/Futura-Bold-font.ttf') format('truetype');
            font-weight: 700;
            font-style: normal;
        }

        @font-face {
            font-family: 'Futura';
            src: url('assets/fonts/Futura-Extra-Black-font.ttf') format('truetype');
            font-weight: 900;
            font-style: normal;
        }

        :root {
            /* CryptoLand Orange Palette */
            --void: #04040a;
            --abyss: #0a0a0f;
            --obsidian: #0f0f15;
            --midnight: #14141a;
            --dusk: #1a1a20;

            --orange: #FF8929;
            --orange-bright: #ffaa5c;
            --orange-deep: #d66d1a;
            --orange-glow: rgba(255, 137, 41, 0.5);
            --orange-soft: rgba(255, 137, 41, 0.15);

            --orange-dark: #cc6e21;
            --orange-darker: #a35719;

            --ember: #ff6b35;
            --success: #2dd4bf;
            --crimson: #dc2626;

            --ivory: #f5f0e6;
            --pearl: #e0dcd4;
            --silver: #9ca3af;
            --slate: #64748b;
        }

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            background: var(--void);
            color: var(--ivory);
            line-height: 1.7;
            overflow-x: hidden;
            max-width: 100vw;
            position: relative;
        }

        ::selection {
            background: var(--orange);
            color: var(--void);
        }

        /* ============================================
           IMMERSIVE ATMOSPHERE SYSTEM
           ============================================ */

        .realm-atmosphere {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }

        /* Deep cosmic gradient */
        .atmosphere-gradient {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 150% 80% at 50% -20%, rgba(255, 137, 41, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 100% 60% at 100% 50%, rgba(255, 137, 41, 0.08) 0%, transparent 40%),
                radial-gradient(ellipse 80% 80% at 0% 80%, rgba(255, 137, 41, 0.1) 0%, transparent 50%);
        }

        /* Animated aurora effect */
        .atmosphere-aurora {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .atmosphere-aurora::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(255, 137, 41, 0.03) 60deg,
                    transparent 120deg,
                    rgba(255, 137, 41, 0.05) 180deg,
                    transparent 240deg,
                    rgba(255, 137, 41, 0.02) 300deg,
                    transparent 360deg);
            animation: auroraRotate 60s linear infinite;
        }

        @keyframes auroraRotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Grain texture overlay */
        .atmosphere-grain {
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.03;
            mix-blend-mode: overlay;
        }

        /* Floating light orbs */
        .light-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.6;
            animation: orbFloat 20s ease-in-out infinite;
        }

        .light-orb-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .light-orb-2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 137, 41, 0.3) 0%, transparent 70%);
            bottom: 20%;
            left: 5%;
            animation-delay: -7s;
        }

        .light-orb-3 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, var(--orange-soft) 0%, transparent 70%);
            top: 60%;
            right: 20%;
            animation-delay: -14s;
        }

        @keyframes orbFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            25% {
                transform: translate(30px, -20px) scale(1.1);
            }

            50% {
                transform: translate(-20px, 30px) scale(0.95);
            }

            75% {
                transform: translate(20px, 20px) scale(1.05);
            }
        }

        /* ============================================
           TYPOGRAPHY HIERARCHY
           ============================================ */

        .display-xl {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-weight: 400;
            letter-spacing: 0.02em;
        }

        .display-lg {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-weight: 500;
        }

        .display-elegant {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
        }

        .mono {
            font-family: 'JetBrains Mono', monospace;
        }

        /* ============================================
           LAYOUT SYSTEM
           ============================================ */

        .container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 clamp(24px, 5vw, 80px);
            position: relative;
            z-index: 10;
            box-sizing: border-box;
        }

        .container-narrow {
            max-width: 1000px;
        }

        /* Section Label */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .section-label::before {
            content: '';
            width: 48px;
            height: 1px;
            background: linear-gradient(90deg, var(--orange), transparent);
        }

        .section-label span {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--orange);
        }

        /* ============================================
           NAVIGATION
           ============================================ */

        .nav-announcement {
            background: linear-gradient(90deg, var(--orange-deep), var(--orange), var(--orange-deep));
            padding: 14px 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .nav-announcement::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
            animation: announceShimmer 4s ease-in-out infinite;
        }

        @keyframes announceShimmer {
            0% {
                transform: translateX(-100%);
            }

            50%,
            100% {
                transform: translateX(100%);
            }
        }

        .nav-announcement-inner {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 16px;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--void);
            border-radius: 50%;
            position: relative;
        }

        .pulse-dot::after {
            content: '';
            position: absolute;
            inset: -6px;
            border: 2px solid var(--void);
            border-radius: 50%;
            animation: pulseDot 2s ease-out infinite;
        }

        @keyframes pulseDot {
            0% {
                transform: scale(0.8);
                opacity: 1;
            }

            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        .nav-announcement-text {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--void);
        }

        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 24px 0;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            max-width: 100vw;
            overflow: hidden;
        }

        .nav.scrolled {
            background: rgba(4, 4, 10, 0.85);
            backdrop-filter: blur(24px);
            padding: 16px 0;
            border-bottom: 1px solid rgba(201, 162, 39, 0.1);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 100%;
            width: 100%;
        }

        .nav-logo {
            height: 80px;
            filter: drop-shadow(0 0 30px var(--orange-glow));
            transition: all 0.4s ease;
        }

        .nav-logo:hover {
            filter: drop-shadow(0 0 50px var(--orange-glow));
            transform: scale(1.03);
        }

        .nav-cta {
            position: relative;
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--void);
            background: linear-gradient(135deg, var(--orange-bright), var(--orange));
            padding: 16px 40px;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            overflow: visible;
            clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0% 50%);
            filter: drop-shadow(0 0 20px rgba(255, 137, 41, 0.6)) drop-shadow(0 4px 12px rgba(255, 137, 41, 0.4));
        }

        .nav-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--success);
            opacity: 0;
            transition: opacity 0.4s ease;
            clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0% 50%);
            z-index: 1;
        }

        .nav-cta:hover::before {
            opacity: 1;
        }

        .nav-cta span {
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
            text-shadow: none;
            color: var(--void);
        }

        .nav-cta:hover span {
            color: var(--void);
        }

        .nav-btn-wrapper {
            position: relative;
            display: inline-block;
        }

        .nav-btn-wrapper::before {
            content: '';
            position: absolute;
            inset: -40px;
            background: radial-gradient(ellipse at center, rgba(45, 212, 191, 0) 0%, rgba(45, 212, 191, 0) 100%);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: -1;
            pointer-events: none;
        }

        .nav-btn-wrapper:hover::before {
            background: radial-gradient(ellipse at center, rgba(45, 212, 191, 0.9) 0%, rgba(45, 212, 191, 0.5) 40%, transparent 70%);
            opacity: 1;
            filter: blur(30px);
        }

        .nav-cta:hover {
            filter: drop-shadow(0 4px 12px rgba(255, 137, 41, 0.4));
        }

        /* ============================================
           HERO - CINEMATIC ENTRANCE
           ============================================ */

        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            padding: 180px 0 120px;
            overflow: hidden;
        }

        /* Hero video background */
        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.8;
        }

        /* Black overlay on video */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
            pointer-events: none;
        }

        /* Grand decorative border */
        .hero-border {
            position: absolute;
            top: 120px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 80px);
            max-width: 1600px;
            height: calc(100% - 200px);
            border: 1px solid rgba(201, 162, 39, 0.15);
            pointer-events: none;
            z-index: 2;
        }

        /* Corner ornaments */
        .corner-ornament {
            position: absolute;
            width: 80px;
            height: 80px;
        }

        .corner-ornament::before,
        .corner-ornament::after {
            content: '';
            position: absolute;
            background: var(--orange);
        }

        .corner-ornament.tl {
            top: -1px;
            left: -1px;
        }

        .corner-ornament.tr {
            top: -1px;
            right: -1px;
        }

        .corner-ornament.bl {
            bottom: -1px;
            left: -1px;
        }

        .corner-ornament.br {
            bottom: -1px;
            right: -1px;
        }

        .corner-ornament.tl::before,
        .corner-ornament.tr::before,
        .corner-ornament.bl::before,
        .corner-ornament.br::before {
            width: 80px;
            height: 1px;
        }

        .corner-ornament.tl::after,
        .corner-ornament.tr::after,
        .corner-ornament.bl::after,
        .corner-ornament.br::after {
            width: 1px;
            height: 80px;
        }

        .corner-ornament.tl::before,
        .corner-ornament.tl::after {
            top: 0;
            left: 0;
        }

        .corner-ornament.tr::before {
            top: 0;
            right: 0;
        }

        .corner-ornament.tr::after {
            top: 0;
            right: 0;
        }

        .corner-ornament.bl::before {
            bottom: 0;
            left: 0;
        }

        .corner-ornament.bl::after {
            bottom: 0;
            left: 0;
        }

        .corner-ornament.br::before {
            bottom: 0;
            right: 0;
        }

        .corner-ornament.br::after {
            bottom: 0;
            right: 0;
        }

        /* Diamond center ornament */
        .center-diamond {
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            background: var(--orange);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        }

        .hero-layout {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 80px;
            align-items: center;
        }

        .hero-content {
            position: relative;
        }

        /* Protocol badge */
        .protocol-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            background: rgba(201, 162, 39, 0.08);
            border: 1px solid rgba(201, 162, 39, 0.25);
            margin-bottom: 40px;
            animation: badgeGlow 3s ease-in-out infinite;
        }

        @keyframes badgeGlow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(201, 162, 39, 0);
            }

            50% {
                box-shadow: 0 0 30px rgba(201, 162, 39, 0.15);
            }
        }

        .protocol-badge .status-light {
            width: 8px;
            height: 8px;
            background: var(--orange);
            border-radius: 50%;
            box-shadow: 0 0 12px var(--orange-glow);
            animation: statusPulse 2s ease-in-out infinite;
        }

        @keyframes statusPulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.6;
                transform: scale(0.9);
            }
        }

        .protocol-badge span {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--orange);
        }

        .hero-title {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 400;
            line-height: 1.05;
            margin-bottom: 36px;
            letter-spacing: -0.01em;
        }

        .hero-title .line {
            display: block;
            overflow: visible;
        }

        .hero-title .line span {
            display: block;
            animation: titleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: calc(var(--i) * 0.15s);
            transform: translateY(100%);
            text-shadow:
                0 0 20px rgba(255, 255, 255, 0.5),
                0 0 40px rgba(255, 255, 255, 0.3),
                0 0 60px rgba(255, 255, 255, 0.2);
        }

        @keyframes titleReveal {
            to {
                transform: translateY(0);
            }
        }

        .hero-title .accent {
            color: var(--orange);
            text-shadow:
                0 0 20px rgba(255, 137, 41, 0.8),
                0 0 40px rgba(255, 137, 41, 0.6),
                0 0 60px rgba(255, 137, 41, 0.4),
                0 0 100px rgba(255, 137, 41, 0.3);
        }

        .hero-subtitle {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.29rem;
            color: var(--pearl);
            max-width: 520px;
            margin-bottom: 20px;
            line-height: 1.7;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 0.6s;
        }

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

        .hero-subtitle {
            transform: translateY(20px);
        }

        /* Yield promise */
        .yield-promise {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            padding: 20px 32px;
            background: linear-gradient(135deg, rgba(45, 212, 191, 0.08), rgba(45, 212, 191, 0.02));
            border: 1px solid rgba(45, 212, 191, 0.2);
            margin-bottom: 48px;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 0.75s;
            transform: translateY(20px);
        }

        .yield-promise svg {
            width: 24px;
            height: 24px;
            color: var(--success);
            flex-shrink: 0;
        }

        .yield-promise p {
            font-size: 1rem;
            color: var(--success);
        }

        .yield-promise strong {
            color: var(--ivory);
        }

        /* Action buttons */
        .hero-actions {
            display: flex;
            gap: 20px;
            margin-bottom: 80px;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 0.9s;
            transform: translateY(20px);
        }

        .btn-glow-wrapper {
            position: relative;
            display: inline-block;
        }

        .btn-glow-wrapper::before {
            content: '';
            position: absolute;
            inset: -30px;
            background: radial-gradient(ellipse at center, rgba(45, 212, 191, 0) 0%, rgba(45, 212, 191, 0) 100%);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: -1;
            pointer-events: none;
        }

        .btn-glow-wrapper:hover::before {
            background: radial-gradient(ellipse at center, rgba(45, 212, 191, 0.8) 0%, rgba(45, 212, 191, 0.4) 40%, transparent 70%);
            opacity: 1;
            filter: blur(25px);
        }

        .btn-royal {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 22px 52px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            overflow: visible;
        }

        .btn-royal.primary {
            background: linear-gradient(135deg, var(--orange-bright), var(--orange));
            color: var(--void);
            clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0% 50%);
            position: relative;
            transition: all 0.4s ease;
            box-shadow:
                0 0 20px rgba(255, 137, 41, 0.4),
                0 4px 12px rgba(255, 137, 41, 0.3);
        }

        .btn-royal.primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--success);
            opacity: 0;
            transition: opacity 0.4s ease;
            clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0% 50%);
            z-index: 1;
        }

        .btn-royal.primary:hover::before {
            opacity: 1;
        }

        .btn-royal.primary span,
        .btn-royal.primary svg {
            position: relative;
            z-index: 2;
            color: var(--void);
        }

        .btn-royal.primary:hover span,
        .btn-royal.primary:hover svg {
            color: var(--void);
        }

        .btn-royal.primary:hover {
            box-shadow:
                0 0 40px rgba(45, 212, 191, 0.7),
                0 0 80px rgba(45, 212, 191, 0.4),
                0 10px 40px rgba(45, 212, 191, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.4),
                inset 0 0 20px rgba(45, 212, 191, 0.2);
        }

        .btn-royal.primary svg {
            transition: transform 0.3s ease;
        }

        .btn-royal.primary:hover svg {
            transform: translateX(4px);
        }

        .btn-royal.ghost {
            background: transparent;
            color: var(--ivory);
            border: 1px solid rgba(201, 162, 39, 0.3);
        }

        .btn-royal.ghost:hover {
            background: rgba(201, 162, 39, 0.1);
            border-color: var(--orange);
        }

        /* Stats row */
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px solid rgba(255, 137, 41, 0.2);
            background: linear-gradient(135deg, rgba(8, 8, 26, 0.95), rgba(15, 15, 21, 0.92));
            backdrop-filter: blur(20px);
            border-radius: 16px;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 1.05s;
            transform: translateY(20px);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(255, 137, 41, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            overflow: hidden;
        }

        .stat {
            padding: 32px 28px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .stat:hover {
            background: rgba(255, 137, 41, 0.05);
        }

        .stat:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: linear-gradient(180deg, transparent, rgba(255, 137, 41, 0.3), transparent);
        }

        .stat-value {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--orange);
            margin-bottom: 10px;
            letter-spacing: -0.02em;
            text-shadow:
                0 0 20px rgba(255, 137, 41, 0.4),
                0 0 40px rgba(255, 137, 41, 0.2);
        }

        .stat-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.6rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--orange);
            opacity: 0.7;
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            opacity: 0;
            animation: visualReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
        }

        @keyframes visualReveal {
            from {
                opacity: 0;
                transform: translateX(40px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .visual-frame {
            position: relative;
            padding: 3px;
            background: linear-gradient(135deg, var(--orange), rgba(201, 162, 39, 0.3), var(--orange));
            z-index: 1;
        }

        .visual-frame::before {
            content: '';
            position: absolute;
            inset: -20px;
            border: 1px solid rgba(201, 162, 39, 0.1);
            pointer-events: none;
            z-index: 1;
        }

        .visual-inner {
            position: relative;
            overflow: visible;
            background: var(--obsidian);
            z-index: 1;
        }

        .visual-inner img {
            width: 120%;
            height: auto;
            display: block;
            transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
            filter: saturate(1.1) contrast(1.05);
            position: relative;
            left: 50%;
            transform: translateX(-50%) scale(1.15);
            z-index: 10;
            bottom: 40px;
        }

        .visual-frame:hover .visual-inner img {
            transform: translateX(-50%) scale(1.15);
        }

        /* Cinematic overlay */
        .visual-inner::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, transparent 60%, var(--void) 100%),
                linear-gradient(90deg, var(--void) 0%, transparent 20%, transparent 80%, var(--void) 100%);
            pointer-events: none;
        }

        /* Floating data cards */
        .float-card {
            position: absolute;
            padding: 20px 28px;
            background: linear-gradient(135deg, rgba(8, 8, 26, 0.98), rgba(15, 15, 21, 0.95));
            backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 137, 41, 0.3);
            border-radius: 12px;
            animation: floatCard 6s ease-in-out infinite;
            z-index: 20;
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.6),
                0 0 20px rgba(255, 137, 41, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .float-card.top {
            top: -20px;
            right: -30px;
            animation-delay: 0s;
        }

        .float-card.bottom {
            bottom: 60px;
            left: -40px;
            animation-delay: -3s;
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0);
                box-shadow:
                    0 8px 32px rgba(0, 0, 0, 0.6),
                    0 0 20px rgba(255, 137, 41, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }

            50% {
                transform: translateY(-12px);
                box-shadow:
                    0 12px 40px rgba(0, 0, 0, 0.7),
                    0 0 30px rgba(255, 137, 41, 0.25),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }
        }

        .float-card-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.6rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 6px;
            opacity: 0.8;
        }

        .float-card-value {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .float-card-value.success {
            color: var(--success);
            text-shadow: 0 0 20px rgba(45, 212, 191, 0.4);
        }

        .float-card-value.gold {
            color: var(--orange);
            text-shadow: 0 0 20px rgba(255, 137, 41, 0.4);
        }

        /* ============================================
           TRUST METRICS
           ============================================ */

        .trust {
            padding: 100px 0;
            position: relative;
            border-top: 1px solid rgba(255, 137, 41, 0.1);
            border-bottom: 1px solid rgba(255, 137, 41, 0.1);
            background: linear-gradient(180deg, var(--abyss), var(--void));
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: linear-gradient(135deg, rgba(8, 8, 26, 0.8), rgba(15, 15, 21, 0.75));
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 137, 41, 0.15);
            box-shadow:
                0 10px 40px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(255, 137, 41, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            overflow: hidden;
        }

        .trust-item {
            padding: 56px 32px;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
        }

        .trust-item:hover {
            background: rgba(255, 137, 41, 0.05);
            transform: translateY(-4px);
        }

        .trust-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--orange), transparent);
            transition: width 0.4s ease;
            box-shadow: 0 0 15px var(--orange-glow);
        }

        .trust-item:hover::before {
            width: 80%;
        }

        .trust-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 25%;
            height: 50%;
            width: 1px;
            background: linear-gradient(180deg, transparent, rgba(255, 137, 41, 0.25), transparent);
        }

        .trust-number {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: clamp(2.8rem, 4vw, 3.8rem);
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 16px;
            line-height: 1;
            text-shadow:
                0 0 30px rgba(255, 137, 41, 0.5),
                0 0 60px rgba(255, 137, 41, 0.3);
            transition: all 0.4s ease;
        }

        .trust-item:hover .trust-number {
            text-shadow:
                0 0 40px rgba(255, 137, 41, 0.7),
                0 0 80px rgba(255, 137, 41, 0.5);
        }

        .trust-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.65rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--orange);
            opacity: 0.7;
            transition: opacity 0.4s ease;
        }

        .trust-item:hover .trust-label {
            opacity: 1;
        }

        /* ============================================
           PROBLEM SECTION
           ============================================ */

        .problem {
            padding: 180px 0;
            position: relative;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 120px;
            align-items: start;
        }

        .problem-sticky {
            position: sticky;
            top: 160px;
        }

        .problem h2 {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: clamp(2.5rem, 4vw, 3.8rem);
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 32px;
        }

        .problem h2 .danger {
            color: var(--orange);
            text-shadow: 0 0 40px rgba(255, 137, 41, 0.5);
        }

        .problem-intro {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.2rem;
            color: var(--pearl);
            line-height: 1.8;
        }

        .problem-cards {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .problem-card {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 40px;
            padding: 48px;
            background: linear-gradient(135deg, rgba(8, 8, 26, 0.85), rgba(10, 10, 15, 0.8));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 137, 41, 0.2);
            border-radius: 16px;
            position: relative;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(255, 137, 41, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.03);
        }

        .problem-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, transparent, var(--orange), transparent);
            border-radius: 16px 0 0 16px;
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.4s ease;
            box-shadow: 0 0 20px rgba(255, 137, 41, 0.5);
        }

        .problem-card:hover {
            border-color: rgba(255, 137, 41, 0.4);
            transform: translateX(12px);
            box-shadow:
                0 12px 48px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(255, 137, 41, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            background: linear-gradient(135deg, rgba(8, 8, 26, 0.95), rgba(10, 10, 15, 0.9));
        }

        .problem-card:hover::before {
            transform: scaleY(1);
        }

        .problem-number {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--orange);
            line-height: 1;
            opacity: 0.5;
            text-shadow:
                0 0 30px rgba(255, 137, 41, 0.4),
                0 0 60px rgba(255, 137, 41, 0.2);
            transition: all 0.4s ease;
        }

        .problem-card:hover .problem-number {
            opacity: 0.7;
            text-shadow:
                0 0 40px rgba(255, 137, 41, 0.6),
                0 0 80px rgba(255, 137, 41, 0.3);
        }

        .problem-card h3 {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--ivory);
            transition: color 0.4s ease;
        }

        .problem-card:hover h3 {
            color: var(--orange);
        }

        .problem-card p {
            font-size: 1.05rem;
            color: var(--silver);
            line-height: 1.8;
        }

        /* Transition statement */
        .problem-pivot {
            margin-top: 100px;
            padding: 80px;
            background: linear-gradient(135deg, rgba(255, 137, 41, 0.08), rgba(255, 137, 41, 0.03));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 137, 41, 0.2);
            border-radius: 20px;
            text-align: center;
            position: relative;
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(255, 137, 41, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .problem-pivot::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--orange), transparent);
            box-shadow: 0 0 20px var(--orange-glow);
        }

        .problem-pivot p {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.9rem;
            color: var(--pearl);
            line-height: 1.5;
        }

        .problem-pivot .highlight {
            display: block;
            margin-top: 16px;
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-weight: 600;
            color: var(--orange);
            text-shadow:
                0 0 30px rgba(255, 137, 41, 0.6),
                0 0 60px rgba(255, 137, 41, 0.4);
        }

        /* ============================================
           SOLUTION SECTION
           ============================================ */

        .solution {
            padding: 180px 0;
            position: relative;
            background: var(--abyss);
            border-top: 1px solid rgba(255, 137, 41, 0.1);
            border-bottom: 1px solid rgba(255, 137, 41, 0.1);
        }

        /* Background glow */
        .solution::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1000px;
            height: 800px;
            background: radial-gradient(ellipse, var(--orange-glow) 0%, transparent 50%);
            opacity: 0.2;
            pointer-events: none;
        }

        .solution-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 100px;
        }

        .solution-header h2 {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: clamp(2.5rem, 4vw, 3.8rem);
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 28px;
        }

        .solution-header h2 .glow {
            color: var(--orange);
            text-shadow:
                0 0 40px rgba(255, 137, 41, 0.6),
                0 0 80px rgba(255, 137, 41, 0.4),
                0 0 120px rgba(255, 137, 41, 0.2);
        }

        .solution-header p {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.25rem;
            color: var(--pearl);
            line-height: 1.8;
        }

        .pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .pillar {
            padding: 60px 48px;
            background: linear-gradient(135deg, rgba(8, 8, 26, 0.85), rgba(10, 10, 15, 0.8));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 137, 41, 0.2);
            border-radius: 20px;
            position: relative;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow:
                0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(255, 137, 41, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .pillar:hover {
            border-color: rgba(255, 137, 41, 0.6);
            transform: translateY(-8px);
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(255, 137, 41, 0.2),
                inset 0 2px 0 rgba(255, 137, 41, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .pillar-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(255, 137, 41, 0.15), rgba(255, 137, 41, 0.05));
            border: 1px solid rgba(255, 137, 41, 0.25);
            border-radius: 16px;
            transition: all 0.4s ease;
            box-shadow: 0 0 20px rgba(255, 137, 41, 0.1);
        }

        .pillar:hover .pillar-icon {
            background: linear-gradient(135deg, rgba(255, 137, 41, 0.25), rgba(255, 137, 41, 0.1));
            box-shadow: 0 0 30px rgba(255, 137, 41, 0.3);
            transform: scale(1.05);
        }

        .pillar-icon svg {
            width: 36px;
            height: 36px;
            color: var(--orange);
            filter: drop-shadow(0 0 8px rgba(255, 137, 41, 0.4));
        }

        .pillar h3 {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--ivory);
            transition: color 0.4s ease;
        }

        .pillar:hover h3 {
            color: var(--orange);
        }

        .pillar p {
            font-size: 1.05rem;
            color: var(--silver);
            line-height: 1.85;
        }

        /* ============================================
           PROCESS SECTION
           ============================================ */

        .process {
            padding: 180px 0;
            position: relative;
        }

        .process-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 120px;
        }

        .process-header h2 {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: clamp(2.5rem, 4vw, 3.8rem);
            font-weight: 400;
            margin-bottom: 24px;
        }

        .process-header h2 .glow {
            color: var(--orange);
        }

        .process-header p {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.2rem;
            color: var(--pearl);
        }

        .steps-wrapper {
            position: relative;
        }

        /* Connecting line */
        .steps-line {
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(201, 162, 39, 0.15) 10%,
                    var(--orange) 50%,
                    rgba(201, 162, 39, 0.15) 90%,
                    transparent);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-orb {
            width: 160px;
            height: 160px;
            margin: 0 auto 48px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Outer ring */
        .step-orb::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(201, 162, 39, 0.2);
            border-radius: 50%;
            transition: all 0.5s ease;
        }

        /* Inner ring */
        .step-orb::after {
            content: '';
            position: absolute;
            inset: 20px;
            border: 1px solid rgba(201, 162, 39, 0.15);
            border-radius: 50%;
            transition: all 0.5s ease;
        }

        .step:hover .step-orb::before {
            border-color: var(--orange);
            box-shadow: 0 0 60px var(--orange-glow);
        }

        .step:hover .step-orb::after {
            border-color: var(--orange);
        }

        .step-number {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 3.5rem;
            font-weight: 400;
            color: var(--orange);
            line-height: 1;
        }

        .step h3 {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .step p {
            font-size: 1.05rem;
            color: var(--silver);
            max-width: 300px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .step-tag {
            display: inline-block;
            margin-top: 28px;
            padding: 12px 24px;
            background: rgba(45, 212, 191, 0.08);
            border: 1px solid rgba(45, 212, 191, 0.2);
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.6rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--success);
        }

        /* ============================================
           ASSETS SECTION
           ============================================ */

        .assets {
            padding: 180px 0;
            background: var(--abyss);
            border-top: 1px solid rgba(201, 162, 39, 0.1);
            border-bottom: 1px solid rgba(201, 162, 39, 0.1);
        }

        .assets-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 100px;
        }

        .assets-header h2 {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: clamp(2.5rem, 4vw, 3.8rem);
            font-weight: 400;
            margin-bottom: 24px;
        }

        .assets-header h2 .glow {
            color: var(--orange);
        }

        .assets-header p {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.2rem;
            color: var(--pearl);
        }

        .assets-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            overflow: visible;
        }

        .asset-card {
            background: var(--midnight);
            border: 1px solid rgba(255, 137, 41, 0.15);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            overflow: visible;
        }

        .asset-card:hover {
            border-color: rgba(255, 137, 41, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .asset-media {
            height: 280px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--obsidian);
        }

        .asset-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: all 0.8s ease;
            filter: saturate(1.05);
            transform: scale(0.85);
            opacity: 0.64;
        }

        .asset-card:hover .asset-media img {
            transform: scale(0.95);
            opacity: 1;
        }

        .asset-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, var(--midnight) 100%);
        }

        .asset-body {
            padding: 40px 40px 80px 40px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            overflow: visible;
        }

        .asset-link-wrapper {
            margin-top: auto;
            margin-bottom: -40px;
            position: relative;
            width: 100%;
        }

        .asset-link-wrapper::before {
            content: '';
            position: absolute;
            inset: -8px;
            background: rgba(45, 212, 191, 0.25);
            border-radius: 50px;
            filter: blur(15px);
            transition: all 0.4s ease;
            pointer-events: none;
            opacity: 0;
        }

        .asset-link-wrapper:hover::before {
            filter: blur(18px);
            inset: -10px;
            opacity: 1;
        }

        .asset-category {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(255, 137, 41, 0.12);
            border: 1px solid rgba(255, 137, 41, 0.25);
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.6rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 20px;
            width: fit-content;
        }

        .asset-body h3 {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--ivory);
        }

        .asset-body p {
            font-size: 1rem;
            color: var(--silver);
            line-height: 1.75;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .asset-yield {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 36px;
        }

        .asset-yield-value {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.6rem;
            font-weight: 500;
            color: var(--success);
        }

        .asset-yield-period {
            font-size: 0.95rem;
            color: var(--slate);
        }

        .asset-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--void);
            background: linear-gradient(135deg, var(--orange-bright), var(--orange));
            padding: 16px 32px;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0% 50%);
            z-index: 1;
            width: 100%;
        }

        .asset-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--success);
            opacity: 0;
            transition: opacity 0.4s ease;
            clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0% 50%);
            z-index: 1;
        }

        .asset-link:hover::before {
            opacity: 1;
        }

        .asset-link:hover {
            box-shadow:
                inset 0 2px 0 rgba(255, 255, 255, 0.4),
                inset 0 0 20px rgba(45, 212, 191, 0.2);
        }

        .asset-link span,
        .asset-link svg {
            position: relative;
            z-index: 2;
            color: var(--void);
        }

        .asset-link:hover span,
        .asset-link:hover svg {
            color: var(--void);
        }

        .asset-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .asset-link:hover svg {
            transform: translateX(4px);
        }

        /* ============================================
           TESTIMONIALS
           ============================================ */

        .testimonials {
            padding: 180px 0;
            position: relative;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 100px;
        }

        .testimonials-header h2 {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: clamp(2.5rem, 4vw, 3.8rem);
            font-weight: 400;
        }

        .testimonials-header h2 .glow {
            color: var(--orange);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .testimonial {
            padding: 48px;
            background: linear-gradient(180deg, var(--obsidian), var(--abyss));
            border: 1px solid rgba(255, 137, 41, 0.15);
            position: relative;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .testimonial::before {
            content: '';
            position: absolute;
            top: 0;
            left: 40px;
            width: 32px;
            height: 32px;
            background: var(--orange);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            opacity: 0.2;
            transition: all 0.4s ease;
        }

        .testimonial:hover {
            border-color: rgba(255, 137, 41, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .testimonial:hover::before {
            opacity: 0.4;
        }

        .testimonial-stars {
            font-size: 1rem;
            color: var(--orange);
            letter-spacing: 6px;
            margin-bottom: 32px;
        }

        .testimonial-text {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.05rem;
            color: var(--pearl);
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange-bright), var(--orange));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--void);
            flex-shrink: 0;
        }

        .author-info h4 {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .author-info span {
            font-size: 0.9rem;
            color: var(--slate);
        }

        /* ============================================
           FAQ SECTION
           ============================================ */

        .faq {
            padding: 180px 0;
            background: var(--abyss);
            border-top: 1px solid rgba(201, 162, 39, 0.1);
            border-bottom: 1px solid rgba(201, 162, 39, 0.1);
        }

        .faq-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .faq-header h2 {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: clamp(2.5rem, 4vw, 3.8rem);
            font-weight: 400;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(201, 162, 39, 0.1);
        }

        .faq-item:first-child {
            border-top: 1px solid rgba(201, 162, 39, 0.1);
        }

        .faq-question {
            padding: 36px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            padding-left: 20px;
        }

        .faq-question span {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.25rem;
            font-weight: 500;
        }

        .faq-toggle {
            width: 48px;
            height: 48px;
            background: rgba(201, 162, 39, 0.1);
            border: 1px solid rgba(201, 162, 39, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--orange);
            font-size: 1.5rem;
            font-weight: 300;
            transition: all 0.4s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
            background: var(--orange);
            color: var(--void);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .faq-item.active .faq-answer {
            max-height: 400px;
        }

        .faq-answer-inner {
            padding-bottom: 36px;
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.1rem;
            color: var(--silver);
            line-height: 1.9;
        }

        /* ============================================
           FINAL CTA
           ============================================ */

        .finale {
            padding: 240px 0;
            position: relative;
            text-align: center;
            overflow: visible;
        }

        /* Dramatic background glow */
        .finale::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1200px;
            height: 1000px;
            background: radial-gradient(ellipse, var(--orange-glow) 0%, transparent 45%);
            opacity: 0.2;
            pointer-events: none;
        }

        /* Decorative frame */
        .finale-frame {
            position: absolute;
            top: 100px;
            left: 50%;
            transform: translateX(-50%);
            width: min(85%, 1100px);
            height: calc(100% - 200px);
            border: 1px solid rgba(201, 162, 39, 0.15);
            pointer-events: none;
        }

        .finale-frame .corner-ornament {
            width: 60px;
            height: 60px;
        }

        .finale-content {
            position: relative;
            z-index: 10;
            max-width: 850px;
            margin: 0 auto;
            overflow: visible;
        }

        .finale h2 {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: clamp(3rem, 5.5vw, 5rem);
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 36px;
        }

        .finale h2 .glow {
            display: block;
            color: var(--orange);
            text-shadow: 0 0 100px var(--orange-glow);
        }

        .finale p {
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.35rem;
            color: var(--pearl);
            margin-bottom: 60px;
            line-height: 1.8;
        }

        .finale-btn-wrapper {
            display: inline-block;
            position: relative;
        }

        .finale-btn-wrapper::before {
            content: '';
            position: absolute;
            inset: -10px;
            background: rgba(45, 212, 191, 0.25);
            border-radius: 50px;
            filter: blur(15px);
            transition: all 0.4s ease;
            pointer-events: none;
            opacity: 0;
        }

        .finale-btn-wrapper:hover::before {
            filter: blur(18px);
            inset: -12px;
            opacity: 1;
        }

        .finale .btn-royal.primary {
            font-size: 0.9rem;
            padding: 26px 72px;
            display: block;
            margin: 0 auto;
        }

        .scarcity-notice {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin: 48px auto 0;
            padding: 20px 32px;
            background: rgba(8, 8, 26, 0.8);
            border: 1px solid rgba(255, 137, 41, 0.15);
            width: fit-content;
        }

        .scarcity-notice svg {
            width: 20px;
            height: 20px;
            color: var(--orange);
            animation: clockPulse 2s ease-in-out infinite;
        }

        @keyframes clockPulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.4;
            }
        }

        .scarcity-notice span {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            letter-spacing: 0.08em;
            color: var(--slate);
        }

        /* ============================================
           SCROLL TO TOP BUTTON
           ============================================ */

        .scroll-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 80px;
            height: 80px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-4px);
        }

        .scroll-top img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            opacity: 0.64;
            transition: opacity 0.4s ease;
        }

        .scroll-top:hover img {
            opacity: 1;
        }

        /* ============================================
           FOOTER
           ============================================ */

        footer {
            padding: 140px 0 80px;
            border-top: 1px solid rgba(201, 162, 39, 0.1);
            background: var(--abyss);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr repeat(3, 1fr);
            gap: 80px;
            margin-bottom: 100px;
        }

        .footer-brand img {
            height: 80px;
            margin-bottom: 28px;
            filter: drop-shadow(0 0 30px var(--orange-glow));
        }

        .footer-brand p {
            font-size: 1rem;
            color: var(--slate);
            max-width: 320px;
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .footer-col h4 {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.6rem;
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 32px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 16px;
        }

        .footer-col a {
            font-size: 1rem;
            color: var(--silver);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-col a:hover {
            color: var(--orange);
            padding-left: 10px;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 60px;
            border-top: 1px solid rgba(201, 162, 39, 0.1);
        }

        .footer-copy {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            color: var(--slate);
        }

        .footer-socials {
            display: flex;
            gap: 16px;
        }

        .footer-socials a {
            width: 52px;
            height: 52px;
            background: var(--midnight);
            border: 1px solid rgba(201, 162, 39, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--silver);
            text-decoration: none;
            transition: all 0.4s ease;
        }

        .footer-socials a:hover {
            border-color: var(--orange);
            color: var(--orange);
            transform: translateY(-4px);
        }

        .footer-socials a svg {
            width: 20px;
            height: 20px;
        }

        /* ============================================
           SCROLL ANIMATIONS
           ============================================ */

        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */

        @media (max-width: 1200px) {
            .hero-layout {
                gap: 60px;
            }

            .problem-grid {
                gap: 80px;
            }
        }

        @media (max-width: 1024px) {
            .hero-layout {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .hero-visual {
                order: -1;
                max-width: 600px;
                margin: 0 auto;
            }

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

            .protocol-badge,
            .yield-promise,
            .hero-actions {
                justify-content: center;
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-border {
                display: none;
            }

            .float-card {
                display: none;
            }

            .problem-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .problem-sticky {
                position: static;
                text-align: center;
            }

            .pillars {
                grid-template-columns: 1fr;
            }

            .steps {
                grid-template-columns: 1fr;
                gap: 80px;
            }

            .steps-line {
                display: none;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 60px;
            }
        }

        @media (max-width: 900px) {
            .assets-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav {
                padding: 14px 0;
            }

            .nav.scrolled {
                padding: 10px 0;
            }

            .nav-logo {
                height: 58px;
            }

            .nav-cta {
                font-size: 0.68rem;
                padding: 13px 22px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .nav .container {
                padding: 0 20px;
                max-width: 100%;
            }

            .nav-btn-wrapper::before {
                inset: -20px;
            }

            .nav-inner {
                width: 100%;
                max-width: 100%;
            }

            /* Hero Section */
            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-subtitle {
                font-size: 1.05rem;
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .assets-grid {
                grid-template-columns: 1fr;
            }

            .trust-item:nth-child(2)::after {
                display: none;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .stat:not(:last-child)::after {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                text-align: center;
            }

            /* Scroll to Top Button */
            .scroll-top {
                width: 70px;
                height: 70px;
                bottom: 30px;
                right: 30px;
            }
        }

        @media (max-width: 480px) {
            .nav {
                padding: 10px 0;
            }

            .nav.scrolled {
                padding: 8px 0;
            }

            .nav-inner {
                gap: 12px;
                width: 100%;
                max-width: 100%;
                overflow: hidden;
            }

            .nav-logo {
                height: 42px;
                flex-shrink: 0;
                max-width: 40%;
                object-fit: contain;
            }

            .nav-cta {
                font-size: 0.58rem;
                padding: 10px 18px;
                white-space: nowrap;
                letter-spacing: 0.05em;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
            }

            .nav-cta span {
                line-height: 1;
            }

            .nav .container {
                padding: 0 14px;
                max-width: 100%;
            }

            .nav-btn-wrapper {
                flex-shrink: 0;
                max-width: 50%;
            }

            .nav-btn-wrapper::before {
                display: none;
            }

            .nav-logo {
                filter: drop-shadow(0 0 12px var(--orange-glow));
            }

            .nav-announcement-text {
                font-size: 0.55rem;
                padding: 0 6px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .btn-royal {
                width: 100%;
            }

            /* Hero Section */
            .hero {
                padding: 140px 0 80px;
            }

            .hero-eyebrow {
                font-size: 0.65rem;
                padding: 6px 14px;
            }

            .hero h1 {
                font-size: 2rem;
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 0.95rem;
                max-width: 100%;
            }

            .protocol-badge {
                font-size: 0.7rem;
                padding: 8px 16px;
                gap: 8px;
            }

            .yield-promise {
                font-size: 0.85rem;
                gap: 8px;
            }

            .yield-promise .value {
                font-size: 1.8rem;
            }

            .hero-visual {
                max-width: 100%;
            }

            .visual-inner img {
                max-width: 280px;
            }

            /* Trust Metrics */
            .trust {
                padding: 60px 0;
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .trust-item {
                padding: 28px 20px;
            }

            .trust-value {
                font-size: 1.6rem;
            }

            .trust-label {
                font-size: 0.7rem;
            }

            .trust-item::after {
                display: none !important;
            }

            /* Problem Section */
            .problem {
                padding: 80px 0;
            }

            .problem h2 {
                font-size: 2rem;
            }

            .problem-sticky h2 {
                margin-bottom: 24px;
            }

            .problem-sticky .section-label {
                font-size: 0.65rem;
            }

            .problem-point h3 {
                font-size: 1.3rem;
            }

            .problem-point p {
                font-size: 0.95rem;
            }

            .problem-icon {
                width: 48px;
                height: 48px;
                font-size: 1.3rem;
            }

            .problem-card {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 32px 24px;
                text-align: center;
            }

            .problem-number {
                font-size: 3rem;
                justify-self: center;
            }

            .problem-card h3 {
                font-size: 1.3rem;
            }

            .problem-card p {
                font-size: 0.95rem;
            }

            .problem-pivot {
                margin-top: 60px;
                padding: 40px 24px;
            }

            .problem-pivot p {
                font-size: 1.3rem;
            }

            /* Solution/Advantage Section */
            .solution {
                padding: 80px 0;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-label {
                font-size: 0.65rem;
                padding: 6px 14px;
            }

            .pillar {
                padding: 36px 24px;
            }

            .pillar-header .icon {
                width: 56px;
                height: 56px;
                font-size: 1.6rem;
            }

            .pillar h3 {
                font-size: 1.4rem;
            }

            .pillar p {
                font-size: 0.95rem;
            }

            /* Process/3 Steps Section */
            .process {
                padding: 80px 0;
            }

            .process-header h2 {
                font-size: 2rem;
            }

            .process-header p {
                font-size: 0.95rem;
            }

            .step {
                padding: 36px 24px;
            }

            .step-orb {
                width: 110px;
                height: 110px;
                margin: 0 auto 32px;
            }

            .step-orb::after {
                inset: 14px;
            }

            .step-number {
                font-size: 2.2rem;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 1;
            }

            .step h3 {
                font-size: 1.4rem;
            }

            .step p {
                font-size: 0.95rem;
            }

            /* Asset Cards Section */
            .assets {
                padding: 80px 0;
            }

            .assets-header h2 {
                font-size: 2rem;
            }

            .asset-card {
                padding: 0;
            }

            .asset-body {
                padding: 28px 24px 60px 24px;
            }

            .asset-link-wrapper {
                margin-bottom: -20px;
            }

            .asset-category {
                font-size: 0.65rem;
                padding: 6px 12px;
            }

            .asset-card h3 {
                font-size: 1.4rem;
            }

            .asset-card p {
                font-size: 0.95rem;
            }

            .asset-yield .value {
                font-size: 1.6rem;
            }

            .asset-yield .unit {
                font-size: 0.75rem;
            }

            .asset-link {
                font-size: 0.7rem;
                padding: 14px 24px;
            }

            /* Testimonials Section */
            .testimonials {
                padding: 80px 0;
            }

            .testimonials-header h2 {
                font-size: 2rem;
            }

            .testimonial {
                padding: 32px 24px;
            }

            .testimonial-text {
                font-size: 1rem;
            }

            .author-name {
                font-size: 0.95rem;
            }

            .author-role {
                font-size: 0.8rem;
            }

            .author-avatar {
                width: 48px;
                height: 48px;
                font-size: 1.2rem;
            }

            /* FAQ Section */
            .faq {
                padding: 80px 0;
            }

            .faq-header h2 {
                font-size: 2rem;
            }

            .faq-question {
                padding: 24px 20px;
                font-size: 1rem;
            }

            .faq-answer-inner {
                padding: 20px;
                font-size: 0.95rem;
            }

            .faq-toggle {
                width: 32px;
                height: 32px;
                font-size: 1.5rem;
            }

            /* Finale CTA Section */
            .finale {
                padding: 120px 0 100px 0;
            }

            .finale-content .section-label {
                margin-bottom: 24px;
            }

            .finale-content h2 {
                font-size: 2rem;
            }

            .finale-content p {
                font-size: 0.95rem;
            }

            .finale-content .btn-royal {
                font-size: 0.7rem;
                padding: 14px 28px;
            }

            .finale .btn-royal.primary {
                font-size: 0.7rem;
                padding: 14px 32px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
            }

            .finale .btn-royal.primary svg {
                width: 16px;
                height: 16px;
            }

            .scarcity-notice {
                font-size: 0.8rem;
                gap: 8px;
            }

            .scarcity-notice svg {
                width: 18px;
                height: 18px;
            }

            /* Footer */
            footer {
                padding: 80px 0 40px;
            }

            .footer-brand img {
                max-width: 120px;
            }

            .footer-brand p {
                font-size: 0.85rem;
            }

            .footer-col h4 {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }

            .footer-col a {
                font-size: 0.85rem;
            }

            .footer-bottom {
                padding-top: 32px;
                font-size: 0.8rem;
            }

            .footer-socials a {
                width: 40px;
                height: 40px;
            }

            .footer-socials a svg {
                width: 16px;
                height: 16px;
            }

            /* Scroll to Top Button */
            .scroll-top {
                width: 60px;
                height: 60px;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 360px) {
            .nav {
                padding: 8px 0;
            }

            .nav-inner {
                gap: 8px;
                width: 100%;
                max-width: 100%;
                overflow: hidden;
            }

            .nav-logo {
                height: 35px;
                max-width: 40%;
                object-fit: contain;
            }

            .nav-cta {
                font-size: 0.52rem;
                padding: 8px 14px;
                letter-spacing: 0.03em;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 5px;
            }

            .nav .container {
                padding: 0 10px;
                max-width: 100%;
            }

            .nav-btn-wrapper {
                max-width: 50%;
            }
        }