
/* ============================================
   TitanU OS v2.5 Design System - ENHANCED
   Deep Tech / Futuristic Edition
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================
   CSS Variables - Enhanced Design System
   ============================================ */
:root {
    --bg-dark: #050505;
    --bg-main: #0A0A0A;
    --panel: rgba(15, 20, 25, 0.9);
    --panel-glass: rgba(15, 20, 25, 0.7);
    --gold: #FFD700;
    --gold-bright: #FFE44D;
    --cyan: #00D9FF;
    --cyan-bright: #4AFFEF;
    --purple: #A855F7;
    --slate: #1C1C1C;
    --border: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.15);
    --border-glow: rgba(0, 217, 255, 0.3);
    --text-main: #E8E8E8;
    --text-muted: #888888;
    --text-dim: #555555;
    --glow-cyan: rgba(0, 217, 255, 0.2);
    --glow-cyan-strong: rgba(0, 217, 255, 0.5);
    --glow-gold: rgba(255, 215, 0, 0.2);
    --glow-gold-strong: rgba(255, 215, 0, 0.5);
    --glow-purple: rgba(168, 85, 247, 0.2);
    
    /* Legacy variables for backward compatibility */
    --mint: var(--cyan);
    --mint-dark: #00B8D9;
    --yellow: var(--gold);
    --bg: var(--bg-main);
    --glow: var(--glow-cyan);
}

/* ============================================
   Base Styles & Reset
   ============================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-main) 100%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* ============================================
   DEEP TECH ANIMATED BACKGROUND
   ============================================ */

/* Floating Particles Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, var(--cyan) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, var(--cyan-bright) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, var(--gold) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 50%, var(--cyan) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 80%, var(--gold) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 10%, var(--cyan-bright) 0%, transparent 100%),
        radial-gradient(2px 2px at 50% 90%, var(--cyan) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 50%, var(--gold) 0%, transparent 100%);
    background-size: 200% 200%;
    animation: particle-drift 25s ease-in-out infinite;
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

@keyframes particle-drift {
    0%, 100% { background-position: 0% 0%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 50% 100%; }
    75% { background-position: 0% 50%; }
}

/* Circuit Board Pattern Background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, transparent 98%, rgba(0, 217, 255, 0.03) 98%),
        linear-gradient(0deg, transparent 98%, rgba(0, 217, 255, 0.03) 98%);
    background-size: 80px 80px;
    animation: circuit-pulse 8s ease-in-out infinite;
    opacity: 0.5;
    pointer-events: none;
    z-index: -2;
}

@keyframes circuit-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

/* ============================================
   PREMIUM GRADIENT TEXT EFFECTS
   ============================================ */
.gradient-text-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 50%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--glow-gold));
}

.gradient-text-cyan {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 50%, #00FFD4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--glow-cyan));
}

.gradient-text-premium {
    background: linear-gradient(135deg, var(--gold) 0%, var(--cyan) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px var(--glow-cyan));
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Holographic Text Effect */
.holographic-text {
    background: linear-gradient(
        90deg,
        var(--cyan) 0%,
        var(--purple) 25%,
        var(--gold) 50%,
        var(--purple) 75%,
        var(--cyan) 100%
    );
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holographic-shift 6s linear infinite;
}

@keyframes holographic-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

/* ============================================
   Typography Utility Classes
   ============================================ */
.font-display { font-family: 'Space Grotesk', sans-serif; }
.font-body { font-family: 'Inter', sans-serif; }
.font-mono { font-family: 'JetBrains Mono', monospace; }
.text-gold { color: var(--gold); }
.text-cyan { color: var(--cyan); }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }

/* Legacy color classes */
.text-mint { color: var(--cyan); }
.text-yellow { color: var(--gold); }
.text-glow {
    text-shadow:
        0 0 10px var(--cyan),
        0 0 20px var(--glow-cyan),
        0 0 40px var(--glow-cyan);
}

/* Enhanced Text Glow Variants */
.text-glow-gold {
    text-shadow:
        0 0 10px var(--gold),
        0 0 20px var(--glow-gold),
        0 0 40px var(--glow-gold);
}

.text-glow-intense {
    text-shadow:
        0 0 5px var(--cyan),
        0 0 10px var(--cyan),
        0 0 20px var(--cyan),
        0 0 40px var(--glow-cyan-strong),
        0 0 80px var(--glow-cyan);
    animation: text-pulse-glow 3s ease-in-out infinite;
}

@keyframes text-pulse-glow {
    0%, 100% {
        text-shadow:
            0 0 5px var(--cyan),
            0 0 10px var(--cyan),
            0 0 20px var(--cyan),
            0 0 40px var(--glow-cyan-strong);
    }
    50% {
        text-shadow:
            0 0 10px var(--cyan),
            0 0 20px var(--cyan),
            0 0 40px var(--cyan),
            0 0 60px var(--glow-cyan-strong),
            0 0 100px var(--glow-cyan);
    }
}

/* ============================================
   ENHANCED Scanline & Noise Overlays
   ============================================ */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(
            rgba(0, 217, 255, 0.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            transparent 99.5%,
            rgba(0, 217, 255, 0.02) 99.5%
        );
    background-size: 100% 2px, 100px 100%;
    pointer-events: none;
    z-index: 9999;
    animation: scanline-move 10s linear infinite;
}

@keyframes scanline-move {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 0 100px, 100px 0; }
}

/* CRT Flicker Effect (subtle) */
.scanlines::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        transparent 0%,
        rgba(0, 217, 255, 0.01) 50%,
        transparent 100%
    );
    animation: crt-flicker 0.15s infinite;
    pointer-events: none;
}

@keyframes crt-flicker {
    0% { opacity: 0.97; }
    50% { opacity: 1; }
    100% { opacity: 0.98; }
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNjUiIG51bU9jdGF2ZXM9IjMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIwLjAzIi8+PC9zdmc+');
    pointer-events: none;
    z-index: 9998;
    opacity: 0.3;
    mix-blend-mode: overlay;
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

/* ============================================
   Grid Utility Classes
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

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

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================
   ENHANCED Button Styles with WOW Effects
   ============================================ */
.btn {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-glow);
    background: rgba(0, 217, 255, 0.05);
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Button Glow Border Animation */
.btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--cyan), var(--gold), var(--cyan), var(--gold));
    background-size: 400% 400%;
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradient-border-spin 3s ease infinite;
}

@keyframes gradient-border-spin {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Button Inner Glow */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--glow-cyan-strong) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover {
    border-color: var(--cyan);
    box-shadow:
        0 0 20px var(--glow-cyan),
        0 0 40px var(--glow-cyan),
        inset 0 0 20px rgba(0, 217, 255, 0.1);
    transform: translateY(-3px) scale(1.02);
    color: #fff;
    text-shadow: 0 0 10px var(--cyan);
}

.btn:hover::before {
    opacity: 0.3;
}

.btn:hover::after {
    width: 300%;
    height: 300%;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow:
        0 0 10px var(--glow-cyan),
        inset 0 0 30px rgba(0, 217, 255, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    color: #000;
    border-color: var(--gold);
    font-weight: 700;
    box-shadow: 0 4px 15px var(--glow-gold);
}

.btn-primary::before {
    background: linear-gradient(45deg, var(--gold), var(--gold-bright), var(--gold), #FFA500);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    border-color: var(--gold-bright);
    box-shadow:
        0 0 25px var(--glow-gold-strong),
        0 0 50px var(--glow-gold),
        0 8px 25px rgba(0, 0, 0, 0.3);
    text-shadow: 0 0 10px var(--gold);
    color: #000;
}

.btn-secondary {
    border-color: var(--text-muted);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 217, 255, 0.08);
    box-shadow:
        0 0 15px var(--glow-cyan),
        inset 0 0 15px rgba(0, 217, 255, 0.05);
}

/* ============================================
   Badge Styles - Enhanced
   ============================================ */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: 4px;
    color: var(--cyan);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 0 15px var(--glow-cyan);
}

.badge-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ============================================
   ENHANCED Card Styles with Glassmorphism
   ============================================ */
.card {
    background: var(--panel-glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

/* Card Glow Effect */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Card Shine Effect */
.card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(0, 217, 255, 0.03) 45%,
        rgba(0, 217, 255, 0.05) 50%,
        rgba(0, 217, 255, 0.03) 55%,
        transparent 60%
    );
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.card:hover {
    border-color: var(--border-glow);
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px var(--glow-cyan),
        inset 0 0 30px rgba(0, 217, 255, 0.03);
}

.card:hover::before {
    opacity: 1;
}

.card:hover::after {
    transform: rotate(45deg) translateY(-100%);
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.card-text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   Section Headers - Enhanced
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

/* Underline Glow Effect for Section Titles */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    border-radius: 3px;
    box-shadow: 0 0 15px var(--glow-cyan);
}

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

/* ============================================
   Animations - Enhanced
   ============================================ */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 5px var(--glow-cyan); }
    50% { box-shadow: 0 0 25px var(--glow-cyan-strong), 0 0 50px var(--glow-cyan); }
    100% { box-shadow: 0 0 5px var(--glow-cyan); }
}

/* Scroll animations - REQUIRED FOR JS */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation */
.fade-in-up:nth-child(1) { transition-delay: 0.1s; }
.fade-in-up:nth-child(2) { transition-delay: 0.2s; }
.fade-in-up:nth-child(3) { transition-delay: 0.3s; }
.fade-in-up:nth-child(4) { transition-delay: 0.4s; }
.fade-in-up:nth-child(5) { transition-delay: 0.5s; }
.fade-in-up:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   Hero Section - ENHANCED with WOW Effects
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-main) 100%);
    position: relative;
    overflow: hidden;
}

/* Enhanced Hero Grid Background */
.hero-bg-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(0, 217, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: grid-move 20s linear infinite;
    z-index: 0;
    opacity: 0.4;
}

/* Add radial glow to hero */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 217, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Gold glow from bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px) translateZ(-200px); }
}

.hero-logo {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.logo-img {
    max-width: 100%;
    height: auto;
    max-height: 119px; /* 15% smaller than previous 140px */
    animation: image-flicker 4s infinite alternate;
    filter: drop-shadow(0 0 25px var(--cyan)) drop-shadow(0 0 50px var(--glow-cyan));
}

@keyframes image-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        filter: drop-shadow(0 0 25px var(--cyan)) drop-shadow(0 0 50px var(--cyan)) drop-shadow(0 0 75px var(--glow-cyan));
        opacity: 1;
    }
    20%, 24%, 55% {
        filter: drop-shadow(0 0 15px var(--cyan));
        opacity: 0.85;
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.hero-version {
    color: var(--gold);
    text-shadow: 0 0 20px var(--glow-gold);
}

.hero-sub {
    font-size: 1.6rem;
    color: var(--cyan);
    margin-bottom: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px var(--glow-cyan);
    letter-spacing: 0.05em;
}

.hero-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Hero Genesis Notice - Enhanced */
.hero-genesis-notice {
    position: relative;
    z-index: 1;
    text-shadow: 0 0 15px var(--glow-gold);
    animation: notice-pulse 3s ease-in-out infinite;
}

@keyframes notice-pulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; text-shadow: 0 0 25px var(--glow-gold-strong); }
}

/* Blinking cursor - REQUIRED FOR JS */
.cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: var(--cyan);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
    vertical-align: text-bottom;
}

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

/* ============================================
   What Is Section (UI Showcase)
   ============================================ */
.what-is {
    position: relative;
    border-top: 1px solid var(--border);
    padding: 8rem 0;
}

/* UI Showcase - REQUIRED FOR JS PARALLAX */
.ui-showcase {
    position: relative;
    height: 600px;
    margin-top: 60px;
    perspective: 1000px;
}

.ui-panel {
    position: absolute;
    background: var(--panel-glass);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.6),
        0 0 30px var(--glow-cyan),
        inset 0 0 20px rgba(0, 217, 255, 0.03);
    overflow: hidden;
    transition: all 0.3s ease-out;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.ui-panel:hover {
    border-color: var(--cyan);
    box-shadow:
        0 0 50px rgba(0, 0, 0, 0.7),
        0 0 50px var(--glow-cyan-strong),
        inset 0 0 30px rgba(0, 217, 255, 0.05);
}

.ui-panel-header {
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.15), rgba(0, 217, 255, 0.05));
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ui-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FF5F56;
    box-shadow: 0 0 8px rgba(255, 95, 86, 0.5);
    transition: transform 0.2s ease;
}
.ui-dot:nth-child(2) { background: #FFBD2E; box-shadow: 0 0 8px rgba(255, 189, 46, 0.5); }
.ui-dot:nth-child(3) { background: #27C93F; box-shadow: 0 0 8px rgba(39, 201, 63, 0.5); }

.ui-panel:hover .ui-dot {
    transform: scale(1.2);
}

/* Parallax panels - REQUIRED FOR JS */
.ui-main {
    width: 70%;
    height: 400px;
    left: 15%;
    top: 50px;
    z-index: 2;
    transform: rotateX(5deg);
}

.ui-left {
    width: 25%;
    height: 300px;
    left: 0;
    top: 100px;
    z-index: 1;
    transform: rotateY(15deg) translateZ(-50px);
}

.ui-right {
    width: 25%;
    height: 300px;
    right: 0;
    top: 100px;
    z-index: 1;
    transform: rotateY(-15deg) translateZ(-50px);
}

.ui-content {
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--cyan);
}

/* ============================================
   Problem Grid
   ============================================ */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 0, 0, 0.03);
    border: 1px solid rgba(255, 100, 100, 0.1);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.problem-item i {
    color: #ff6b6b;
    font-size: 1rem;
}

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

/* ============================================
   Architecture Diagram
   ============================================ */
.diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin: 2rem 0;
}

.diagram-node {
    padding: 1rem 1.5rem;
    background: rgba(74, 255, 239, 0.05);
    border: 1px solid var(--cyan);
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: var(--cyan);
}

.diagram-arrow {
    color: var(--text-dim);
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .diagram { flex-direction: column; }
    .diagram-arrow { transform: rotate(90deg); }
}

/* ============================================
   Features Section - ENHANCED
   ============================================ */
.features-section {
    padding: 8rem 0;
    position: relative;
}

/* Subtle floating orbs in background */
.features-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orb-float 15s ease-in-out infinite;
    pointer-events: none;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--glow-gold) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orb-float 18s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes orb-float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(20px); }
    50% { transform: translateY(-10px) translateX(-15px); }
    75% { transform: translateY(-25px) translateX(10px); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--panel-glass);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Top glow line */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s ease;
}

/* Hover shine effect */
.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(0, 217, 255, 0.02) 45%,
        rgba(0, 217, 255, 0.04) 50%,
        rgba(0, 217, 255, 0.02) 55%,
        transparent 60%
    );
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--border-glow);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px var(--glow-cyan),
        inset 0 0 30px rgba(0, 217, 255, 0.03);
}

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

.feature-card:hover::after {
    transform: rotate(45deg) translateY(-100%);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--cyan);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    text-shadow: 0 0 20px var(--glow-cyan);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
    text-shadow: 0 0 30px var(--glow-cyan-strong);
}

.feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    text-shadow: 0 0 10px var(--glow-cyan);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   Commander Edition Section - ENHANCED
   ============================================ */
.commander-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, #0f0f0f 50%, var(--bg-main) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Golden ambient glow */
.commander-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.commander-title {
    color: var(--gold);
    text-shadow:
        0 0 20px var(--glow-gold),
        0 0 40px var(--glow-gold);
    letter-spacing: 0.05em;
}

.agent-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.agent-node {
    width: 160px;
    height: 160px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.02) 100%);
    position: relative;
    box-shadow:
        0 0 30px var(--glow-gold),
        inset 0 0 30px rgba(255, 215, 0, 0.05);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Orbital ring effect */
.agent-node::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: orbit-pulse 3s ease-in-out infinite;
}

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

.agent-node:hover {
    transform: scale(1.08);
    box-shadow:
        0 0 50px var(--glow-gold-strong),
        inset 0 0 40px rgba(255, 215, 0, 0.1);
    border-color: var(--gold-bright);
}

.agent-node i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 10px;
    text-shadow: 0 0 15px var(--glow-gold);
    transition: all 0.3s ease;
}

.agent-node:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 25px var(--glow-gold-strong);
}

.agent-arrow {
    color: var(--gold);
    font-size: 1.8rem;
    animation: pulse-arrow 2s infinite;
    text-shadow: 0 0 10px var(--glow-gold);
}

@keyframes pulse-arrow {
    0% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(12px); text-shadow: 0 0 20px var(--glow-gold-strong); }
    100% { opacity: 0.3; transform: translateX(0); }
}

/* ============================================
   Why Local AI Section - ENHANCED
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    text-align: center;
}

.why-item {
    transition: transform 0.4s ease;
}

.why-item:hover {
    transform: translateY(-10px);
}

.why-item i {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 20px;
    display: inline-block;
    padding: 25px;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    box-shadow:
        0 0 25px var(--glow-cyan),
        inset 0 0 20px rgba(0, 217, 255, 0.05);
    transition: all 0.4s ease;
    background: rgba(0, 217, 255, 0.03);
}

.why-item:hover i {
    box-shadow:
        0 0 40px var(--glow-cyan-strong),
        0 0 60px var(--glow-cyan),
        inset 0 0 30px rgba(0, 217, 255, 0.1);
    transform: scale(1.1);
    text-shadow: 0 0 15px var(--cyan);
}

.why-item h3 {
    color: var(--text-main);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.why-item:hover h3 {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--glow-cyan);
}

/* ============================================
   Enterprise Section
   ============================================ */
.enterprise-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.enterprise-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.enterprise-item i {
    color: var(--gold);
}

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

/* ============================================
   Early Access Section - ENHANCED
   ============================================ */
.early-access {
    background: radial-gradient(ellipse at center, rgba(0, 217, 255, 0.15) 0%, transparent 60%);
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Animated rings */
.early-access::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50%;
    animation: ring-expand 4s ease-out infinite;
    pointer-events: none;
}

.early-access::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50%;
    animation: ring-expand 4s ease-out infinite 2s;
    pointer-events: none;
}

@keyframes ring-expand {
    0% { width: 200px; height: 200px; opacity: 0.8; }
    100% { width: 800px; height: 800px; opacity: 0; }
}

/* Signup form - REQUIRED FOR JS */
.signup-form {
    max-width: 500px;
    margin: 40px auto 0;
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.signup-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    outline: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.signup-input::placeholder {
    color: var(--text-dim);
}

.signup-input:focus {
    border-color: var(--cyan);
    box-shadow:
        0 0 20px var(--glow-cyan),
        inset 0 0 10px rgba(0, 217, 255, 0.05);
}

/* ============================================
   FAQ Section - REQUIRED FOR JS - ENHANCED
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 15px;
    background: var(--panel-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--border-glow);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px 25px;
}

.faq-icon {
    transition: transform 0.4s ease, color 0.3s ease;
    color: var(--text-muted);
}

.faq-item:hover .faq-icon {
    color: var(--cyan);
}

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

/* ============================================
   Footer - ENHANCED
   ============================================ */
.footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border-glow);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 217, 255, 0.02) 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.footer-copy {
    color: var(--text-dim);
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
}

.footer-badges {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.2em;
}

/* ============================================
   GENESIS PAGE STYLES
   ============================================ */

/* Large Countdown Timer */
.genesis-countdown-large {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-family: 'JetBrains Mono', monospace;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 35px;
    background: rgba(255, 217, 74, 0.05);
    border: 2px solid var(--gold);
    border-radius: 8px;
    min-width: 120px;
    box-shadow: 0 0 30px var(--glow-gold);
    position: relative;
}

.countdown-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 217, 74, 0.1) 0%, transparent 100%);
    border-radius: 6px;
    pointer-events: none;
}

.countdown-num {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px var(--glow-gold);
}

/* Countdown label - REQUIRED FOR JS */
.countdown-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 10px;
    text-transform: uppercase;
}

.countdown-sep {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 0 10px var(--glow-gold);
    animation: pulse-sep 1s infinite;
}

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

/* Mini Timer in Panel */
.genesis-timer-mini {
    text-align: center;
    padding: 10px;
    background: rgba(255, 217, 74, 0.1);
    border: 1px solid var(--gold);
    border-radius: 4px;
}

/* ============================================
   Video Modal - REQUIRED FOR JS
   ============================================ */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: rgba(15, 20, 25, 0.95);
    border: 2px solid var(--cyan);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 50px var(--glow-cyan);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.video-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--cyan);
    border: none;
    border-radius: 50%;
    color: var(--bg-main);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--glow-cyan);
    z-index: 10001;
}

.video-close-btn:hover {
    background: #3ADDDD;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 30px var(--glow-cyan);
}

.video-modal-content video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    background: #000;
}

/* ============================================
   Legal Modals - REQUIRED FOR JS
   ============================================ */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 40px 20px;
}

.legal-modal.active {
    display: flex;
    opacity: 1;
}

.legal-modal-content {
    position: relative;
    width: 90%;
    max-width: 750px;
    max-height: 85vh;
    background: rgba(15, 20, 25, 0.98);
    border: 2px solid var(--cyan);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 0 50px var(--glow-cyan);
    animation: modalSlideIn 0.3s ease-out;
    overflow-y: auto;
}

.legal-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    color: var(--cyan);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.legal-modal-close:hover {
    background: var(--cyan);
    color: var(--bg-main);
    transform: rotate(90deg);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.legal-modal-content h2 {
    color: var(--cyan);
    font-size: 2rem;
    margin-bottom: 25px;
    padding-right: 50px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 2px;
}

.legal-modal-body {
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-modal-body h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.legal-modal-body p {
    margin-bottom: 15px;
}

.legal-modal-body ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-modal-body ul li {
    margin-bottom: 8px;
    position: relative;
}

.legal-modal-body ul li::marker {
    color: var(--cyan);
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.legal-link {
    color: var(--cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Contact Modal Specific Styles */
.contact-modal-body {
    text-align: center;
}

.contact-intro {
    margin-bottom: 40px;
}

.contact-intro p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(74, 255, 239, 0.05);
    border: 1px solid rgba(74, 255, 239, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(74, 255, 239, 0.1);
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--bg-main);
    font-size: 1.2rem;
}

.contact-details {
    text-align: left;
}

.contact-details h3 {
    color: var(--cyan);
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.contact-details p {
    margin: 0;
    color: var(--text-muted);
}

.contact-email {
    color: var(--gold);
    font-size: 1.2rem;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--cyan);
}

.contact-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.contact-footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   Genesis Page Responsive
   ============================================ */
@media (max-width: 768px) {
    .genesis-countdown-large {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .countdown-box {
        min-width: 90px;
        padding: 15px 20px;
    }
    
    .countdown-num {
        font-size: 2.5rem;
    }
    
    .countdown-sep {
        font-size: 2rem;
    }
}

/* Video Modal Responsive */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        padding: 15px;
    }
    
    .video-close-btn {
        top: -10px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Legal Modal Responsive */
@media (max-width: 768px) {
    .legal-modal {
        padding: 20px 15px;
    }

    .legal-modal-content {
        padding: 25px 20px;
        max-height: 90vh;
    }

    .legal-modal-content h2 {
        font-size: 1.5rem;
        padding-right: 40px;
    }

    .legal-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-details {
        text-align: center;
    }
}

/* ============================================
   Main Responsive Styles
   ============================================ */
@media (max-width: 768px) {
    .hero-logo { font-size: 3rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-tagline { font-size: 1.25rem; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; }
    
    .ui-showcase { height: auto; padding-bottom: 50px; }
    .ui-main, .ui-left, .ui-right {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        margin-bottom: 20px;
        height: 300px;
    }
    
    .why-grid { grid-template-columns: 1fr; }
    
    .signup-form { flex-direction: column; }
    
    .agent-flow { flex-direction: column; }
    .agent-arrow { transform: rotate(90deg); }
    @keyframes pulse-arrow {
        0% { opacity: 0.3; transform: rotate(90deg) translateY(0); }
        50% { opacity: 1; transform: rotate(90deg) translateY(10px); }
        100% { opacity: 0.3; transform: rotate(90deg) translateY(0); }
    }
    .section-title { font-size: 2rem; }
    .section-padding { padding: 5rem 0; }
    .container { padding: 0 1.5rem; }
}

/* ============================================
   Genesis 100 Section - ULTRA PREMIUM EDITION
   with Holographic & Deep Tech Effects
   ============================================ */
.genesis-section {
    background: linear-gradient(180deg, #05060a 0%, #0a0c12 45%, #05060a 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding-bottom: 2rem; /* Reduced gap before FAQ section */
}

/* Reduce gap between Genesis and FAQ sections */
.genesis-section + .section-padding {
    padding-top: 2rem;
}

/* Subtle golden particles without heavy GPU load */
.genesis-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 35% 25%, rgba(255, 215, 0, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 65% 65%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(1px 1px at 15% 35%, rgba(255, 215, 0, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 75% 20%, rgba(255, 215, 0, 0.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 80%, rgba(255, 215, 0, 0.35) 0%, transparent 100%);
    background-size: 100% 100%, 100% 100%, 220% 220%, 220% 220%, 220% 220%;
    animation: genesis-particles 24s linear infinite;
    opacity: 0.75;
    pointer-events: none;
}

@keyframes genesis-particles {
    0%, 100% { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
    50% { background-position: 0% 0%, 0% 0%, 80% 60%, 30% 80%, 70% 30%; }
}

.genesis-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
}

.genesis-card {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(140deg,
        rgba(15, 17, 26, 0.95) 0%,
        rgba(10, 12, 18, 0.92) 55%,
        rgba(15, 17, 26, 0.95) 100%);
    border: 2px solid rgba(255, 215, 0, 0.35);
    border-radius: 22px;
    padding: 3rem;
    position: relative;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.65),
        0 0 60px rgba(255, 215, 0, 0.08);
    z-index: 1;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* Enhanced border glow */
.genesis-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.28) 0%, rgba(255, 215, 0, 0.08) 50%, rgba(255, 215, 0, 0.28) 100%);
    background-size: 200% 200%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0.25;
    filter: blur(12px);
    animation: gradient-shift 12s linear infinite;
}

/* Holographic shimmer effect */
.genesis-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.07) 50%,
        transparent 100%
    );
    animation: holographic-shimmer 12s linear infinite;
    pointer-events: none;
    border-radius: 22px;
    opacity: 0.12;
}

@keyframes holographic-shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes genesis-glow-premium {
    0% {
        box-shadow:
            0 0 80px rgba(218, 165, 32, 0.4),
            0 0 120px rgba(184, 134, 11, 0.25),
            0 20px 60px rgba(0, 0, 0, 0.8),
            inset 0 0 100px rgba(218, 165, 32, 0.06),
            inset 0 2px 4px rgba(255, 215, 0, 0.15);
    }
    100% {
        box-shadow:
            0 0 100px rgba(218, 165, 32, 0.5),
            0 0 150px rgba(184, 134, 11, 0.35),
            0 25px 70px rgba(0, 0, 0, 0.9),
            inset 0 0 120px rgba(218, 165, 32, 0.1),
            inset 0 2px 6px rgba(255, 215, 0, 0.25);
    }
}

@keyframes border-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.genesis-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.genesis-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    margin-bottom: 0.75rem;
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.35);
    background: rgba(255, 215, 0, 0.06);
}

.genesis-key-icon {
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: key-float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.35));
    position: relative;
}

/* Holographic ring around key */
.genesis-key-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: key-ring-pulse 5s ease-in-out infinite;
}

.genesis-key-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: key-ring-pulse 5s ease-in-out infinite 0.5s;
}

@keyframes key-ring-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.8; }
}

.genesis-key-icon svg {
    display: block;
    animation: key-glow-pulse 8s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes key-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(3deg); }
}

@keyframes key-glow-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.55));
    }
    50% {
        filter: drop-shadow(0 0 22px rgba(255, 215, 0, 0.7));
    }
}

.genesis-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 50%, #B8860B 100%);
    color: #000;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    box-shadow:
        0 4px 15px rgba(218, 165, 32, 0.5),
        0 0 30px rgba(255, 215, 0, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    animation: badge-pulse-premium 2.5s ease-in-out infinite;
    text-transform: uppercase;
}

@keyframes badge-pulse-premium {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 4px 15px rgba(218, 165, 32, 0.5),
            0 0 30px rgba(255, 215, 0, 0.4),
            inset 0 1px 3px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow:
            0 6px 20px rgba(218, 165, 32, 0.7),
            0 0 40px rgba(255, 215, 0, 0.6),
            inset 0 1px 3px rgba(255, 255, 255, 0.4);
    }
}

.genesis-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    font-weight: 700;
    background: linear-gradient(120deg, #FFFFFF 0%, #FFD76F 45%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 6px 18px rgba(255, 215, 0, 0.35);
    filter: none;
    margin-bottom: 0.8rem;
    letter-spacing: 0.12em;
}

.genesis-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #DAA520;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 15px rgba(218, 165, 32, 0.5);
}

.genesis-subtitle-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.genesis-lifetime-access {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-top: 0.6rem;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFE8A3 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 26px rgba(255, 215, 0, 0.25);
    text-transform: uppercase;
    line-height: 1.2;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.genesis-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 217, 74, 0.1);
    border: 1px solid rgba(255, 217, 74, 0.3);
    border-radius: 8px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
}

.urgency-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.urgency-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.genesis-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.genesis-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.genesis-feature-item:hover {
    background: rgba(0, 217, 255, 0.05);
    transform: translateX(5px);
}

.genesis-feature-item i {
    color: var(--cyan);
    font-size: 1.1rem;
    text-shadow: 0 0 10px var(--glow-cyan);
    transition: all 0.3s ease;
}

.genesis-feature-item:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 20px var(--glow-cyan-strong);
}

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

.genesis-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 50%, var(--gold) 100%);
    background-size: 200% 200%;
    color: #000;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 4px 25px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(218, 165, 32, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    animation: btn-gradient-shift 3s ease infinite;
}

@keyframes btn-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Shine effect on button */
.genesis-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: btn-shine 4s ease-in-out infinite;
}

@keyframes btn-shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.genesis-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 10px 40px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(218, 165, 32, 0.5),
        inset 0 1px 3px rgba(255, 255, 255, 0.4);
}

.genesis-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.genesis-btn-text {
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.genesis-btn-price {
    background: rgba(0, 0, 0, 0.25);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.genesis-guarantee {
    margin-top: 1.2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
}
/* ============================================
   Genesis Pricing Tiers - ENHANCED
   ============================================ */
.pricing-tiers {
    margin: 2rem 0 3rem;
}

.pricing-tiers-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px var(--glow-gold);
}

.pricing-tier {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pricing-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-tier:hover::before {
    opacity: 1;
}

.tier-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tier-status-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tier-info {
    flex: 1;
}

.tier-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.active-badge {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    margin-left: 0.5rem;
    animation: pulse-glow 2s infinite;
}

.tier-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.tier-spots {
    font-size: 0.85rem;
    color: var(--cyan);
    font-weight: 500;
}

.tier-unlock {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.tier-status {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Tier States */
.tier-closed {
    opacity: 0.6;
    background: rgba(100, 100, 100, 0.05);
}

.tier-closed .tier-status-icon {
    color: var(--text-muted);
}

.tier-closed .tier-price {
    color: var(--text-muted);
}

.tier-closed .tier-status {
    background: rgba(100, 100, 100, 0.2);
    color: var(--text-muted);
}

.tier-active {
    background: linear-gradient(135deg,
        rgba(218, 165, 32, 0.12) 0%,
        rgba(184, 134, 11, 0.08) 50%,
        rgba(139, 101, 8, 0.12) 100%);
    border: 3px solid #DAA520;
    box-shadow:
        0 0 40px rgba(218, 165, 32, 0.5),
        0 0 60px rgba(184, 134, 11, 0.3),
        0 8px 30px rgba(0, 0, 0, 0.6),
        inset 0 0 30px rgba(218, 165, 32, 0.15),
        inset 0 2px 4px rgba(255, 215, 0, 0.2);
    animation: pulse-border-premium 6s ease-in-out infinite;
    transform: scale(1.01);
}

.tier-active::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #FFD700, #DAA520, #B8860B);
    border-radius: 14px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(12px);
    animation: gold-shimmer 4s ease-in-out infinite;
}

@keyframes gold-shimmer {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.tier-active .tier-status-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    animation: icon-glow 2s ease-in-out infinite;
}

@keyframes icon-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1)); }
}

.tier-active .tier-status-active {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 50%, #B8860B 100%);
    color: #000;
    font-weight: 700;
    box-shadow:
        0 4px 20px rgba(218, 165, 32, 0.5),
        0 0 30px rgba(255, 215, 0, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tier-active .tier-status-active:hover {
    transform: translateY(-3px);
    box-shadow:
        0 6px 25px rgba(218, 165, 32, 0.7),
        0 0 40px rgba(255, 215, 0, 0.6),
        inset 0 1px 3px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #FFE44D 0%, #FFD700 50%, #DAA520 100%);
}

.tier-locked {
    opacity: 0.4;
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.4) 0%, rgba(20, 20, 20, 0.6) 100%);
    border-color: rgba(80, 80, 80, 0.2);
}

.tier-locked .tier-status-icon {
    color: var(--text-dim);
    opacity: 0.5;
}

.tier-locked .tier-price {
    color: var(--text-muted);
}

.tier-locked .tier-status {
    background: rgba(50, 50, 50, 0.3);
    color: var(--text-dim);
}

.pricing-notice {
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--gold);
    margin-top: 1.5rem;
    font-style: italic;
}

@keyframes pulse-border-premium {
    0%, 100% {
        border-color: #DAA520;
        box-shadow:
            0 0 40px rgba(218, 165, 32, 0.5),
            0 0 60px rgba(184, 134, 11, 0.3),
            0 8px 30px rgba(0, 0, 0, 0.6),
            inset 0 0 30px rgba(218, 165, 32, 0.15),
            inset 0 2px 4px rgba(255, 215, 0, 0.2);
    }
    50% {
        border-color: #FFD700;
        box-shadow:
            0 0 50px rgba(218, 165, 32, 0.7),
            0 0 80px rgba(184, 134, 11, 0.5),
            0 10px 40px rgba(0, 0, 0, 0.7),
            inset 0 0 40px rgba(218, 165, 32, 0.25),
            inset 0 2px 6px rgba(255, 215, 0, 0.3);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 8px var(--gold);
    }
    50% {
        opacity: 0.7;
        text-shadow: 0 0 4px var(--gold);
    }
}


@media (max-width: 768px) {
    .genesis-card {
        padding: 2rem 1.5rem;
    }
    
    .genesis-title {
        font-size: 2.5rem;
    }
    
    .genesis-features {
        grid-template-columns: 1fr;
    }
    
    .genesis-btn {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 2rem;
    }
    
    .urgency-number {
        font-size: 2.5rem;
    }
    
    .pricing-tiers-title {
        font-size: 1rem;
    }
    
    .pricing-tier {
        padding: 1rem;
    }
    
    .tier-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .tier-name {
        font-size: 1rem;
    }
    
    .active-badge {
        display: block;
        margin-left: 0;
        margin-top: 0.25rem;
    }
    
    .tier-price {
        font-size: 1.1rem;
    }
}
/* ============================================
   ADDITIONAL WOW EFFECTS - DEEP TECH
   Added at the end of the file
   ============================================ */
/* ============================================
   ADDITIONAL WOW EFFECTS - DEEP TECH ELEMENTS
   ============================================ */

/* Hex Watermark in corner */
.hex-watermark {
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: rgba(0, 217, 255, 0.15);
    letter-spacing: 3px;
    pointer-events: none;
    z-index: 1;
    animation: hex-flicker 5s ease-in-out infinite;
    text-shadow: 0 0 5px var(--glow-cyan);
}

@keyframes hex-flicker {
    0%, 90%, 100% { opacity: 0.15; }
    92%, 94%, 96% { opacity: 0.08; }
    93%, 95% { opacity: 0.2; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--cyan), transparent);
    position: relative;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    right: -3px;
    height: 6px;
    background: var(--cyan);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--glow-cyan);
    animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scroll-dot {
    0%, 100% { top: 0; opacity: 1; }
    50% { top: 30px; opacity: 0.5; }
}

/* Enhanced link hover effects */
a {
    transition: all 0.3s ease;
}

a:hover {
    text-shadow: 0 0 10px currentColor;
}

/* Selection styling */
::selection {
    background: var(--cyan);
    color: var(--bg-dark);
}

::-moz-selection {
    background: var(--cyan);
    color: var(--bg-dark);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cyan), var(--gold));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--cyan-bright), var(--gold-bright));
}

/* Focus states for accessibility */
*:focus {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
    box-shadow: 0 0 20px var(--glow-cyan);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

/* Responsive scroll indicator */
@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
    
    .hex-watermark {
        bottom: 15px;
        right: 15px;
        font-size: 0.55rem;
    }
}

/* ============================================
   V3 Screenshots Showcase Styles
   ============================================ */
.v3-showcase {
    max-width: 1100px;
    margin: 0 auto;
}

.v3-screenshot-container {
    margin-bottom: 2rem;
}

.v3-screenshot-wrapper {
    background: rgba(15, 20, 25, 0.9);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 217, 255, 0.1);
    transition: all 0.4s ease;
}

.v3-screenshot-wrapper:hover {
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 217, 255, 0.2);
    transform: translateY(-5px);
}

.v3-screenshot-wrapper.main-screenshot {
    max-width: 900px;
    margin: 0 auto;
}

.screenshot-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(10, 12, 18, 0.95);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.v3-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-caption {
    padding: 1.25rem 1.5rem;
    background: rgba(10, 12, 18, 0.8);
    border-top: 1px solid rgba(0, 217, 255, 0.15);
}

.screenshot-caption h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.screenshot-caption p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.v3-screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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