/* ============================================
           AFTMF® ULTIMATE INSTITUTIONAL
           Premium Banking-Grade + Maximum Visual Impact
           ============================================ */
        
        :root {
            /* Luxurious Gold Palette */
            --gold-50: #fdfaf3;
            --gold-100: #fbf4e1;
            --gold-200: #f6e5b8;
            --gold-300: #f0d085;
            --gold-primary: #c9a227;
            --gold-light: #dbb842;
            --gold-bright: #ffe566;
            --gold-dark: #a68a1a;
            --gold-deep: #8b7315;
            --gold-muted: rgba(201, 162, 39, 0.15);
            --gold-glow: rgba(201, 162, 39, 0.5);
            --gold-intense: rgba(201, 162, 39, 0.7);
            
            /* Accent Palette */
            --emerald: #10b981;
            --emerald-light: #34d399;
            --emerald-bright: #00ffcc;
            --emerald-muted: rgba(16, 185, 129, 0.15);
            --emerald-glow: rgba(16, 185, 129, 0.4);
            
            --sapphire: #2563eb;
            --sapphire-light: #3b82f6;
            --sapphire-bright: #60a5fa;
            --sapphire-muted: rgba(37, 99, 235, 0.15);
            --sapphire-glow: rgba(59, 130, 246, 0.4);
            
            --crimson: #dc2626;
            --crimson-muted: rgba(220, 38, 38, 0.15);
            
            /* Ultra Deep Dark Palette */
            --bg-void: #020304;
            --bg-abyss: #030406;
            --bg-deep: #050709;
            --bg-primary: #080a0d;
            --bg-secondary: #0c0f14;
            --bg-tertiary: #10141a;
            --bg-elevated: #161b24;
            --bg-card: rgba(16, 20, 26, 0.85);
            --bg-card-solid: #12161d;
            --bg-glass: rgba(12, 15, 20, 0.8);
            
            /* Typography Colors */
            --ink-white: #fafafa;
            --ink-primary: #e4e4e7;
            --ink-secondary: #a1a1aa;
            --ink-muted: #71717a;
            --ink-dim: #52525b;
            --ink-faint: #3f3f46;
            
            /* Typography System */
            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
            
            /* Container */
            --container-max: 1200px;
            --container-wide: 1000px;
            
            /* Animation */
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-back: cubic-bezier(0.34, 1.3, 0.64, 1);
            --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
            
            /* Border Radius */
            --radius-sm: 10px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --radius-2xl: 36px;
            --radius-full: 9999px;
            
            /* Borders */
            --border-subtle: rgba(255, 255, 255, 0.04);
            --border-light: rgba(255, 255, 255, 0.07);
            --border-medium: rgba(255, 255, 255, 0.1);
            --border-gold: rgba(201, 162, 39, 0.25);
            --border-gold-strong: rgba(201, 162, 39, 0.5);
            
            /* Premium Shadows */
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
            --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5), 0 8px 20px rgba(0, 0, 0, 0.35);
            --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.6), 0 15px 35px rgba(0, 0, 0, 0.4);
            --shadow-gold: 0 8px 40px rgba(201, 162, 39, 0.2), 0 4px 15px rgba(201, 162, 39, 0.12);
            --shadow-gold-lg: 0 20px 60px rgba(201, 162, 39, 0.25), 0 8px 25px rgba(201, 162, 39, 0.15);
            --shadow-gold-intense: 0 0 80px rgba(201, 162, 39, 0.35), 0 0 30px rgba(201, 162, 39, 0.25);
            --shadow-emerald: 0 8px 40px rgba(16, 185, 129, 0.15);
            --shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }
        
        /* ============================================
           RESET & BASE
           ============================================ */
        
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }
        
        body {
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.7;
            color: var(--ink-primary);
            background: var(--bg-void);
            overflow-x: hidden;
            letter-spacing: -0.01em;
        }
        
        ::selection {
            background: var(--gold-primary);
            color: var(--bg-void);
        }
        
        /* ============================================
           PARTICLE CANVAS
           ============================================ */
        
        #particles-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            opacity: 0.7;
        }
        
        /* ============================================
           AMBIENT BACKGROUND
           ============================================ */
        
        .ambient-bg {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }
        
        .ambient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            animation: orbFloat 15s ease-in-out infinite;
        }
        
        .ambient-orb--1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
            top: -5%;
            right: -5%;
            animation-delay: 0s;
        }
        
        .ambient-orb--2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--emerald-glow) 0%, transparent 70%);
            bottom: -10%;
            left: -5%;
            animation-delay: -5s;
        }
        
        .ambient-orb--3 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, var(--sapphire-glow) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -10s;
        }
        
        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
            25% { transform: translate(40px, -30px) scale(1.08); opacity: 0.7; }
            50% { transform: translate(-30px, 40px) scale(0.95); opacity: 0.6; }
            75% { transform: translate(30px, 30px) scale(1.05); opacity: 0.5; }
        }
        
        /* Pulsing Grid Pattern */
        .ambient-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(201, 162, 39, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(201, 162, 39, 0.025) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 70%);
            animation: gridPulse 6s ease-in-out infinite;
        }
        
        @keyframes gridPulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 1; }
        }
        
        /* ============================================
           NAVIGATION — PREMIUM
           ============================================ */
        
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 48px;
            transition: all 0.5s var(--ease-out-expo);
        }
        
        .nav.scrolled {
            padding: 14px 48px;
            background: rgba(2, 3, 4, 0.92);
            backdrop-filter: blur(30px) saturate(200%);
            -webkit-backdrop-filter: blur(30px) saturate(200%);
            border-bottom: 1px solid rgba(201, 162, 39, 0.1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }
        
        .nav-inner {
            max-width: var(--container-max);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s var(--ease-out-expo);
        }
        
        .nav-logo:hover {
            transform: translateY(-2px);
        }
        
        .logo-mark {
            width: 46px;
            height: 46px;
            background: linear-gradient(145deg, var(--gold-bright), var(--gold-light), var(--gold-primary), var(--gold-dark));
            border-radius: var(--radius-sm);
            display: grid;
            place-items: center;
            position: relative;
            box-shadow: var(--shadow-gold-lg), var(--shadow-inner);
            overflow: hidden;
        }
        
        .logo-mark::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
            animation: shimmer 2.5s ease-in-out infinite;
        }
        
        .logo-mark::after {
            content: '';
            position: absolute;
            inset: 1px;
            border-radius: calc(var(--radius-sm) - 1px);
            background: linear-gradient(145deg, rgba(255,255,255,0.25) 0%, transparent 50%);
        }
        
        @keyframes shimmer {
            0%, 100% { transform: translateX(-120%) rotate(45deg); }
            50% { transform: translateX(120%) rotate(45deg); }
        }
        
        .logo-mark svg {
            position: relative;
            z-index: 2;
            color: var(--bg-void);
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .logo-name {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--ink-white);
            letter-spacing: -0.02em;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .logo-name sup {
            font-size: 0.5em;
            color: var(--gold-primary);
            text-shadow: 0 0 15px var(--gold-glow);
        }
        
        .logo-tag {
            font-family: var(--font-mono);
            font-size: 0.5625rem;
            font-weight: 500;
            color: var(--ink-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        
        .nav-link {
            font-size: 0.8125rem;
            font-weight: 500;
            color: var(--ink-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding: 6px 0;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
            transition: all 0.4s var(--ease-out-expo);
            transform: translateX(-50%);
        }
        
        .nav-link:hover {
            color: var(--ink-white);
            text-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            padding: 11px 26px;
            background: linear-gradient(145deg, var(--gold-bright), var(--gold-light), var(--gold-primary));
            color: var(--bg-void);
            font-weight: 700;
            font-size: 0.8125rem;
            text-decoration: none;
            border-radius: var(--radius-full);
            transition: all 0.4s var(--ease-out-expo);
            box-shadow: var(--shadow-gold-lg), inset 0 1px 0 rgba(255,255,255,0.3);
            position: relative;
            overflow: hidden;
        }
        
        .nav-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .nav-cta:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: var(--shadow-gold-intense);
        }
        
        .nav-cta:hover::before {
            transform: translateX(100%);
        }
        
        @media (max-width: 900px) {
            .nav { padding: 16px 24px; }
            .nav-links { display: none; }
        }
        
        /* ============================================
           HERO — MAXIMUM IMPACT
           ============================================ */
        
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 48px 120px;
            position: relative;
        }
        
        @media (max-width: 900px) {
            .hero { padding: 120px 24px 80px; }
        }
        
        .hero-inner {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        @media (max-width: 1000px) {
            .hero-inner { 
                grid-template-columns: 1fr; 
                gap: 60px; 
                text-align: center; 
            }
        }
        
        .hero-content {
            animation: heroFadeUp 1s var(--ease-out-expo) both;
        }
        
        @keyframes heroFadeUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Hero Badges - Enhanced Glow */
        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }
        
        @media (max-width: 1000px) {
            .hero-badges { justify-content: center; }
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-full);
            backdrop-filter: blur(10px);
            transition: all 0.4s var(--ease-out-expo);
            animation: badgeGlow 4s ease-in-out infinite;
        }
        
        .hero-badge:hover {
            transform: translateY(-2px);
            border-color: var(--border-gold-strong);
            box-shadow: var(--shadow-gold);
        }
        
        @keyframes badgeGlow {
            0%, 100% { box-shadow: 0 0 0 rgba(201, 162, 39, 0); }
            50% { box-shadow: 0 0 25px rgba(201, 162, 39, 0.15); }
        }
        
        .hero-badge--emerald {
            border-color: rgba(16, 185, 129, 0.25);
            animation-name: badgeGlowEmerald;
        }
        
        @keyframes badgeGlowEmerald {
            0%, 100% { box-shadow: 0 0 0 rgba(16, 185, 129, 0); }
            50% { box-shadow: 0 0 25px rgba(16, 185, 129, 0.15); }
        }
        
        .hero-badge--sapphire {
            border-color: rgba(59, 130, 246, 0.25);
            animation-name: badgeGlowSapphire;
        }
        
        @keyframes badgeGlowSapphire {
            0%, 100% { box-shadow: 0 0 0 rgba(59, 130, 246, 0); }
            50% { box-shadow: 0 0 25px rgba(59, 130, 246, 0.15); }
        }
        
        .hero-badge-dot {
            width: 7px;
            height: 7px;
            background: var(--gold-primary);
            border-radius: 50%;
            box-shadow: 0 0 12px var(--gold-glow);
            animation: pulseDot 2s ease-in-out infinite;
        }
        
        @keyframes pulseDot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.3); }
        }
        
        .hero-badge--emerald .hero-badge-dot { 
            background: var(--emerald); 
            box-shadow: 0 0 12px var(--emerald-glow);
        }
        
        .hero-badge--sapphire .hero-badge-dot { 
            background: var(--sapphire-bright); 
            box-shadow: 0 0 12px var(--sapphire-glow);
        }
        
        .hero-badge-text {
            font-family: var(--font-mono);
            font-size: 0.5625rem;
            font-weight: 600;
            color: var(--gold-primary);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        
        .hero-badge--emerald .hero-badge-text { color: var(--emerald); }
        .hero-badge--sapphire .hero-badge-text { color: var(--sapphire-bright); }
        
        .hero-partnership {
            font-family: var(--font-mono);
            font-size: 0.6875rem;
            color: var(--ink-dim);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
        }
        
        .hero-partnership a {
            color: var(--ink-muted);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .hero-partnership a:hover {
            color: var(--gold-primary);
            text-shadow: 0 0 20px var(--gold-glow);
        }
        
        /* Hero Title - Gradient Text */
        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 3.75rem);
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 20px;
            color: var(--ink-white);
        }
        
        .hero-title .gold {
            background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-light) 25%, var(--gold-primary) 50%, var(--gold-dark) 75%, var(--gold-deep) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 4px 20px var(--gold-glow));
        }
        
        .hero-title sup {
            font-size: 0.35em;
            vertical-align: super;
            -webkit-text-fill-color: var(--gold-primary);
        }
        
        .hero-tagline {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 400;
            font-style: italic;
            color: var(--ink-secondary);
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.0625rem;
            font-weight: 400;
            color: var(--ink-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
            max-width: 540px;
        }
        
        @media (max-width: 1000px) {
            .hero-subtitle { margin-left: auto; margin-right: auto; }
        }
        
        .hero-note {
            font-size: 0.8125rem;
            color: var(--ink-muted);
            line-height: 1.75;
            max-width: 540px;
            margin-bottom: 36px;
            padding: 16px 20px;
            background: rgba(201, 162, 39, 0.06);
            border-left: 3px solid var(--gold-primary);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        }
        
        .hero-note strong {
            color: var(--gold-primary);
            font-weight: 600;
        }
        
        @media (max-width: 1000px) {
            .hero-note { margin-left: auto; margin-right: auto; }
        }
        
        /* Hero Stats - 2px Gold Gradient Border */
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
            margin-bottom: 40px;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            border-radius: var(--radius-xl);
            padding: 2px;
            box-shadow: var(--shadow-gold-lg), var(--shadow-inner);
        }
        
        @media (max-width: 700px) {
            .hero-stats { grid-template-columns: repeat(2, 1fr); }
        }
        
        .hero-stat {
            text-align: center;
            padding: 24px 16px;
            background: var(--bg-card-solid);
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }
        
        .hero-stat:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
        .hero-stat:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
        
        @media (max-width: 700px) {
            .hero-stat:first-child { border-radius: var(--radius-lg) 0 0 0; }
            .hero-stat:nth-child(2) { border-radius: 0 var(--radius-lg) 0 0; }
            .hero-stat:nth-child(3) { border-radius: 0 0 0 var(--radius-lg); }
            .hero-stat:last-child { border-radius: 0 0 var(--radius-lg) 0; }
        }
        
        .hero-stat::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .hero-stat:hover {
            background: var(--bg-elevated);
        }
        
        .hero-stat:hover::before {
            opacity: 1;
        }
        
        .hero-stat-value {
            font-family: var(--font-mono);
            font-size: 1.625rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 4px;
            letter-spacing: -0.02em;
            filter: drop-shadow(0 2px 8px var(--gold-glow));
        }
        
        .hero-stat-label {
            font-size: 0.625rem;
            font-weight: 600;
            color: var(--ink-muted);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        
        /* Hero Buttons - Premium Shine */
        .hero-buttons {
            display: flex;
            gap: 14px;
        }
        
        @media (max-width: 1000px) {
            .hero-buttons { justify-content: center; }
        }
        
        @media (max-width: 500px) {
            .hero-buttons { flex-direction: column; }
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 30px;
            font-weight: 700;
            font-size: 0.875rem;
            text-decoration: none;
            border-radius: var(--radius-md);
            transition: all 0.4s var(--ease-out-expo);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary {
            background: linear-gradient(145deg, var(--gold-bright), var(--gold-light), var(--gold-primary));
            color: var(--bg-void);
            box-shadow: var(--shadow-gold-lg), inset 0 1px 0 rgba(255,255,255,0.3);
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
            transform: translateX(-100%);
            transition: transform 0.7s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: var(--shadow-gold-intense);
        }
        
        .btn-primary:hover::before {
            transform: translateX(100%);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--ink-primary);
            border: 2px solid var(--border-medium);
            backdrop-filter: blur(10px);
        }
        
        .btn-secondary:hover {
            border-color: var(--gold-primary);
            color: var(--gold-primary);
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(201, 162, 39, 0.15);
        }
        
        /* Hero Visual - Premium 3D Coin */
        .hero-visual {
            animation: heroFadeUp 1s var(--ease-out-expo) 0.3s both;
        }
        
        @media (max-width: 1000px) {
            .hero-visual { max-width: 380px; margin: 0 auto; }
        }
        
        .coin-container {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .coin-glow {
            position: absolute;
            width: 65%;
            height: 65%;
            background: radial-gradient(circle, var(--gold-glow) 0%, rgba(201, 162, 39, 0.2) 40%, transparent 70%);
            filter: blur(50px);
            animation: coinGlowPulse 5s ease-in-out infinite;
        }
        
        @keyframes coinGlowPulse {
            0%, 100% { opacity: 0.6; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.15); }
        }
        
        /* 3D Coin with 4-stage float + 3D rotation */
        .coin-main {
            position: relative;
            width: 270px;
            height: 270px;
            background: linear-gradient(165deg, #2a2520 0%, #1a1714 50%, #0f0d0b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 0 0 4px rgba(201, 162, 39, 0.4),
                0 0 0 8px rgba(201, 162, 39, 0.15),
                0 0 0 12px rgba(201, 162, 39, 0.05),
                inset 0 -25px 50px rgba(0, 0, 0, 0.5),
                0 25px 70px rgba(0, 0, 0, 0.5),
                var(--shadow-gold-intense);
            animation: coinFloat 7s ease-in-out infinite;
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        @keyframes coinFloat {
            0%, 100% { transform: translateY(0) rotateY(-3deg) rotateX(2deg); }
            25% { transform: translateY(-18px) rotateY(3deg) rotateX(-2deg); }
            50% { transform: translateY(-10px) rotateY(-2deg) rotateX(3deg); }
            75% { transform: translateY(-20px) rotateY(2deg) rotateX(-1deg); }
        }
        
        .coin-inner {
            width: 86%;
            height: 86%;
            background: linear-gradient(155deg, var(--gold-bright) 0%, var(--gold-light) 25%, var(--gold-primary) 50%, var(--gold-dark) 75%, var(--gold-deep) 100%);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 
                inset 0 6px 30px rgba(255, 255, 255, 0.35),
                inset 0 -12px 30px rgba(0, 0, 0, 0.25),
                0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        /* Wide diagonal sweep shine */
        .coin-inner::before {
            content: '';
            position: absolute;
            top: -60%;
            left: -60%;
            width: 220%;
            height: 220%;
            background: linear-gradient(
                50deg,
                transparent 35%,
                rgba(255, 255, 255, 0.12) 42%,
                rgba(255, 255, 255, 0.3) 48%,
                rgba(255, 255, 255, 0.12) 54%,
                transparent 61%
            );
            animation: coinShine 6s ease-in-out infinite;
        }
        
        @keyframes coinShine {
            0%, 100% { transform: translateX(-80%) translateY(-80%) rotate(40deg); }
            50% { transform: translateX(80%) translateY(80%) rotate(40deg); }
        }
        
        .coin-inner::after {
            content: '';
            position: absolute;
            inset: 8px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.12);
            pointer-events: none;
        }
        
        .coin-symbol {
            font-family: var(--font-mono);
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--bg-void);
            position: relative;
            z-index: 2;
            letter-spacing: -0.02em;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
        }
        
        .coin-label {
            font-family: var(--font-mono);
            font-size: 0.5rem;
            font-weight: 600;
            color: var(--bg-void);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-top: 4px;
            position: relative;
            z-index: 2;
            opacity: 0.7;
        }
        
        /* 3 Orbital Rings - Different speeds & colors */
        .coin-orbit {
            position: absolute;
            border: 1.5px dashed rgba(201, 162, 39, 0.2);
            border-radius: 50%;
            animation: orbitSpin 40s linear infinite;
        }
        
        .coin-orbit--1 {
            width: 360px;
            height: 360px;
            animation-duration: 40s;
        }
        
        .coin-orbit--2 {
            width: 440px;
            height: 440px;
            animation-duration: 55s;
            animation-direction: reverse;
            border-color: rgba(16, 185, 129, 0.15);
        }
        
        .coin-orbit--3 {
            width: 520px;
            height: 520px;
            animation-duration: 70s;
            border-color: rgba(59, 130, 246, 0.1);
        }
        
        @keyframes orbitSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .orbit-dot {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--gold-primary);
            border-radius: 50%;
            box-shadow: 0 0 15px var(--gold-glow), 0 0 30px var(--gold-glow);
        }
        
        .coin-orbit--1 .orbit-dot { top: 0; left: 50%; transform: translate(-50%, -50%); }
        .coin-orbit--2 .orbit-dot { 
            bottom: 0; left: 50%; transform: translate(-50%, 50%); 
            background: var(--emerald); 
            box-shadow: 0 0 15px var(--emerald-glow), 0 0 30px var(--emerald-glow);
        }
        .coin-orbit--3 .orbit-dot { 
            top: 50%; right: 0; transform: translate(50%, -50%); 
            background: var(--sapphire-bright); 
            box-shadow: 0 0 15px var(--sapphire-glow), 0 0 30px var(--sapphire-glow);
        }
        
        /* ============================================
           SECTION BASE
           ============================================ */
        
        .section {
            padding: 140px 48px;
            position: relative;
        }
        
        @media (max-width: 768px) {
            .section { padding: 100px 24px; }
        }
        
        .section--alt {
            background: var(--bg-secondary);
        }
        
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 72px;
        }
        
        /* Section Labels - Pill shaped */
        .section-label {
            display: inline-block;
            font-family: var(--font-mono);
            font-size: 0.625rem;
            font-weight: 700;
            color: var(--gold-primary);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 18px;
            padding: 8px 18px;
            background: var(--gold-muted);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-full);
        }
        
        .section-label--emerald {
            color: var(--emerald);
            background: var(--emerald-muted);
            border-color: rgba(16, 185, 129, 0.2);
        }
        
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 3.5vw, 2.5rem);
            font-weight: 600;
            letter-spacing: -0.02em;
            color: var(--ink-white);
            margin-bottom: 16px;
        }
        
        .section-subtitle {
            font-size: 1rem;
            color: var(--ink-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* ============================================
           MARKET CONTEXT
           ============================================ */
        
        .market-context {
            padding: 140px 48px;
            background: var(--bg-secondary);
            position: relative;
        }
        
        .market-context::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 50% 40% at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .market-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 64px;
            align-items: start;
        }
        
        @media (max-width: 1000px) {
            .market-grid { grid-template-columns: 1fr; gap: 48px; }
        }
        
        .market-content h2 {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 3.5vw, 2.25rem);
            font-weight: 600;
            letter-spacing: -0.02em;
            color: var(--ink-white);
            margin-bottom: 24px;
            line-height: 1.2;
        }
        
        .market-content p {
            font-size: 0.9375rem;
            color: var(--ink-secondary);
            line-height: 1.85;
            margin-bottom: 16px;
        }
        
        .market-content strong {
            color: var(--ink-primary);
            font-weight: 600;
        }
        
        /* Institutional Logos - Enhanced Hover */
        .institutional-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin: 32px 0;
        }
        
        .institutional-item {
            padding: 20px 16px;
            background: var(--bg-card-solid);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            text-align: center;
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }
        
        .institutional-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .institutional-item:hover {
            border-color: var(--border-gold);
            transform: translateY(-5px);
            box-shadow: var(--shadow-gold-lg);
        }
        
        .institutional-item:hover::before {
            opacity: 1;
        }
        
        .institutional-name {
            font-family: var(--font-display);
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--ink-primary);
            margin-bottom: 4px;
            position: relative;
            z-index: 1;
        }
        
        .institutional-role {
            font-size: 0.5625rem;
            color: var(--ink-muted);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            position: relative;
            z-index: 1;
        }
        
        /* Quote Block - 5rem decorative quote */
        .quote-block {
            padding: 30px 36px;
            background: linear-gradient(135deg, var(--bg-card-solid), var(--bg-elevated));
            border-left: 4px solid var(--gold-primary);
            border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
            margin-top: 28px;
            position: relative;
            box-shadow: var(--shadow-md);
        }
        
        .quote-block::before {
            content: '"';
            position: absolute;
            top: 12px;
            left: 24px;
            font-family: var(--font-display);
            font-size: 5rem;
            color: var(--gold-primary);
            opacity: 0.1;
            line-height: 1;
        }
        
        .quote-block--emerald {
            border-left-color: var(--emerald);
        }
        
        .quote-block--emerald::before {
            color: var(--emerald);
        }
        
        .quote-text {
            font-family: var(--font-display);
            font-size: 0.9375rem;
            font-style: italic;
            color: var(--ink-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
        
        .quote-author {
            font-size: 0.75rem;
            color: var(--ink-muted);
            position: relative;
            z-index: 1;
        }
        
        .quote-author strong {
            color: var(--gold-primary);
            font-weight: 600;
        }
        
        .quote-block--emerald .quote-author strong {
            color: var(--emerald);
        }
        
        /* Architecture Diagram - Enhanced */
        .arch-diagram {
            padding: 36px;
            background: linear-gradient(135deg, var(--bg-card-solid), var(--bg-elevated));
            border: 1px solid var(--border-light);
            border-radius: var(--radius-2xl);
            box-shadow: var(--shadow-lg);
        }
        
        .arch-title {
            font-family: var(--font-mono);
            font-size: 0.625rem;
            font-weight: 700;
            color: var(--sapphire-bright);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 28px;
            text-align: center;
            padding: 10px 20px;
            background: var(--sapphire-muted);
            border-radius: var(--radius-full);
        }
        
        .arch-flow {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        
        .arch-step {
            padding: 22px 26px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.4s var(--ease-out-expo);
        }
        
        .arch-step:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
        .arch-step:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
        
        .arch-step:hover {
            background: var(--bg-elevated);
            border-color: var(--border-gold);
            transform: translateX(8px);
        }
        
        /* Icon Enhancement - Gradient + inner highlight */
        .arch-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: var(--radius-md);
            display: grid;
            place-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .arch-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
        }
        
        .arch-icon--gold { 
            background: linear-gradient(135deg, var(--gold-muted), rgba(201, 162, 39, 0.25)); 
            color: var(--gold-primary);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 15px rgba(201, 162, 39, 0.15);
        }
        .arch-icon--emerald { 
            background: linear-gradient(135deg, var(--emerald-muted), rgba(16, 185, 129, 0.25)); 
            color: var(--emerald);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 15px rgba(16, 185, 129, 0.15);
        }
        .arch-icon--sapphire { 
            background: linear-gradient(135deg, var(--sapphire-muted), rgba(59, 130, 246, 0.25)); 
            color: var(--sapphire-bright);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 15px rgba(59, 130, 246, 0.15);
        }
        
        .arch-content h4 {
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--ink-primary);
            margin-bottom: 4px;
        }
        
        .arch-content p {
            font-size: 0.75rem;
            color: var(--ink-muted);
            line-height: 1.55;
        }
        
        /* Arrow Bounce Animation */
        .arch-arrow {
            display: flex;
            justify-content: center;
            padding: 8px 0;
            color: var(--gold-primary);
            opacity: 0.5;
        }
        
        .arch-arrow svg {
            animation: arrowBounce 2s ease-in-out infinite;
        }
        
        @keyframes arrowBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(4px); }
        }
        
        /* ============================================
           FRAMEWORK
           ============================================ */
        
        .framework {
            padding: 140px 48px;
            background: var(--bg-primary);
            position: relative;
        }
        
        .framework::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201, 162, 39, 0.05) 0%, transparent 60%);
            pointer-events: none;
        }
        
        .framework-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin-top: 72px;
        }
        
        @media (max-width: 900px) {
            .framework-grid { grid-template-columns: 1fr; }
        }
        
        /* Card Hover System - Enhanced */
        .role-card {
            padding: 40px 36px;
            background: var(--bg-card-solid);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-2xl);
            position: relative;
            overflow: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }
        
        .role-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .role-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }
        
        .role-card--arqfield::before { background: linear-gradient(90deg, var(--emerald), var(--emerald-light)); }
        .role-card--token::before { background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright)); }
        
        .role-card:hover {
            transform: translateY(-10px);
            border-color: var(--border-gold);
            box-shadow: var(--shadow-xl), var(--shadow-gold-lg);
        }
        
        .role-card:hover::before,
        .role-card:hover::after {
            opacity: 1;
        }
        
        .role-label {
            font-family: var(--font-mono);
            font-size: 0.5625rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 18px;
        }
        
        .role-card--arqfield .role-label { color: var(--emerald); }
        .role-card--token .role-label { color: var(--gold-primary); }
        
        .role-icon {
            width: 64px;
            height: 64px;
            border-radius: var(--radius-lg);
            display: grid;
            place-items: center;
            margin-bottom: 22px;
            position: relative;
            overflow: hidden;
        }
        
        .role-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
        }
        
        .role-card--arqfield .role-icon { 
            background: linear-gradient(135deg, var(--emerald-muted), rgba(16, 185, 129, 0.3)); 
            color: var(--emerald);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
        }
        .role-card--token .role-icon { 
            background: linear-gradient(135deg, var(--gold-muted), rgba(201, 162, 39, 0.3)); 
            color: var(--gold-primary);
            box-shadow: 0 8px 25px rgba(201, 162, 39, 0.2);
        }
        
        .role-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--ink-white);
            margin-bottom: 14px;
        }
        
        .role-desc {
            font-size: 0.9375rem;
            color: var(--ink-secondary);
            line-height: 1.8;
            margin-bottom: 26px;
        }
        
        .role-desc strong {
            color: var(--ink-primary);
        }
        
        .role-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding-top: 22px;
            border-top: 1px solid var(--border-subtle);
        }
        
        /* Role Features - translateX(4px) on hover */
        .role-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.8125rem;
            color: var(--ink-muted);
            transition: all 0.3s ease;
        }
        
        .role-feature:hover {
            color: var(--ink-primary);
            transform: translateX(4px);
        }
        
        .role-feature svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }
        
        .role-card--arqfield .role-feature svg { color: var(--emerald); }
        .role-card--token .role-feature svg { color: var(--gold-primary); }
        
        /* Stack Card - Premium Border */
        .stack-card {
            grid-column: span 2;
            padding: 44px;
            background: linear-gradient(135deg, var(--bg-card-solid), var(--bg-elevated));
            border: 2px solid var(--border-gold);
            border-radius: var(--radius-2xl);
            margin-top: 12px;
            box-shadow: var(--shadow-gold-lg);
            position: relative;
            overflow: hidden;
        }
        
        .stack-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        
        @media (max-width: 900px) {
            .stack-card { grid-column: span 1; }
        }
        
        .stack-header {
            text-align: center;
            margin-bottom: 36px;
            position: relative;
            z-index: 1;
        }
        
        .stack-title {
            font-family: var(--font-display);
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--ink-white);
            margin-bottom: 6px;
        }
        
        .stack-subtitle {
            font-size: 0.8125rem;
            color: var(--ink-muted);
        }
        
        .stack-layers {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        @media (max-width: 768px) {
            .stack-layers { grid-template-columns: 1fr; }
        }
        
        /* Stack Layers - 3px colored top border */
        .stack-layer {
            padding: 26px 22px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            text-align: center;
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }
        
        .stack-layer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
        }
        
        .stack-layer--asset::before { background: var(--ink-muted); }
        .stack-layer--rep::before { background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright)); }
        .stack-layer--network::before { background: linear-gradient(90deg, var(--emerald), var(--emerald-light)); }
        
        .stack-layer:hover {
            transform: translateY(-6px);
            border-color: var(--border-gold);
            box-shadow: var(--shadow-md);
        }
        
        .layer-label {
            font-family: var(--font-mono);
            font-size: 0.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 12px;
        }
        
        .stack-layer--asset .layer-label { color: var(--ink-muted); }
        .stack-layer--rep .layer-label { color: var(--gold-primary); }
        .stack-layer--network .layer-label { color: var(--emerald); }
        
        .layer-title {
            font-family: var(--font-display);
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--ink-primary);
            margin-bottom: 8px;
        }
        
        .layer-desc {
            font-size: 0.75rem;
            color: var(--ink-muted);
            line-height: 1.65;
        }
        
        /* ============================================
           ADVANTAGES
           ============================================ */
        
        .advantages {
            padding: 140px 48px;
            background: var(--bg-secondary);
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 18px;
            margin-top: 72px;
        }
        
        @media (max-width: 1100px) {
            .advantages-grid { grid-template-columns: repeat(3, 1fr); }
        }
        
        @media (max-width: 768px) {
            .advantages-grid { grid-template-columns: 1fr; }
        }
        
        /* Advantage Cards - Full hover system */
        .advantage-card {
            padding: 30px 26px;
            background: var(--bg-card-solid);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            transition: all 0.5s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }
        
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright));
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .advantage-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            border-color: var(--border-gold);
            box-shadow: var(--shadow-lg), var(--shadow-gold-lg);
        }
        
        .advantage-card:hover::before,
        .advantage-card:hover::after {
            opacity: 1;
        }
        
        .advantage-num {
            font-family: var(--font-mono);
            font-size: 1.625rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.5;
            margin-bottom: 18px;
            filter: drop-shadow(0 2px 8px var(--gold-glow));
        }
        
        .advantage-title {
            font-family: var(--font-display);
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--ink-primary);
            margin-bottom: 10px;
            line-height: 1.35;
        }
        
        .advantage-desc {
            font-size: 0.75rem;
            color: var(--ink-muted);
            line-height: 1.7;
        }
        
        /* Benefits Summary */
        .benefits-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 56px;
            padding-top: 56px;
            border-top: 1px solid var(--border-subtle);
        }
        
        @media (max-width: 768px) {
            .benefits-row { grid-template-columns: 1fr; }
        }
        
        .benefit-item {
            text-align: center;
            padding: 30px 22px;
            background: linear-gradient(135deg, var(--gold-muted), rgba(201, 162, 39, 0.08));
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-xl);
            transition: all 0.4s var(--ease-out-expo);
        }
        
        .benefit-item:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-gold-lg);
            border-color: var(--border-gold-strong);
        }
        
        .benefit-icon {
            width: 58px;
            height: 58px;
            margin: 0 auto 16px;
            background: linear-gradient(145deg, var(--gold-bright), var(--gold-light), var(--gold-primary));
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: var(--bg-void);
            box-shadow: var(--shadow-gold-lg), inset 0 2px 0 rgba(255,255,255,0.3);
        }
        
        .benefit-title {
            font-family: var(--font-display);
            font-size: 0.9375rem;
            font-weight: 600;
            background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* ============================================
           CALCULATORS — ULTRA PREMIUM
           ============================================ */
        
        .calculators {
            padding: 140px 48px;
            background: var(--bg-primary);
            position: relative;
        }
        
        .calculators::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        
        .calculators-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 72px;
        }
        
        @media (max-width: 1000px) {
            .calculators-grid { grid-template-columns: 1fr; }
        }
        
        /* Calculator Card - 2px gold border + radial overlay */
        .calc-card {
            padding: 40px 36px;
            background: linear-gradient(135deg, var(--bg-card-solid), var(--bg-elevated));
            border: 2px solid var(--border-gold);
            border-radius: var(--radius-2xl);
            box-shadow: var(--shadow-gold-lg);
            position: relative;
            overflow: hidden;
        }
        
        .calc-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .calc-card h3 {
            font-family: var(--font-display);
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--ink-white);
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
        }
        
        .calc-desc {
            font-size: 0.8125rem;
            color: var(--ink-muted);
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
        }
        
        .calc-group {
            margin-bottom: 22px;
            position: relative;
            z-index: 1;
        }
        
        .calc-label {
            display: block;
            font-size: 0.6875rem;
            font-weight: 700;
            color: var(--ink-secondary);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .calc-input-wrap {
            position: relative;
        }
        
        /* Input Focus - 5px gold dim ring */
        .calc-input {
            width: 100%;
            padding: 18px 22px 18px 48px;
            background: var(--bg-tertiary);
            border: 2px solid var(--border-light);
            border-radius: var(--radius-lg);
            font-family: var(--font-mono);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--ink-white);
            outline: none;
            transition: all 0.4s var(--ease-out-expo);
        }
        
        .calc-input:focus {
            border-color: var(--gold-primary);
            background: var(--bg-elevated);
            box-shadow: 0 0 0 5px var(--gold-muted), var(--shadow-gold);
        }
        
        .calc-prefix {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-family: var(--font-mono);
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--ink-muted);
        }
        
        .calc-suffix {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-family: var(--font-mono);
            font-size: 0.6875rem;
            font-weight: 700;
            color: var(--ink-muted);
            text-transform: uppercase;
        }
        
        .calc-input--suffix {
            padding-right: 65px;
            padding-left: 22px;
        }
        
        /* Range Slider - 24px gold thumb with scale(1.1) hover */
        .calc-range-wrap {
            margin-top: 12px;
        }
        
        .calc-range {
            width: 100%;
            height: 8px;
            -webkit-appearance: none;
            appearance: none;
            background: var(--bg-tertiary);
            border-radius: 4px;
            outline: none;
            border: 1px solid var(--border-subtle);
        }
        
        .calc-range::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 24px;
            height: 24px;
            background: linear-gradient(145deg, var(--gold-bright), var(--gold-primary));
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(201, 162, 39, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
            transition: all 0.3s ease;
        }
        
        .calc-range::-webkit-slider-thumb:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(201, 162, 39, 0.6), inset 0 1px 0 rgba(255,255,255,0.3);
        }
        
        .calc-range::-moz-range-thumb {
            width: 24px;
            height: 24px;
            background: linear-gradient(145deg, var(--gold-bright), var(--gold-primary));
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(201, 162, 39, 0.5);
            border: none;
        }
        
        .calc-range-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 0.5rem;
            color: var(--ink-dim);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        /* Toggle Buttons - Active gradient + glow */
        .calc-toggle-row {
            display: flex;
            gap: 10px;
            margin-bottom: 22px;
            position: relative;
            z-index: 1;
        }
        
        .calc-toggle {
            flex: 1;
            padding: 14px 18px;
            background: var(--bg-tertiary);
            border: 2px solid var(--border-light);
            border-radius: var(--radius-md);
            font-family: var(--font-mono);
            font-size: 0.625rem;
            font-weight: 700;
            color: var(--ink-muted);
            cursor: pointer;
            transition: all 0.3s var(--ease-out-expo);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .calc-toggle.active {
            background: linear-gradient(135deg, var(--gold-muted), rgba(201, 162, 39, 0.2));
            border-color: var(--gold-primary);
            color: var(--gold-primary);
            box-shadow: 0 4px 20px rgba(201, 162, 39, 0.2);
        }
        
        .calc-toggle:hover:not(.active) {
            border-color: var(--border-medium);
            color: var(--ink-secondary);
            transform: translateY(-2px);
        }
        
        /* Results Panel - Gradient background */
        .calc-results {
            padding: 26px;
            background: linear-gradient(135deg, var(--gold-muted), rgba(201, 162, 39, 0.1));
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-xl);
            margin-top: 22px;
            position: relative;
            z-index: 1;
        }
        
        .calc-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid rgba(201, 162, 39, 0.12);
        }
        
        .calc-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .calc-row-label {
            font-size: 0.8125rem;
            color: var(--ink-secondary);
        }
        
        /* Value Display - text-shadow glow */
        .calc-row-value {
            font-family: var(--font-mono);
            font-size: 1.0625rem;
            font-weight: 700;
            color: var(--gold-primary);
            text-shadow: 0 0 20px var(--gold-glow);
        }
        
        .calc-row-value--lg {
            font-size: 1.375rem;
        }
        
        .calc-row-value--emerald {
            color: var(--emerald);
            text-shadow: 0 0 20px var(--emerald-glow);
        }
        
        .calc-row-value--red {
            color: var(--crimson);
            text-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
        }
        
        .calc-note {
            margin-top: 18px;
            font-size: 0.5625rem;
            color: var(--ink-dim);
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }
        
        /* ============================================
           FOOTER — PREMIUM
           ============================================ */
        
        .footer {
            padding: 70px 48px 45px;
            background: var(--bg-void);
            border-top: 1px solid var(--border-subtle);
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .footer-inner {
            max-width: var(--container-max);
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 40px;
        }
        
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        
        .footer-logo {
            width: 44px;
            height: 44px;
            background: linear-gradient(145deg, var(--gold-bright), var(--gold-primary));
            border-radius: var(--radius-sm);
            display: grid;
            place-items: center;
            box-shadow: var(--shadow-gold-lg);
        }
        
        .footer-logo svg {
            color: var(--bg-void);
        }
        
        .footer-text {
            line-height: 1.25;
        }
        
        .footer-name {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 600;
            color: var(--ink-white);
        }
        
        .footer-partner {
            font-size: 0.5625rem;
            color: var(--ink-muted);
        }
        
        .footer-links {
            display: flex;
            gap: 28px;
        }
        
        .footer-link {
            font-size: 0.8125rem;
            color: var(--ink-muted);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-link:hover {
            color: var(--gold-primary);
            text-shadow: 0 0 15px var(--gold-glow);
        }
        
        .footer-regulatory {
            padding: 22px 28px;
            background: linear-gradient(135deg, var(--emerald-muted), rgba(16, 185, 129, 0.08));
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: var(--radius-lg);
            margin-bottom: 28px;
        }
        
        .footer-regulatory-title {
            font-family: var(--font-mono);
            font-size: 0.5rem;
            font-weight: 700;
            color: var(--emerald);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 10px;
        }
        
        .footer-regulatory-text {
            font-size: 0.6875rem;
            color: var(--ink-secondary);
            line-height: 1.8;
        }
        
        .footer-regulatory-text a {
            color: var(--emerald);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-regulatory-text a:hover {
            text-shadow: 0 0 15px var(--emerald-glow);
        }
        
        .footer-disclaimer {
            font-size: 0.625rem;
            color: var(--ink-dim);
            line-height: 1.9;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid var(--border-subtle);
        }
        
        .footer-disclaimer a {
            color: var(--emerald);
            text-decoration: none;
        }
        
        .footer-copy {
            text-align: center;
            font-size: 0.6875rem;
            color: var(--ink-muted);
            margin-top: 24px;
        }
        
        /* ============================================
           REVEAL ANIMATIONS — 1s + staggered
           ============================================ */
        
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
        }
        
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .reveal-delay-1 { transition-delay: 0.15s; }
        .reveal-delay-2 { transition-delay: 0.3s; }
        .reveal-delay-3 { transition-delay: 0.45s; }