/* ============================================
   AI SIGNAL CIRCLE - Main Stylesheet
   Dark Theme with Gold Accents - PREMIUM Edition
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --color-bg: #050505;
    --color-bg-light: #0a0a0a;
    --color-bg-card: #0f0f0f;
    --color-bg-card-hover: #151515;
    
    --color-gold: #d4a828;
    --color-gold-light: #f0c850;
    --color-gold-dark: #a88a1e;
    --color-gold-glow: rgba(212, 168, 40, 0.4);
    --color-gold-glow-strong: rgba(212, 168, 40, 0.7);
    --color-gold-glow-intense: rgba(240, 200, 80, 0.5);
    
    /* PENDLE-STYLE: Secondary Accent Colors */
    --color-cyan: #00D1B2;
    --color-cyan-light: #33E0C7;
    --color-cyan-dark: #00A892;
    --color-cyan-glow: rgba(0, 209, 178, 0.4);
    --color-blue: #5B7FFF;
    --color-blue-light: #8099FF;
    --color-blue-dark: #3D5FE0;
    --color-blue-glow: rgba(91, 127, 255, 0.4);
    
    --color-text: #ffffff;
    --color-text-muted: #b0b0b0;
    --color-text-dark: #666666;
    
    --color-success: #22c55e;
    --color-error: #ef4444;
    --color-warning: #f59e0b;
    
    --color-border: #1a1a1a;
    --color-border-light: #252525;
    --color-border-gold: rgba(212, 168, 40, 0.3);
    
    /* Typography */
    --font-heading: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing - PREMIUM: Bigger, more breathing room */
    --section-padding: 140px;
    --section-padding-sm: 100px;
    --container-max: 1400px;
    --container-wide: 1600px;
    
    /* Transitions - PREMIUM: Smoother curves */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* ============================================
   PREMIUM ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
}

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

@keyframes rotateReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes pulseOrb {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes moveOrb1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(50px, -30px); }
    50% { transform: translate(20px, 50px); }
    75% { transform: translate(-30px, 20px); }
}

@keyframes moveOrb2 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-40px, 40px); }
    50% { transform: translate(30px, -20px); }
    75% { transform: translate(-20px, -40px); }
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.03; }
    50% { opacity: 0.06; }
    50% { transform: translateY(-20px); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--color-gold-glow); }
    50% { box-shadow: 0 0 40px var(--color-gold-glow-strong), 0 0 60px var(--color-gold-glow); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(201, 162, 39, 0.3); }
    50% { border-color: rgba(201, 162, 39, 0.8); }
}

/* PREMIUM: New animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

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

@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 20px var(--color-gold-glow), 0 0 40px var(--color-gold-glow); }
    50% { text-shadow: 0 0 40px var(--color-gold-glow-strong), 0 0 80px var(--color-gold-glow); }
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 0.5; }
    100% { transform: scale(4); opacity: 0; }
}

/* PREMIUM: Gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-animated {
    background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

/* PREMIUM: Glow text */
.glow-text {
    text-shadow: 0 0 20px var(--color-gold-glow), 0 0 40px var(--color-gold-glow);
}

.glow-text-animated {
    animation: textGlow 3s ease-in-out infinite;
}

/* PREMIUM: Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* PREMIUM: Blur reveal */
.reveal-blur {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-blur.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* PREMIUM: Stagger delays - more options */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* Legacy support */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.03;
    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");
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.gold {
    color: var(--color-gold);
}

.highlight {
    color: var(--color-gold);
    font-weight: 600;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
    z-index: 1001;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--color-gold-glow), 0 0 20px var(--color-gold-glow);
}

/* ============================================
   SECTION DOTS NAVIGATION
   ============================================ */
.section-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 1;
    pointer-events: auto;
}

.section-dots.visible {
    opacity: 1;
}

.section-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Connecting line between dots */
.section-dot::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 16px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
    transition: all 0.4s ease;
}

.section-dot:last-child::after {
    display: none;
}

.section-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: var(--color-gold);
    transform: scale(1.3);
}

/* Active state with pulse animation */
.section-dot.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 
        0 0 20px var(--color-gold-glow),
        0 0 40px rgba(201, 162, 39, 0.3);
    transform: scale(1.2);
    animation: dotPulse 2s ease-in-out infinite;
}

/* Ripple effect on active */
.section-dot.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    animation: dotRipple 2s ease-out infinite;
}

/* Connecting line lights up to active dot */
.section-dot.active::after {
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    box-shadow: 0 0 8px var(--color-gold-glow);
}

/* Label tooltip */
.section-dot .dot-label {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background: rgba(20, 20, 20, 0.95);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
}

.section-dot:hover .dot-label,
.section-dot.active .dot-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.section-dot.active .dot-label {
    color: var(--color-gold);
    border-color: rgba(201, 162, 39, 0.3);
}

/* Pulse animation */
@keyframes dotPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px var(--color-gold-glow),
            0 0 40px rgba(201, 162, 39, 0.3);
    }
    50% {
        box-shadow: 
            0 0 30px var(--color-gold-glow),
            0 0 60px rgba(201, 162, 39, 0.4);
    }
}

/* Ripple animation */
@keyframes dotRipple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Hide dots on mobile */
@media (max-width: 1024px) {
    .section-dots {
        display: none;
    }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-normal);
}

/* Glassmorphism effect when scrolled */
.header.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom-color: rgba(201, 162, 39, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Hide header on scroll down, show on scroll up */
.header.header-hidden {
    transform: translateY(-100%);
}

/* Shrink logo when scrolled */
.header.scrolled .logo-img {
    transform: scale(1.2);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transform: scale(1.5);
    transform-origin: left center;
}

/* Footer logo */
.footer-logo-img {
    height: 120px;
    width: auto;
    margin-bottom: 16px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--color-text);
}

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

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--color-gold);
}

/* Active nav link styling */
.nav-link.active {
    color: var(--color-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Glowing dot indicator for active section */
.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-gold-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateX(-50%) scale(1.5); }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Fixed width for header button to prevent layout shift between languages */
.header-actions .btn {
    min-width: 180px;
    justify-content: center;
    text-align: center;
}

.lang-switcher {
    display: flex;
    background: var(--color-bg-card);
    border-radius: var(--radius-full);
    padding: 4px;
}

.lang-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.lang-btn.active {
    background: var(--color-gold);
    color: var(--color-bg);
}

.lang-btn:hover:not(.active) {
    color: var(--color-text);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-fast);
}

/* ============================================
   LITHUANIAN LANGUAGE ADJUSTMENTS
   Uses :lang() selector for smart detection
   ============================================ */
:lang(lt) .nav {
    gap: 14px; /* Reduced for longer LT words with 7 links */
}

:lang(lt) .nav-link {
    font-size: 0.75rem; /* Smaller for 7 LT links */
    letter-spacing: -0.3px;
    white-space: nowrap;
}

:lang(lt) .header-actions {
    gap: 10px;
}

:lang(lt) .header-actions .btn span {
    white-space: nowrap;
}

/* ============================================
   PREMIUM BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

/* Ripple effect container */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* PENDLE-STYLE: Outline Button */
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
    border-radius: 8px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-cyan {
    background: transparent;
    border: 1px solid var(--color-cyan);
    color: var(--color-cyan);
    border-radius: 8px;
}

.btn-outline-cyan:hover {
    background: var(--color-cyan);
    color: var(--color-bg);
}

.btn-outline-blue {
    background: transparent;
    border: 1px solid var(--color-blue);
    color: var(--color-blue);
    border-radius: 8px;
}

.btn-outline-blue:hover {
    background: var(--color-blue);
    color: var(--color-bg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    background-size: 200% 200%;
    color: var(--color-bg);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 30px var(--color-gold-glow-strong),
        0 0 60px var(--color-gold-glow);
    background-position: 100% 100%;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Icon animation on hover */
.btn svg {
    transition: transform var(--transition-normal);
}

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

.btn-large {
    padding: 18px 36px;
    font-size: 1.0625rem;
    gap: 12px;
}

.btn-xlarge {
    padding: 22px 48px;
    font-size: 1.1875rem;
    gap: 14px;
}

.btn-glow {
    box-shadow: 
        0 4px 20px var(--color-gold-glow),
        0 0 50px rgba(212, 168, 40, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: glow 2.5s ease-in-out infinite;
}

.btn-glow:hover {
    box-shadow: 
        0 8px 40px var(--color-gold-glow-strong),
        0 0 80px var(--color-gold-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: none;
}

/* Shine sweep effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    transition: none;
}

.btn-shine:hover::after {
    animation: shine 0.8s ease forwards;
}

/* ============================================
   PREMIUM HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* PREMIUM: Stronger, more dynamic gradient */
.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(212, 168, 40, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(212, 168, 40, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(212, 168, 40, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 30% 80%, rgba(255, 200, 100, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, var(--color-bg) 95%);
}

/* Grid Pattern Overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 162, 39, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridPulse 8s ease-in-out infinite;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 70%);
}

/* PREMIUM: Glowing Orbs - More visible and dynamic */
.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 168, 40, 0.5) 0%, rgba(212, 168, 40, 0.2) 40%, transparent 70%);
    top: -300px;
    right: -200px;
    animation: pulseOrb 6s ease-in-out infinite, moveOrb1 20s ease-in-out infinite;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 40, 0.4) 0%, rgba(180, 140, 30, 0.15) 50%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: pulseOrb 8s ease-in-out infinite 2s, moveOrb2 25s ease-in-out infinite;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 210, 80, 0.35) 0%, rgba(255, 200, 50, 0.1) 50%, transparent 70%);
    top: 30%;
    left: 30%;
    animation: pulseOrb 10s ease-in-out infinite 4s, breathe 6s ease-in-out infinite;
}

/* ============================================
   MODERN GRADIENT BACKGROUND
   ============================================ */
.vanta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #050505 100%);
    background-attachment: fixed;
}

/* Hide old 3D comet */
.hero-3d-comet {
    display: none;
}

/* Main Golden Globe */
.comet-sphere {
    position: absolute;
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: 
        radial-gradient(ellipse 25% 25% at 35% 35%, rgba(255, 250, 220, 0.95) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 40% 40%, rgba(255, 220, 120, 0.8) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, #E8C547 0%, #D4A828 30%, #A07D1C 60%, #6B5315 85%, #3D300C 100%);
    box-shadow: 
        0 0 120px rgba(212, 168, 40, 0.8),
        0 0 250px rgba(212, 168, 40, 0.5),
        0 0 400px rgba(212, 168, 40, 0.3),
        0 0 600px rgba(212, 168, 40, 0.15),
        inset -30px -30px 60px rgba(0, 0, 0, 0.4),
        inset 20px 20px 40px rgba(255, 240, 180, 0.2);
    animation: globeFloat 6s ease-in-out infinite, globePulse 4s ease-in-out infinite;
}

/* Globe Surface Texture */
.comet-sphere::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 8px,
            rgba(255, 255, 255, 0.03) 8px,
            rgba(255, 255, 255, 0.03) 9px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 15px,
            rgba(255, 255, 255, 0.02) 15px,
            rgba(255, 255, 255, 0.02) 16px
        );
    animation: globeRotate 30s linear infinite;
    opacity: 0.5;
}

/* Highlight Shine */
.comet-sphere::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 40%;
    top: 10%;
    left: 15%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    filter: blur(3px);
}

/* Hide comet tail - not needed for globe */
.comet-tail {
    display: none;
}

/* Orbital Rings - Elegant 3D */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1.5px solid;
    transform-style: preserve-3d;
    backface-visibility: visible;
}

.orbit-ring-1 {
    width: 350px;
    height: 350px;
    margin: -175px 0 0 -175px;
    border-color: rgba(212, 168, 40, 0.4);
    transform: rotateX(75deg);
    animation: ringRotate1 20s linear infinite;
    box-shadow: 0 0 15px rgba(212, 168, 40, 0.15);
}

.orbit-ring-2 {
    width: 420px;
    height: 420px;
    margin: -210px 0 0 -210px;
    border-color: rgba(212, 168, 40, 0.25);
    transform: rotateX(75deg) rotateY(60deg);
    animation: ringRotate2 25s linear infinite reverse;
}

.orbit-ring-3 {
    width: 500px;
    height: 500px;
    margin: -250px 0 0 -250px;
    border-color: rgba(212, 168, 40, 0.15);
    transform: rotateX(75deg) rotateY(-30deg);
    animation: ringRotate3 35s linear infinite;
    border-style: dashed;
}

/* Orbiting Particles - Stars around globe */
.orbit-particle {
    position: absolute;
    background: radial-gradient(circle, #FFD700 0%, rgba(212, 168, 40, 0.8) 50%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.orbit-particle-1 {
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    animation: starOrbit1 12s linear infinite;
}

.orbit-particle-2 {
    width: 8px;
    height: 8px;
    top: 50%;
    left: 50%;
    animation: starOrbit2 18s linear infinite;
}

.orbit-particle-3 {
    width: 6px;
    height: 6px;
    top: 50%;
    left: 50%;
    animation: starOrbit3 8s linear infinite;
}

.orbit-particle-4 {
    width: 5px;
    height: 5px;
    top: 50%;
    left: 50%;
    animation: starOrbit4 15s linear infinite;
}

/* Floating sparkles */
.comet-sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.9);
    animation: twinkle 3s ease-in-out infinite;
}

.sparkle-1 { top: 15%; left: 20%; animation-delay: 0s; }
.sparkle-2 { top: 25%; left: 75%; animation-delay: 0.5s; }
.sparkle-3 { top: 70%; left: 15%; animation-delay: 1s; }
.sparkle-4 { top: 80%; left: 80%; animation-delay: 1.5s; }
.sparkle-5 { top: 40%; left: 10%; animation-delay: 2s; }
.sparkle-6 { top: 60%; left: 85%; animation-delay: 2.5s; }

/* Globe Animations */
@keyframes globeFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

@keyframes globePulse {
    0%, 100% { 
        box-shadow: 
            0 0 100px rgba(212, 168, 40, 0.7),
            0 0 200px rgba(212, 168, 40, 0.4),
            0 0 300px rgba(212, 168, 40, 0.2),
            inset -30px -30px 60px rgba(0, 0, 0, 0.4),
            inset 20px 20px 40px rgba(255, 240, 180, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 120px rgba(212, 168, 40, 0.8),
            0 0 250px rgba(212, 168, 40, 0.5),
            0 0 400px rgba(212, 168, 40, 0.25),
            inset -30px -30px 60px rgba(0, 0, 0, 0.4),
            inset 20px 20px 40px rgba(255, 240, 180, 0.2);
    }
}

@keyframes globeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ringRotate1 {
    from { transform: rotateX(75deg) rotateZ(0deg); }
    to { transform: rotateX(75deg) rotateZ(360deg); }
}

@keyframes ringRotate2 {
    from { transform: rotateX(75deg) rotateY(60deg) rotateZ(0deg); }
    to { transform: rotateX(75deg) rotateY(60deg) rotateZ(360deg); }
}

@keyframes ringRotate3 {
    from { transform: rotateX(75deg) rotateY(-30deg) rotateZ(0deg); }
    to { transform: rotateX(75deg) rotateY(-30deg) rotateZ(360deg); }
}

@keyframes starOrbit1 {
    from { transform: rotate(0deg) translateX(175px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(175px) rotate(-360deg); }
}

@keyframes starOrbit2 {
    from { transform: rotate(120deg) translateX(210px) rotate(-120deg); }
    to { transform: rotate(480deg) translateX(210px) rotate(-480deg); }
}

@keyframes starOrbit3 {
    from { transform: rotate(240deg) translateX(150px) rotate(-240deg); }
    to { transform: rotate(600deg) translateX(150px) rotate(-600deg); }
}

@keyframes starOrbit4 {
    from { transform: rotate(60deg) translateX(190px) rotate(-60deg); }
    to { transform: rotate(420deg) translateX(190px) rotate(-420deg); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Legacy rings for fallback */
.hero-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    pointer-events: none;
    display: none; /* Hidden - replaced by 3D comet */
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.15);
    will-change: transform;
}

.ring-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-width: 2px;
    animation: rotate 80s linear infinite;
}

.ring-2 {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    border-style: dashed;
    border-color: rgba(201, 162, 39, 0.12);
    animation: rotateReverse 60s linear infinite;
}

.ring-3 {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-width: 2px;
    animation: rotate 40s linear infinite;
}

.ring-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 
        0 0 20px var(--color-gold-glow-strong),
        0 0 40px var(--color-gold-glow),
        0 0 60px var(--color-gold-glow);
}

.ring-1 .ring-dot {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.ring-2 .ring-dot {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.ring-3 .ring-dot {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.15), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(201, 162, 39, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.15), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(201, 162, 39, 0.08), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.12), transparent),
        radial-gradient(2px 2px at 180px 150px, rgba(201, 162, 39, 0.1), transparent);
    background-size: 200px 200px;
    animation: particles 25s linear infinite;
    opacity: 0.6;
}

@keyframes particles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* PREMIUM: Animated badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 168, 40, 0.15);
    border: 1px solid rgba(212, 168, 40, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 28px;
    animation: heroFadeIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
    box-shadow: 0 0 30px rgba(212, 168, 40, 0.2);
}

.badge-icon {
    font-size: 1.25rem;
    animation: pulse 2s ease-in-out infinite;
}

/* PREMIUM: Bigger, gradient title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: 3px;
    margin-bottom: 28px;
    text-transform: uppercase;
    animation: heroFadeIn 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-title .gold {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px var(--color-gold-glow));
}

/* PENDLE-STYLE: Rotating Text Animation */
.rotating-text-container {
    display: block;
    position: relative;
    width: 100%;
    height: 1.2em;
    overflow: hidden;
    text-align: center;
}

.rotating-word {
    display: none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    white-space: nowrap;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--color-gold-glow));
    white-space: nowrap;
}

.rotating-word.active {
    display: inline-block !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
}

.rotating-word.exit {
    display: inline-block !important;
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
}

.title-static {
    color: var(--color-text);
    margin-right: 0.3em;
}

/* PREMIUM: Stronger subtitle */
.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.6;
    animation: heroFadeIn 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-subtitle .highlight {
    color: var(--color-gold-light);
    font-weight: 700;
    position: relative;
    text-shadow: 0 0 40px var(--color-gold-glow-strong);
    animation: textGlow 4s ease-in-out infinite;
}

.hero-subtitle .highlight::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold), transparent);
    border-radius: 2px;
}

/* PREMIUM: Benefits with stagger animation */
.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 44px;
    animation: heroFadeIn 0.8s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text);
}

.hero-benefits li span {
    opacity: 0.9;
}

.check-icon {
    width: 26px;
    height: 26px;
    color: var(--color-gold);
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px var(--color-gold-glow));
}

/* PREMIUM: CTA with animation */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: heroFadeIn 0.8s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
}

.hero-cta .btn {
    align-self: flex-start;
}

.hero-cta-note {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-cta-note::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Video */
.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.video-frame {
    position: relative;
    aspect-ratio: 16/9;
    background: rgba(10, 10, 10, 0.95);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--color-border);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 168, 40, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(15, 15, 15, 0.9);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.video-placeholder:hover {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-card) 100%);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 8px 32px var(--color-gold-glow);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 16px var(--color-gold-glow);
}

.play-button svg {
    width: 32px;
    height: 32px;
    color: var(--color-bg);
    margin-left: 4px;
}

.video-placeholder p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.video-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, var(--color-gold-glow) 0%, transparent 70%);
    opacity: 0.3;
    z-index: -1;
    filter: blur(40px);
}

/* Floating Elements in Hero */
.hero-floating {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: floatSlow 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    left: 10%;
    animation-delay: 1s;
    font-size: 1.5rem;
}

.floating-icon:nth-child(3) {
    top: 30%;
    right: 5%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    top: 70%;
    right: 10%;
    animation-delay: 0.5s;
    font-size: 1.8rem;
}

.floating-icon:nth-child(5) {
    top: 15%;
    right: 15%;
    animation-delay: 1.5s;
    font-size: 1.2rem;
}

.floating-icon:nth-child(6) {
    top: 80%;
    left: 20%;
    animation-delay: 2.5s;
}

/* ============================================
   SIGNAL PREVIEW SECTION
   ============================================ */
.signal-preview {
    background: var(--color-bg);
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}

.signal-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.signal-preview-grid {
    display: grid;
    grid-template-columns: minmax(450px, 1fr) auto;
    gap: 40px;
    align-items: center;
}

.signal-preview-content {
    padding-right: 20px;
    max-width: 550px;
}

.signal-preview-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.signal-preview-text {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.signal-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.signal-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

.signal-feature:hover {
    border-color: var(--color-gold);
    transform: translateX(8px);
}

.signal-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.signal-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.signal-feature-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.signal-preview-image {
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin-right: -100px;
}

/* Device Mockup Container */
.device-mockup-container {
    position: relative;
    width: 750px;
    max-width: 95vw;
    transition: all var(--transition-normal);
}

.device-mockup-container:hover {
    transform: translateY(-10px) scale(1.01);
}

.device-mockup {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 50px 100px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 80px rgba(201, 162, 39, 0.2));
}

@media (max-width: 1200px) {
    .device-mockup-container {
        width: 550px;
    }
}

@media (max-width: 1024px) {
    .device-mockup-container {
        width: 450px;
    }
}

@media (max-width: 768px) {
    .device-mockup-container {
        width: 100%;
        max-width: 100%;
    }
}

.signal-image-glow {
    position: absolute;
    inset: -60px;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.25) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
}

/* Hide old elements */
.signal-badge,
.iphone-frame,
.iphone-notch,
.iphone-screen,
.iphone-home {
    display: none;
}

/* ============================================
   PREMIUM PERFORMANCE STATS SECTION
   ============================================ */
.performance {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-light) 50%, var(--color-bg) 100%);
    position: relative;
}

/* Glow backdrop */
.performance::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 80%;
    background: radial-gradient(ellipse 60% 50%, rgba(212, 168, 40, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.performance-card {
    background: linear-gradient(145deg, var(--color-bg-card) 0%, rgba(10, 10, 10, 0.8) 100%);
    border-radius: var(--radius-lg);
    padding: 44px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

/* Top glow bar */
.performance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light), var(--color-gold), var(--color-gold-light), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

/* Inner glow */
.performance-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: radial-gradient(ellipse, rgba(212, 168, 40, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.performance-card:hover {
    transform: translateY(-12px);
    border-color: var(--color-border-gold);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 168, 40, 0.1);
}

.performance-card:hover::before,
.performance-card:hover::after {
    opacity: 1;
}

.performance-icon {
    font-size: 2.75rem;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

/* PENDLE-STYLE: Bigger stats numbers */
.performance-value {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    background: linear-gradient(180deg, #FFFFFF 0%, var(--color-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.performance-label {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.performance-change {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 8px 14px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-success);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* ============================================
   COMMUNITY PREVIEW SECTION
   ============================================ */
.community-preview {
    background: var(--color-bg-light);
}

.community-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.community-image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--color-border);
    transition: all var(--transition-normal);
}

.community-image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6), 0 0 60px rgba(201, 162, 39, 0.15);
    border-color: var(--color-gold);
}

.community-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.community-content {
    padding-left: 40px;
}

.community-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.community-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.community-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.community-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.community-feature-text {
    flex: 1;
}

.community-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.community-feature-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.community-stats {
    display: flex;
    gap: 32px;
    padding: 24px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

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

.community-stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.community-stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PARTNER LOGOS SECTION - PENDLE STYLE
   ============================================ */
.partners {
    background: var(--color-bg);
    padding: 80px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

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

/* PENDLE-STYLE: Gradient Title - GOLD */
.partners-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 48px;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px var(--color-gold-glow));
}

/* PENDLE-STYLE: Infinite Carousel */
.partners-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: partnersScroll 20s linear infinite;
    width: max-content;
}

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

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

/* PENDLE-STYLE: Grayscale to Color on Hover */
.partner-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: all var(--transition-normal);
}

.partner-logo:hover .partner-logo-img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.partner-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-normal);
}

.partner-logo:hover .partner-logo-text {
    color: var(--color-text);
    opacity: 1;
}

/* Legacy support for old hover effect */
.partner-logo:hover .partner-logo-img-old {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Logo invertuotas tamsiam fonui */
.partner-logo-img.logo-invert {
    filter: brightness(0) invert(1);
}

.partner-logo-desc {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ============================================
   PREMIUM STATS BAR
   ============================================ */
.stats-bar {
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg) 50%, var(--color-bg-light) 100%);
    border-top: 1px solid var(--color-border-gold);
    border-bottom: 1px solid var(--color-border-gold);
    padding: 40px 0;
    position: relative;
}

/* Subtle glow effect */
.stats-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(212, 168, 40, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    background: linear-gradient(180deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 10px var(--color-gold-glow));
}

.stat-icon {
    font-size: 2.25rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--color-border-gold), transparent);
}

/* ============================================
   PREMIUM SECTIONS (Common)
   ============================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Section separator glow line */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-gold), transparent);
    opacity: 0.5;
}

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

/* PREMIUM: Bigger section titles with gradient option */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title .gold {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--color-gold-glow));
}

/* PENDLE-STYLE: Gradient section titles */
.section-title.gradient-blue-cyan {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   PREMIUM HOW IT WORKS
   ============================================ */
.how-it-works {
    background: var(--color-bg);
    position: relative;
}

.steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: linear-gradient(145deg, var(--color-bg-card) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
    overflow: hidden;
}

/* Inner glow on hover */
.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 150px;
    background: radial-gradient(ellipse, rgba(212, 168, 40, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.step-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 168, 40, 0.1);
}

.step-card:hover::after {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 20px var(--color-gold-glow);
}

/* Solid background for number */
.step-number::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-bg);
    border-radius: var(--radius-full);
    z-index: -1;
}

.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    background: rgba(212, 168, 40, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 168, 40, 0.3);
    transition: all var(--transition-normal);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--color-gold-glow);
}

.step-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-gold);
}

.step-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.step-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.75;
}

.step-arrow {
    display: flex;
    align-items: center;
    color: var(--color-gold);
    opacity: 0.6;
    transition: all var(--transition-normal);
}

.step-arrow:hover {
    opacity: 1;
    transform: scale(1.2);
}

.step-arrow svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 8px var(--color-gold-glow));
}

/* ============================================
   PREMIUM AI AGENTS
   ============================================ */
.agents {
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg) 50%, var(--color-bg-light) 100%);
    position: relative;
}

/* Background glow */
.agents::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(212, 168, 40, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.agent-card {
    background: linear-gradient(145deg, var(--color-bg-card) 0%, rgba(15, 15, 15, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Shine sweep effect */
.agent-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transform: rotate(25deg);
    transition: left 0.8s ease;
}

.agent-card:hover::after {
    left: 150%;
}

/* Gradient border effect */
.agent-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 168, 40, 0.4) 0%, rgba(212, 168, 40, 0.1) 50%, rgba(212, 168, 40, 0.4) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    transition: all var(--transition-normal);
}

.agent-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(212, 168, 40, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.agent-card:hover::before {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
    padding: 2px;
}

.agent-card.featured {
    background: linear-gradient(145deg, rgba(20, 18, 10, 0.9) 0%, rgba(212, 168, 40, 0.1) 100%);
}

.agent-card.featured::before {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    padding: 2px;
}

.agent-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.agent-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.agent-icon.human {
    background: rgba(34, 197, 94, 0.1);
}

.agent-badge {
    padding: 4px 12px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    background: rgba(201, 162, 39, 0.2);
    color: var(--color-gold);
}

.agent-badge.beta {
    background: rgba(245, 158, 11, 0.2);
    color: var(--color-warning);
}

.agent-badge.human {
    background: rgba(34, 197, 94, 0.2);
    color: var(--color-success);
}

.agent-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.agent-strategy {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.agent-features {
    margin-bottom: 20px;
}

.agent-features li {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.agent-features li::before {
    content: '•';
    color: var(--color-gold);
}

.agent-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--color-success);
}

.agent-status.testing {
    color: var(--color-warning);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.agents-cta {
    text-align: center;
}

/* ============================================
   RESULTS
   ============================================ */
.results {
    background: var(--color-bg);
}

.results-carousel {
    position: relative;
    margin-bottom: 32px;
    overflow: hidden;
}

.results-track {
    display: flex;
    gap: 40px;
    padding: 40px 20px;
    animation: infiniteScroll 20s linear infinite;
}

.results-track.paused {
    animation-play-state: paused;
}

.results-track.manual-control {
    animation: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Active card highlight */
.result-card.active-highlight {
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 30px var(--color-gold-glow), 0 0 60px rgba(201, 162, 39, 0.3) !important;
    transform: translateY(-8px) scale(1.02) !important;
    z-index: 10;
}

/* Featured card styling is now only applied when active-highlight is present */

.result-card {
    flex-shrink: 0;
    width: 280px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.result-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 168, 40, 0.25), 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Featured card - only show gold border during manual highlight */
.result-card.featured.active-highlight {
    border-color: var(--color-gold);
    box-shadow: 0 0 30px rgba(212, 168, 40, 0.3);
}

/* No special styling for featured when not highlighted */

.result-image {
    aspect-ratio: 3/4;
    background: var(--color-bg-light);
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

.result-card:hover .result-image img {
    transform: scale(1.02);
}

.result-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.placeholder-icon {
    font-size: 2rem;
}

.placeholder-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-success);
}

.placeholder-pair {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-info {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-amount {
    font-weight: 600;
    color: var(--color-success);
}

.result-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-bg);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.results-disclaimer {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-text-dark);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   WHY FREE
   ============================================ */
.why-free {
    background: var(--color-bg-light);
}

.why-free-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-free-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.why-free-text {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.why-free-text strong {
    color: var(--color-text);
}

.why-free-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.why-free-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.quote-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--color-gold);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.quote-card blockquote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-bg);
    overflow: hidden;
}

.author-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.author-title {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    background: var(--color-bg);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 1.0625rem;
    font-weight: 500;
    text-align: left;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

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

.faq-answer p {
    padding-bottom: 24px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* ============================================
   PREMIUM FINAL CTA
   ============================================ */
.final-cta {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
    padding: 100px 0 140px;
    position: relative;
}

.cta-box {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9) 0%, rgba(212, 168, 40, 0.08) 100%);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-xl);
    padding: 100px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 80px rgba(212, 168, 40, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Animated glow */
.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light), var(--color-gold), var(--color-gold-light), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 40, 0.15);
    animation: breathe 6s ease-in-out infinite;
}

.decoration-circle:nth-child(1) {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
    animation-delay: 0s;
}

.decoration-circle:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    animation-delay: 2s;
}

.decoration-circle:nth-child(3) {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    animation-delay: 4s;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta-title .gold {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--color-gold-glow));
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.cta-feature .check-icon {
    filter: drop-shadow(0 0 6px var(--color-gold-glow));
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    font-size: 1.25rem;
    margin-bottom: 16px;
    display: block;
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-bg);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* PENDLE-STYLE: Footer titles with slash */
.footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 2px;
}

.footer-title .slash {
    color: var(--color-cyan);
    font-weight: 400;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-dark);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-text);
}

.modal-close svg {
    width: 24px;
    height: 24px;
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.modal-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.required {
    color: var(--color-gold);
    font-weight: 600;
}

.optional {
    color: var(--color-text-muted);
    font-weight: 400;
    font-size: 0.85em;
}

.form-hint-subtle {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 4px;
    opacity: 0.7;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-group input::placeholder {
    color: var(--color-text-dark);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--color-gold-glow);
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--color-warning);
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-dark);
    margin-top: 16px;
}

/* Success Modal */
.success-content {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.success-text {
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    /* === TABLET ROOT ADJUSTMENTS === */
    :root {
        --section-padding: 80px;
    }
    
    /* === HERO === */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-benefits {
        align-items: center;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    /* === STATS BAR === */
    .stats-grid {
        gap: 24px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    /* === PERFORMANCE === */
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* === AGENTS === */
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* === WHY FREE === */
    .why-free-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .why-free-content .section-title {
        text-align: center;
    }
    
    .why-free-content {
        text-align: center;
    }
    
    .why-free-benefits {
        align-items: flex-start;
    }
    
    /* === FOOTER === */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* === SIGNAL PREVIEW === */
    .signal-preview-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .signal-preview-content {
        padding-right: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .signal-preview-content .section-title {
        text-align: center;
    }
    
    .signal-feature {
        text-align: left;
    }
    
    .signal-preview-image {
        margin-right: 0;
        justify-content: center;
    }
    
    .community-preview-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .community-content {
        padding-left: 0;
        text-align: center;
        order: -1;
    }
    
    .community-content .section-title {
        text-align: center;
    }
    
    .community-feature {
        text-align: left;
    }
    
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-icon {
        display: none;
    }
}

/* ============================================
   MOBILE MENU GLOBAL STYLES - PREMIUM EDITION
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 60px;
    right: 16px;
    width: 180px;
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.98) 0%, rgba(8, 8, 8, 0.98) 100%);
    border: 1px solid rgba(212, 168, 40, 0.15);
    border-radius: 16px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 40, 0.4), transparent);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 11px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
    position: relative;
}

.mobile-nav-link:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(212, 168, 40, 0.12) 0%, rgba(212, 168, 40, 0.06) 100%);
}

.mobile-nav-link:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 0 2px 2px 0;
}

/* Hide the join button in mobile menu */
.mobile-join-btn {
    display: none !important;
}

/* Hamburger animation - global */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   MOBILE RESPONSIVE - PREMIUM COMPACT
   ============================================ */

@media (max-width: 768px) {
    /* === GLOBAL FIX - PREVENT HORIZONTAL OVERFLOW === */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw;
    }
    
    /* === HIDE SCROLLBAR ON MOBILE (still scrollable) === */
    *::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    * {
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }
    
    main, section, .container {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    /* === HIDE SECTION DOTS ON MOBILE === */
    .section-dots {
        display: none !important;
        visibility: hidden !important;
    }
    
    
    /* === ROOT VARIABLES === */
    :root {
        --section-padding: 40px;
        --section-padding-sm: 32px;
    }
    
    /* === HEADER - COMPACT === */
    .header {
        padding: 12px 0;
    }
    
    .header .container {
        gap: 12px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-bg-card);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 20px;
        transition: right var(--transition-normal);
        border-left: 1px solid var(--color-border);
    }
    
    .nav.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .lang-switcher {
        display: flex;
        background: rgba(30, 30, 30, 0.9);
        border-radius: 20px;
        padding: 3px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
    
    /* === NAVIGATION - HIDE ON MOBILE === */
    .nav {
        display: none !important;
        position: absolute !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* === HEADER - CLEAN MOBILE LOOK === */
    .header-actions .btn-primary,
    #joinBtn {
        display: none !important;
    }
    
    .header .container {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    /* Logo on left, push everything else to right */
    .logo {
        flex: 0 0 auto;
        margin-right: auto;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-menu-btn {
        flex-shrink: 0;
    }
    
    
    /* === CONTAINER - TIGHTER PADDING === */
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .header .container {
        padding: 0 16px;
    }
    
    .logo-img {
        width: 28px;
        height: 28px;
    }
    
    .logo-text {
        font-size: 0.75rem;
    }
    
    /* === HERO SECTION - PREMIUM COMPACT === */
    .hero {
        padding: 70px 0 20px;
        min-height: auto;
        overflow-x: hidden;
    }
    
    .hero-content {
        gap: 16px;
    }
    
    /* === HERO REORDER - VIDEO AFTER SUBTITLE === */
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .hero-text {
        display: contents !important;
    }
    
    .hero-badge { order: 1; }
    .hero-title { order: 2; }
    .hero-subtitle { order: 3; text-align: center; margin-bottom: 16px; }
    .hero-media { order: 4; margin: 0 0 20px !important; width: 100%; }
    .hero-benefits { order: 5; }
    .hero-cta { order: 6; }
    
    .hero-badge {
        padding: 8px 14px;
        font-size: 0.65rem;
        margin-bottom: 16px;
        display: inline-flex;
        background: rgba(212, 168, 40, 0.15);
        border: 1px solid rgba(212, 168, 40, 0.3);
        border-radius: 50px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0;
        line-height: 1.2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* === HIDE ROTATING ANIMATION ON MOBILE === */
    .rotating-text-container {
        display: none !important;
    }
    
    /* Show static text instead */
    .hero-title::after {
        content: "SMARTER WITH AI";
        display: block;
        font-size: 1.4rem;
        background: linear-gradient(135deg, #f5d485 0%, #d4a828 50%, #b8922a 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        margin-top: -4px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin: 16px 0;
        line-height: 1.5;
        opacity: 0.85;
        max-width: 300px;
    }
    
    /* === HERO BENEFITS LIST - COMPACT & ALIGNED === */
    .hero-benefits {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px;
        margin: 0 auto 20px !important;
        padding: 0 !important;
        width: 260px !important;
        box-sizing: border-box;
        align-self: center !important;
    }
    
    .hero-benefits li {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 10px;
        font-size: 0.8rem;
        text-align: left;
        width: 100% !important;
        opacity: 0.9;
    }
    
    .hero-benefits li .check-icon,
    .hero-benefits li svg {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
        flex-shrink: 0 !important;
    }
    
    .hero-benefits li span {
        flex: 1;
        text-align: left !important;
    }
    
    .hero-list li img {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    .hero-cta {
        gap: 8px;
        align-items: center;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 280px;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    /* === ALL LARGE/XLARGE BUTTONS - FIT SCREEN === */
    .btn-large,
    .btn-xlarge,
    .hero-cta .btn-xlarge,
    .cta-box .btn-xlarge,
    .agents-cta .btn-xlarge {
        max-width: 100%;
        width: 100%;
        padding: 14px 20px;
        font-size: 0.85rem;
        justify-content: center;
        box-sizing: border-box;
        border-radius: 50px;
    }
    
    .hero-cta .btn-xlarge img,
    .btn-large img,
    .btn-xlarge img {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .hero-cta-note {
        font-size: 0.7rem;
        opacity: 0.6;
        text-align: center;
    }
    
    .hero-cta-note {
        font-size: 0.7rem;
        opacity: 0.7;
    }
    
    /* === VIDEO CARD - COMPACT & PREMIUM === */
    .hero-video {
        margin-top: 8px;
    }
    
    .video-frame {
        padding: 12px;
        border-radius: 16px;
        max-width: 240px;
        margin: 0 auto;
        background: rgba(15, 15, 15, 0.8);
        border: 1px solid rgba(212, 168, 40, 0.2);
    }
    
    .video-thumbnail {
        border-radius: 10px;
        aspect-ratio: 16/9;
    }
    
    .play-button {
        width: 44px;
        height: 44px;
    }
    
    .play-button svg {
        width: 18px;
        height: 18px;
    }
    
    .video-caption {
        font-size: 0.75rem;
        margin-top: 8px;
        opacity: 0.8;
    }
    
    /* === STATS BAR - COMPACT === */
    .stats-bar {
        padding: 20px 0;
    }
    
    .stats-grid {
        gap: 16px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        padding: 12px 8px;
        text-align: center;
    }
    
    .stat-icon {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
    
    .stat-divider {
        display: none;
    }
    
    /* === SECTION TITLES - COMPACT === */
    .section-header {
        margin-bottom: 24px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    /* === PERFORMANCE SECTION - COMPACT === */
    .performance {
        padding: var(--section-padding) 0;
    }
    
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .perf-card {
        padding: 16px 12px;
        border-radius: 16px;
    }
    
    .perf-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .perf-value {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }
    
    .perf-label {
        font-size: 0.7rem;
    }
    
    .perf-badge {
        padding: 4px 8px;
        font-size: 0.6rem;
        margin-top: 8px;
    }
    
    /* === RESULTS SECTION - COMPACT === */
    .results {
        padding: var(--section-padding) 0;
    }
    
    .result-card {
        width: 200px;
        border-radius: 16px;
    }
    
    .result-image {
        height: 220px;
    }
    
    .result-info {
        padding: 10px 12px;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
    }
    
    .result-amount {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .result-date {
        font-size: 0.6rem;
        white-space: nowrap;
    }
    
    .results-track {
        gap: 16px;
        padding: 0 16px;
    }
    
    .results-controls {
        gap: 12px;
        margin-top: 16px;
    }
    
    .results-btn {
        width: 40px;
        height: 40px;
    }
    
    .results-disclaimer {
        font-size: 0.7rem;
        margin-top: 16px;
        padding: 0 16px;
    }
    
    /* === SIGNAL PREVIEW - COMPACT === */
    .signal-preview {
        padding: var(--section-padding) 0;
    }
    
    .signal-preview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .signal-preview-content {
        padding-right: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .signal-preview-content .section-title {
        text-align: center;
        font-size: 1.5rem;
    }
    
    .signal-preview-text {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .signal-features {
        gap: 10px;
    }
    
    .signal-feature {
        padding: 12px 16px;
        text-align: left;
    }
    
    .signal-feature-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .signal-feature-text h4 {
        font-size: 0.9rem;
    }
    
    .signal-feature-text p {
        font-size: 0.75rem;
    }
    
    .signal-preview-image {
        margin-right: 0;
        justify-content: center;
    }
    
    .device-mockup-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px;
        transform: scale(1.3);
        transform-origin: center top;
        margin-bottom: 80px;
        transition: transform 0.3s ease;
    }
    
    .device-mockup-container:hover {
        transform: scale(1.5) !important;
    }
    
    /* === HOW IT WORKS - COMPACT === */
    .how-it-works {
        padding: var(--section-padding) 0;
    }
    
    .steps-grid {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-card {
        min-width: auto;
        max-width: 100%;
        padding: 20px 16px;
        padding-top: 32px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        top: -14px;
    }
    
    .step-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    
    .step-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .step-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .step-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .step-arrow {
        display: none;
    }
    
    /* === AI AGENTS - COMPACT === */
    .agents {
        padding: var(--section-padding) 0;
    }
    
    .agents-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .agent-card {
        padding: 20px 16px;
    }
    
    .agent-badge {
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.5rem;
        border-radius: 50%;
    }
    
    .agent-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .agent-label {
        font-size: 0.55rem;
    }
    
    .agent-card h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .agent-tagline {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .agent-features {
        margin-bottom: 12px;
    }
    
    .agent-features li {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .agent-status {
        padding: 4px 12px;
        font-size: 0.65rem;
    }
    
    .agents-cta {
        margin-top: 24px;
    }
    
    .agents-cta .btn-xlarge {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    /* === COMMUNITY - COMPACT === */
    .community-preview {
        padding: var(--section-padding) 0;
    }
    
    .community-preview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .community-content {
        padding-left: 0;
        text-align: center;
        order: -1;
    }
    
    .community-content .section-title {
        text-align: center;
        font-size: 1.5rem;
    }
    
    .community-content > p {
        font-size: 0.9rem;
    }
    
    .community-features {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .community-feature {
        text-align: left;
        gap: 12px;
    }
    
    .community-feature-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .community-feature-text h4 {
        font-size: 0.9rem;
    }
    
    .community-feature-text p {
        font-size: 0.75rem;
    }
    
    .community-stats {
        gap: 16px;
        padding: 16px;
        justify-content: center;
    }
    
    .community-stat-value {
        font-size: 1.5rem;
    }
    
    .community-stat-label {
        font-size: 0.65rem;
    }
    
    .community-image-container {
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* === WHY FREE - COMPACT === */
    .why-free {
        padding: var(--section-padding) 0;
    }
    
    .why-free-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-free-content .section-title {
        font-size: 1.5rem;
    }
    
    .why-free-content p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .why-free-list {
        gap: 10px;
        align-items: flex-start;
    }
    
    .why-free-list li {
        font-size: 0.9rem;
        gap: 10px;
        justify-content: flex-start;
        text-align: left;
    }
    
    .why-free-benefits {
        align-items: flex-start !important;
    }
    
    .why-free-benefits li {
        justify-content: flex-start;
        text-align: left;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-quote-mark {
        font-size: 3rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-author-name {
        font-size: 0.9rem;
    }
    
    .testimonial-author-title {
        font-size: 0.75rem;
    }
    
    /* === PARTNERS - COMPACT === */
    .partners {
        padding: 24px 0;
    }
    
    .partners-title {
        font-size: 0.7rem;
        margin-bottom: 16px;
    }
    
    .partners-track img {
        height: 20px;
    }
    
    .partners-track span {
        font-size: 0.75rem;
    }
    
    /* === FAQ - COMPACT === */
    .faq {
        padding: var(--section-padding) 0;
    }
    
    .faq-list {
        gap: 10px;
    }
    
    .faq-item {
        border-radius: 12px;
        border-bottom: 1px solid var(--color-border);
    }
    
    .faq-question {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .faq-question img {
        width: 16px;
        height: 16px;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 16px;
        font-size: 0.85rem;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 16px 14px;
    }
    
    .faq-answer p {
        padding-bottom: 0;
    }
    
    /* === CTA - COMPACT === */
    .cta {
        padding: var(--section-padding) 0;
    }
    
    .cta-box {
        padding: 32px 20px;
        border-radius: 20px;
    }
    
    .cta-box h2 {
        font-size: 1.5rem;
    }
    
    .cta-box > p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .cta-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .cta-feature {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .cta-feature img {
        width: 16px;
        height: 16px;
    }
    
    .cta-box .btn-xlarge {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .cta-box .hero-cta-note {
        margin-top: 12px;
    }
    
    /* === FOOTER - COMPACT === */
    .footer {
        padding: 24px 0 16px;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 12px;
        text-align: left;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .footer-brand .footer-logo-img {
        height: 60px;
        margin-bottom: 8px;
    }
    
    .footer-brand p {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .footer-social {
        justify-content: center;
        margin-bottom: 0;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
    }
    
    .footer-links h4 {
        font-size: 0.75rem;
        margin-bottom: 8px;
        color: var(--color-gold);
    }
    
    .footer-links li {
        margin-bottom: 4px;
    }
    
    .footer-links a {
        font-size: 0.75rem;
    }
    
    .footer-links ul {
        gap: 4px;
    }
    
    .footer-bottom {
        padding-top: 12px;
        margin-top: 16px;
    }
    
    .footer-bottom p {
        font-size: 0.65rem;
    }
    
    /* === MODAL - COMPACT === */
    .modal-content {
        padding: 24px 20px;
        margin: 16px;
        border-radius: 20px;
    }
    
    .modal-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .modal-content h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .modal-content > p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 14px;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .form-group input {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .modal-content .btn-xlarge {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    /* === FLOATING ELEMENTS - HIDE ON MOBILE === */
    .floating-icon,
    .hero-orbs,
    .hero-rings {
        display: none;
    }
    
    /* === VANTA EFFECT - HIDE ON MOBILE FOR CLEANER LOOK === */
    #vanta-bg {
        display: none !important;
    }
    
    /* === HERO BACKGROUND - SUBTLE GRADIENT ON MOBILE === */
    .hero {
        background: linear-gradient(180deg, 
            #0a0a0a 0%, 
            rgba(212, 168, 40, 0.03) 30%,
            rgba(212, 168, 40, 0.05) 50%,
            rgba(212, 168, 40, 0.03) 70%,
            #0a0a0a 100%
        );
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(212, 168, 40, 0.15) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }
}

/* ============================================
   EXTRA SMALL MOBILE (iPhone SE, etc)
   ============================================ */
@media (max-width: 480px) {
    :root {
        --section-padding: 28px;
    }
    
    /* === HEADER === */
    .header {
        padding: 8px 0;
    }
    
    .logo-img {
        width: 24px;
        height: 24px;
    }
    
    .logo-text {
        font-size: 0.7rem;
    }
    
    /* === HERO === */
    .hero {
        padding: 60px 0 16px;
    }
    
    .hero-badge {
        padding: 6px 12px;
        font-size: 0.65rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-title::after {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .hero-list {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .hero-list li {
        font-size: 0.75rem;
    }
    
    .hero-cta .btn-xlarge {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    /* === VIDEO === */
    .video-frame {
        max-width: 200px;
        padding: 10px;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
    }
    
    /* === STATS === */
    .stats-grid {
        gap: 10px;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    /* === SECTIONS === */
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    /* === PERFORMANCE === */
    .perf-card {
        padding: 12px 8px;
    }
    
    .perf-value {
        font-size: 1.1rem;
    }
    
    .perf-label {
        font-size: 0.6rem;
    }
    
    /* === RESULTS === */
    .result-card {
        width: 160px;
    }
    
    .result-image {
        height: 180px;
    }
    
    .result-profit {
        font-size: 0.9rem;
    }
    
    /* === SIGNAL PREVIEW === */
    .device-mockup-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px;
        transform: scale(1.3);
        transform-origin: center top;
        margin-bottom: 80px;
        transition: transform 0.3s ease;
    }
    
    .device-mockup-container:hover {
        transform: scale(1.5) !important;
    }
    
    /* === STEPS === */
    .step-card {
        padding: 14px 12px;
        padding-top: 26px;
    }
    
    .step-card h3 {
        font-size: 0.95rem;
    }
    
    .step-card p {
        font-size: 0.75rem;
    }
    
    /* === AGENTS === */
    .agent-card {
        padding: 14px 12px;
    }
    
    .agent-card h3 {
        font-size: 0.95rem;
    }
    
    /* === CTA === */
    .cta-features {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-xlarge {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* ============================================
   REDUCED MOTION - Disabled to keep animations
   ============================================ */
/* 
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particles,
    .hero-orbs,
    .hero-rings,
    .floating-icon {
        display: none;
    }
}
*/

/* GPU Acceleration for animations */
.orb,
.floating-icon,
.hero-gradient {
    will-change: transform, opacity;
    transform: translateZ(0);
}

