/* ===== SOLIUS LANDING PAGE - FRAME 1 (HERO SECTION) ===== */
/* Built by BroJack Agent #1 - October 9, 2025 */

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== UNIFIED GRADIENT TEXT ===== */
/* Applied to all Orbitron headers for consistent branding */
.gradient-text {
    background: linear-gradient(95.39deg, #FFFFFF 10.43%, #9999FF 47.87%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVIGATION BAR - FROSTED GLASS by Agent #3 ===== */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    
    /* Frosted glass effect */
    background: rgba(0, 9, 30, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    
    /* Subtle border and shadow */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    
    padding: 12px 80px 12px;
    transition: all 0.3s ease;
}

/* Enhanced blur when scrolled */
.landing-nav.scrolled {
    background: rgb(0 9 30 / 44%);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 200px;
    height: 52px;
}

.nav-logo img {
    width: 180px;
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-buttons {
    display: flex;
    gap: 24px;
}

.btn-web-app {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 40px;
    gap: 8px;
    background: #FFFFFF;
    border: none;
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #00091E;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-web-app .btn-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0.3);
}

.btn-web-app:hover {
    transform: scale(1.05);
}

.btn-sign-in {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 40px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-sign-in:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== HERO SECTION - CLIPPING CONTAINER ===== */
.hero-section {
    position: relative;
    width: calc(100% - 160px);
    min-height: calc(100vh - 140px);
    margin: 130px 80px 40px 80px;  /* Extra top margin to show border-radius */
    padding: 80px;
    overflow: hidden;
    border-radius: 40px;  /* Consistent with all sections */
    background: linear-gradient(135deg, #010101 0%, #0a0e1f 50%, #00091E 100%);
    display: flex;
    align-items: center;
    scroll-margin-top: 100px; /* Offset for fixed nav */
}

/* Dark gradient fade-in at top - DISABLED to show top border-radius */
.hero-section::before {
    display: none;  /* Hidden to show top border-radius */
}

/* Dark gradient fade-out at bottom */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #000000 0%, rgba(10, 14, 31, 0.8) 50%, transparent 100%);
    z-index: 5;
    pointer-events: none;
    border-radius: 0 0 40px 40px;
}

/* Desktop frame - REMOVED (not needed with new structure) */
.desktop-frame {
    display: none;
}

/* Background blur - ANIMATED flying blur! */
.hero-blur-left {
    position: absolute;
    width: 300px;
    height: 800px;
    background: linear-gradient(329.21deg, rgba(181, 185, 255, 0.4) 4.43%, #555DFF 92.42%);
    filter: blur(150px);
    transform: rotate(-29.02deg);
    z-index: 1;
    /* Animation will be controlled by JS for smooth sine wave top movement */
}

/* ===== LEFT SIDE - CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 10;
    width: 651px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Keep children left-aligned, no stretching! */
    gap: 40px;
    margin-top: -60px;
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 64px;
    line-height: 72px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
}

.hero-tags {
    display: flex;
    gap: 16px;
}

.tag {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tag span {
    font-size: 20px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.5);
}

.tag-dot {
    position: relative;
    width: 12px;
    height: 12px;
    background: rgba(255, 85, 88, 0.2);
    border-radius: 50%;
}

.tag-dot::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    left: 2px;
    top: 2px;
    background: rgba(255, 85, 88, 0.4);
    border-radius: 50%;
}

.tag-dot::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    left: 4px;
    top: 4px;
    background: #FF5558;
    border-radius: 50%;
}

/* ===== UNIFIED GLASSY BUTTON COMPONENT ===== */
/* This is the standard button used throughout the landing page */
/* Based on Frame 1 "Get Started" button - LEGENDARY glass icing effect! */

.btn-glassy {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-block; /* Tight to content - no stretching! */
    overflow: visible; /* Allow glow to extend slightly */
    isolation: isolate; /* Create stacking context */
}

/* Glow layer behind button - TIGHTER positioning */
.btn-glassy .btn-glow {
    position: absolute;
    width: 100px; /* FIXED width - prevents stretching! */
    height: 50px; /* FIXED height - prevents stretching! */
    right: -5px; /* Tighter positioning! */
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(266.42deg, #000DFF -21.15%, rgba(85, 93, 255, 0) 88.34%);
    border: 2px solid #969CFF;
    filter: blur(10px);
    border-radius: 40px;
    pointer-events: none;
    z-index: -1;
}

/* Button surface - glass icing effect */
.btn-glassy .btn-content {
    position: relative;
    z-index: 1; /* Above glow layer */
    display: inline-flex; /* AUTO WIDTH! */
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
        0 4px 12px rgba(0, 13, 255, 0.3);
    white-space: nowrap; /* Prevent text wrapping */
}

.btn-glassy:hover .btn-content {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        inset 0 1px 0 0 rgba(255, 255, 255, 0.6),
        0 6px 16px rgba(0, 13, 255, 0.4);
}

/* Size variants - FONT SIZE ONLY (width is auto!) */
.btn-glassy.btn-large .btn-content {
    font-size: 20px;
    line-height: 28px;
}

.btn-glassy.btn-medium .btn-content {
    font-size: 18px;
    line-height: 24px;
}

.btn-glassy.btn-small .btn-content {
    font-size: 16px;
    line-height: 20px;
}

/* ===== RIGHT SIDE - ORBIT GRAPHIC ===== */
/* Orbit container - inside hero section, positioned on right */
.orbit-container {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
}

/* Grid lines with radial fade (bright center, fades out) */
.orbit-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-mask: radial-gradient(circle at center, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
    mask: radial-gradient(circle at center, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
}

.grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
}

.grid-line-h {
    width: 100%;
    height: 1px;
}

.grid-line-v {
    width: 1px;
    height: 100%;
}

/* Blur effects - adjusted for new orbit size */
.orbit-blur-1 {
    position: absolute;
    width: 450px;
    height: 280px;
    left: 100px;
    top: 60px;
    background: linear-gradient(93.39deg, rgba(58, 43, 198, 0.7) 12.83%, rgba(28, 21, 96, 0.7) 79.82%);
    filter: blur(70px);
    transform: rotate(-37.78deg);
}

.orbit-blur-2 {
    position: absolute;
    width: 380px;
    height: 90px;
    left: 180px;
    top: 200px;
    background: linear-gradient(94.03deg, rgba(127, 76, 255, 0.4) 4.59%, rgba(150, 85, 255, 0.4) 98.79%);
    filter: blur(60px);
    transform: rotate(-29.77deg);
}

.orbit-blur-3 {
    position: absolute;
    width: 130px;
    height: 40px;
    left: 310px;
    top: 300px;
    background: linear-gradient(91.62deg, rgba(255, 232, 255, 0.7) 14.47%, rgba(229, 200, 228, 0.14) 128.49%);
    filter: blur(50px);
    transform: rotate(-37.78deg);
}

/* Orbit ellipse - full ring with ANIMATED gradient pulse */
.orbit-ellipse {
    position: absolute;
    width: 250px;
    height: 500px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(60deg);
    border-radius: 50%;
    background: linear-gradient(116deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 25%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.05) 100%
    );
    -webkit-mask: radial-gradient(ellipse 125px 250px at center, transparent 98.5%, white 100%);
    mask: radial-gradient(ellipse 125px 250px at center, transparent 98.5%, white 100%);
    transition: background 0.1s linear;
}

/* Star - centered in orbit container (now outside ellipse, no masking!) */
.orbit-star {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.star-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(150, 156, 255, 0.4) 30%, transparent 70%);
    filter: blur(30px);
}

.orbit-star img {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 1.2)) drop-shadow(0 0 80px rgba(150, 156, 255, 0.8));
    position: relative;
    z-index: 1;
}

/* Floating labels - independent animation */
.orbit-label {
    position: absolute;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-weight: 500;
    font-size: 20px;
    opacity: 0.2;
    transition: opacity 0.8s ease, transform 0.3s ease;
}

/* Individual float animations with different speeds */
@keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

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

@keyframes float5 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-7px); }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-13px); }
}

/* Label positions - relative to centered orbit with independent animations */
.orbit-label-fast {
    left: 180px;
    top: 80px;
    animation: float1 3.2s ease-in-out infinite;
}

.orbit-label-wallets {
    right: 40px;
    top: 80px;
    animation: float2 2.8s ease-in-out infinite 0.5s;
}

.orbit-label-features {
    left: 50px;
    top: 180px;
    animation: float3 3.5s ease-in-out infinite 1s;
}

.orbit-label-bots {
    left: 280px;
    top: 180px;
    animation: float4 3s ease-in-out infinite 1.5s;
}

.orbit-label-crypto {
    left: 50px;
    top: 350px;
    animation: float5 2.9s ease-in-out infinite 0.8s;
}

.orbit-label-secure {
    right: 60px;
    bottom: 80px;
    animation: float6 3.3s ease-in-out infinite 1.2s;
}

/* Glowing state for labels - just brighten up, no glow effects */
.orbit-label.glowing {
    opacity: 0.6 !important;
    background: rgba(150, 156, 255, 0.15);
}

/* ==========================================
   ORBIT GLOSSY ICONS (Agent #8)
   ========================================== */

.orbit-icons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orbit-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-icon 3s ease-in-out infinite;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(2.2px); /* 🔥 Filip's magic touch - makes it POP! */
    /* Position will be calculated in JS */
}

/* Icon image styling */
.orbit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
    position: relative;
    z-index: 3;
}

/* Glossy glow underneath icon - RADIAL GRADIENT BLUR! */
.icon-glossy-glow {
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(113, 120, 254, 0.4) 40%,
        rgba(85, 93, 255, 0.2) 60%,
        transparent 100%
    );
    filter: blur(25px);
    opacity: 0.7;
    z-index: 1;
    animation: pulse-glossy 2.5s ease-in-out infinite;
    mix-blend-mode: screen; /* Makes it look more glassy */
}

/* Backdrop effect behind icon (glass morphism) */
.orbit-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Floating animation */
@keyframes float-icon {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* Enhanced glossy pulse */
@keyframes pulse-glossy {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
        filter: blur(25px);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
        filter: blur(30px);
    }
}

/* Hover effects - LEGENDARY! */
.orbit-icon:hover {
    transform: scale(1.15) translateY(-5px);
}

.orbit-icon:hover img {
    filter: 
        drop-shadow(0 6px 16px rgba(255, 255, 255, 0.5))
        brightness(1.2);
}

.orbit-icon:hover .icon-glossy-glow {
    opacity: 1;
    transform: scale(1.3);
    filter: blur(35px);
}

/* Click animation */
.orbit-icon:active {
    transform: scale(0.95);
}

/* Stagger animation delays for multiple icons */
.orbit-icon:nth-child(1) {
    animation-delay: 0s;
}

.orbit-icon:nth-child(2) {
    animation-delay: 0.3s;
}

.orbit-icon:nth-child(3) {
    animation-delay: 0.6s;
}

.orbit-icon:nth-child(4) {
    animation-delay: 0.9s;
}

.orbit-icon:nth-child(5) {
    animation-delay: 1.2s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .orbit-container {
        opacity: 0.3;
        width: 600px;
    }
    
    .hero-content {
        width: 100%;
    }
    
    /* Scale down orbit icons on tablet */
    .orbit-icon {
        width: 60px;
        height: 60px;
    }
    
    .icon-glossy-glow {
        filter: blur(15px);
    }
}

@media (max-width: 768px) {
    .landing-nav {
        padding: 8px 20px;
    }
    
    .nav-container {
        gap: 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-section {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 48px;
        line-height: 56px;
    }
    
    .orbit-container {
        display: none;
    }
    
    /* Hide orbit icons on mobile (orbit is hidden) */
    .orbit-icons-container {
        display: none;
    }
}

/* ===== WALLET SYNC SECTION (NEW FRAME) ===== */
.wallet-sync-section {
    position: relative;
    width: calc(100% - 160px);
    margin: 40px 80px;
    padding: 80px;
    border-radius: 40px;
    background: linear-gradient(135deg, #010101 0%, #0a0e1f 50%, #00091E 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    overflow: hidden;
    min-height: 600px;
    text-align: center;
    scroll-margin-top: 100px; /* Offset for fixed nav */
}

.wallet-sync-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin: 0;
}

.wallet-sync-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 600px;
}

/* App Preview */
.wallet-sync-preview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin-top: 32px;
}

.preview-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.preview-image:hover {
    transform: scale(1.02);
}

/* Purple Glow Effect Behind Image */
.preview-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(85, 93, 255, 0.4) 0%, rgba(85, 93, 255, 0) 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .wallet-sync-section {
        padding: 60px 40px;
    }
    
    .wallet-sync-title {
        font-size: 48px;
    }
    
    .preview-image {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .wallet-sync-section {
        width: calc(100% - 40px);
        margin: 20px;
        padding: 40px 24px;
    }
    
    .wallet-sync-title {
        font-size: 36px;
    }
    
    .wallet-sync-subtitle {
        font-size: 16px;
    }
    
    .preview-image {
        max-width: 100%;
    }
}

/* ===== SERVICES SECTION (FRAME 2) ===== */
/* Built by BroJack Agent #2 - October 9, 2025 */

.services-section {
    position: relative;
    width: calc(100% - 160px);
    min-height: 100vh;
    margin: 40px 80px;
    padding: 80px;
    background: linear-gradient(135deg, #010101 0%, #0a0e1f 50%, #00091E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 40px;
    scroll-margin-top: 100px; /* Offset for fixed nav */
}

/* REMOVED: Dark gradient fade effects - clean rounded corners instead! */

/* Dot grid background pattern - INSIDE MASK */
.dot-grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #05102A;
    background-image: 
        radial-gradient(circle, #989DFF 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

/* ===== SERVICES HEADER (TOP RIGHT) - POSITIONED RELATIVE TO MASK! ===== */

.services-header {
    position: absolute;
    top: -50px; /* Above the mask container */
    right: 0; /* Aligned to right edge of 1280px mask */
    width: 530px;
    z-index: 10;
}

.btn-why-us {
    padding: 12px 32px;
    background: transparent;
    border: 2px solid rgba(150, 156, 255, 0.5);
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #969CFF;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 24px;
}

.btn-why-us:hover {
    border-color: #969CFF;
    background: rgba(150, 156, 255, 0.1);
    transform: translateY(-2px);
}

.services-title {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px; /* Smaller to fit inside mask */
    line-height: 56px;
    margin-bottom: 16px;
    white-space: nowrap; /* ONE LINE - NO WRAPPING! */
}

.services-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF; /* Pure white - not grayed out! */
    margin-bottom: 32px;
}


/* ===== LIQUID MASK CONTAINER ===== */

.liquid-mask-container {
    position: relative;
    width: 1280px;
    height: 710px;
    margin: 0 auto;
}

.masked-content {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: url(#liquidMask);
    -webkit-clip-path: url(#liquidMask); /* Safari support */
    background: #05102A;
}

/* ===== GLOWING ORBS CANVAS ===== */

.glowing-orbs-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* ===== SERVICE CARDS ===== */

.service-card {
    position: absolute;
    border-radius: 40px;
    padding: 40px;
    /* NO BACKGROUND - cards are transparent! */
    transition: all 0.3s;
    overflow: visible;
    z-index: 3;
}

/* Card hover removed - button glow is enough! */

.card-glow {
    /* DISABLED by Agent #3 - no glow on card hover! */
    display: none;
}

/* Card positioning - POLISHED by Filip */
.service-card-crypto {
    /* top: 50px; */
    /* left: 50px; */
    width: 320px;
    height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.service-card-launches {
    /* top: 0; */
    left: 380px;
    width: 320px;
    height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Launches card - button spacing (AGENT #7 - REFINED) */
.service-card-launches .btn-glassy {
    margin-top: 30px;  /* Push button down specifically */
}

.service-card-bots {
    top: 350px;
    left: 0px;
    width: 690px;
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Bots card - constrain text width (AGENT #7) */
.service-card-bots .card-content {
    max-width: 280px;  /* Prevents text flowing into robot */
}

.service-card-bots .card-description {
    max-width: 260px;  /* Even narrower paragraph */
    line-height: 22px; /* Tighter line-height */
}

/* Bots card - button spacing (AGENT #7 REFINED) */
.service-card-bots .btn-glassy {
    margin-top: 50px;  /* Push button down */
}

.service-card-games {
    top: 350px;
    left: 750px;
    width: 530px;
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Games card - button spacing (AGENT #7 REFINED) */
.service-card-games .btn-glassy {
    margin-top: 50px;  /* Push button down */
}

/* Card content - LEFT aligned, stacked vertically, better spacing */
.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px; /* Consistent spacing between elements */
    width: 100%;
}

.card-title {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    margin: 0; /* Remove default margin */
}

.card-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0; /* Remove default margin */
}

.card-button {
    margin-top: auto; /* Push button to bottom if space allows */
}


/* Card graphics - BOTTOM RIGHT positioned */
.card-graphic {
    position: absolute;
    bottom: 20px;
    right: 20px;
    pointer-events: none;
}

.card-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.crypto-graphic {
    width: 107px;
    height: 107px;
}

.rocket-graphic {
    width: 88px;
    height: 86px;
}

/* ===== BOTS CARD - ROBOT GRAPHIC (ENHANCED BY AGENT #7) ===== */
.bot-graphic {
    width: 280px;   /* Changed from 180px - MUCH BIGGER! */
    height: 280px;  /* Changed from 180px - MUCH BIGGER! */
    bottom: 40px;   /* Keep inside card */
}

/* Robot background glow with deep space blue hue + opacity */
.bot-graphic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('../assets/robot-bg.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    
    /* LEGENDARY filter settings - Filip's perfect combo! */
    filter: hue-rotate(299deg) saturate(2.5) brightness(1.7);
    opacity: 0.3;
    z-index: -1;
}

/* ===== GAMES CARD - CONTROLLER GRAPHIC (ENHANCED BY AGENT #7 - PERFECTED) ===== */
.controller-graphic {
    width: 270px;   /* Filip's perfect size! */
    height: 270px;
    bottom: 0px;    /* Flush with card bottom */
    right: 20px;
}

/* ===== PLACEHOLDER GRAPHICS (CSS ART) ===== */

/* Ethereum Icon */
.eth-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eth-diamond {
    width: 60px;
    height: 100px;
    background: linear-gradient(135deg, #7F4CFF 0%, #555DFF 100%);
    clip-path: polygon(50% 0%, 100% 40%, 50% 100%, 0% 40%);
    filter: drop-shadow(0 0 20px rgba(127, 76, 255, 0.6));
}

.eth-arrow {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    clip-path: polygon(50% 100%, 0 40%, 20% 40%, 50% 70%, 80% 40%, 100% 40%);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

/* Rocket */
.rocket {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rocket-body {
    width: 60px;
    height: 120px;
    background: linear-gradient(180deg, #C5C5F6 0%, #7F4CFF 100%);
    border-radius: 30px 30px 10px 10px;
    filter: drop-shadow(0 0 20px rgba(197, 197, 246, 0.6));
}

.rocket-window {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.rocket-flame {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(180deg, #FF5558 0%, transparent 100%);
    border-radius: 50%;
    filter: blur(10px);
    animation: flame-pulse 0.5s ease-in-out infinite;
}

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

/* Robot - PLACEHOLDER (replace with actual 3D graphic later) */
.robot {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.robot-head {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #1A1A3E 0%, #0A0A1E 100%);
    border-radius: 20px;
    border: 2px solid #555DFF;
    position: relative;
}

.robot-eyes {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    display: flex;
    gap: 20px;
}

.robot-eyes::before,
.robot-eyes::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #00D9FF;
    border-radius: 50%;
    box-shadow: 0 0 15px #00D9FF;
    animation: blink 3s ease-in-out infinite;
}

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

.robot-body {
    width: 100px;
    height: 80px;
    background: linear-gradient(135deg, #2A2A5E 0%, #1A1A3E 100%);
    border-radius: 15px;
    margin-top: 10px;
    position: relative;
    border: 2px solid #555DFF;
}

.robot-body::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(85, 93, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.robot-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(85, 93, 255, 0.3) 0%, transparent 70%);
    filter: blur(30px);
}

/* Controller */
.controller {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.controller-body {
    width: 140px;
    height: 80px;
    background: linear-gradient(135deg, #2A2A5E 0%, #1A1A3E 100%);
    border-radius: 40px;
    border: 3px solid #555DFF;
    position: relative;
}

.controller-buttons {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 40px;
    height: 40px;
}

.controller-buttons::before,
.controller-buttons::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #7F4CFF;
    border-radius: 50%;
    box-shadow: 0 0 10px #7F4CFF;
}

.controller-buttons::before {
    top: 0;
    right: 14px;
}

.controller-buttons::after {
    bottom: 0;
    right: 14px;
}

.controller-sticks {
    position: absolute;
    top: 25px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: #555DFF;
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(85, 93, 255, 0.8),
        50px 0 15px rgba(85, 93, 255, 0.8);
}

.controller-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(127, 76, 255, 0.4) 0%, transparent 70%);
    filter: blur(40px);
}

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

@media (max-width: 1024px) {
    .liquid-mask-container {
        transform: scale(0.8);
    }
    
    .services-header {
        top: 50px;
        right: 40px;
        width: 400px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .liquid-mask-container {
        display: none;
    }
    
    .services-header {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
    
    /* Show cards in simple grid on mobile */
    .service-card {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 20px;
        clip-path: none !important;
    }
}

/* ===== ROBOT SHOWCASE SECTION (FRAME 3) ===== */
/* Built by BroJack Agent #4 - October 9, 2025 */

.robot-showcase-section {
    position: relative;
    width: calc(100% - 160px);
    min-height: 100vh;
    margin: 40px 80px;
    padding: 80px;
    background: linear-gradient(135deg, #010101 0%, #0a0e1f 50%, #00091E 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    gap: 60px;
    overflow: hidden;
    scroll-margin-top: 100px; /* Offset for fixed nav */
}

/* REMOVED: Dark gradient fade effects - clean rounded corners instead! */

/* ===== TOP CTA SECTION ===== */
.showcase-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    z-index: 10;
}

.showcase-title {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 2px;
    margin: 0;
}

.showcase-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    margin: 0;
}

.showcase-cta {
    margin-top: 16px;
}

/* ===== THREE CARDS ROW ===== */
.showcase-cards-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 48px;
    width: 100%;
    max-width: 1280px;
    position: relative;
    z-index: 5;
}

.showcase-card {
    background: #00091E;
    border-radius: 40px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card:hover {
    transform: translateY(-8px);
}

/* Card dimensions matching Figma */
.showcase-card-left {
    width: 394.67px;
    min-height: 448px;
}

.showcase-card-middle {
    width: 394.67px;
    min-height: 156px;
    align-self: flex-end; /* Bottom align */
}

.showcase-card-right {
    width: 394.67px;
    min-height: 304px;
}

.card-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.card-title {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    margin: 0;
}

.card-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #BCD0FF;
    margin: 0;
}

/* ===== ROI CHART (LEFT CARD) ===== */
.roi-chart-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(180deg, rgba(2, 7, 22, 0.2) 1.65%, rgba(102, 110, 255, 0.2) 47.32%, rgba(32, 31, 31, 0.2) 100%);
    border-radius: 8px;
    padding: 16px 0;
}

.roi-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
}

.roi-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
}

.roi-emoji {
    font-size: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.roi-canvas {
    width: 100%;
    height: 220px;
}

/* ===== ACTUAL INFO (MIDDLE CARD) ===== */
.info-title {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    margin: 0;
}

.info-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #BCD0FF;
    margin: 0;
}

/* ===== FEATURE PILLS (RIGHT CARD) ===== */
.feature-pills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-content: flex-start;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #555DFF;
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(85, 93, 255, 0.3);
}

.feature-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(85, 93, 255, 0.5);
    background: linear-gradient(135deg, #555DFF 0%, #7F4CFF 100%);
}

.feature-pill i {
    font-size: 20px;
}

/* ===== CENTRAL ROBOT CHARACTER ===== */
.robot-character {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* BEHIND the cards! */
    pointer-events: none; /* Allow clicking through to cards */
}

.robot-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
        rgba(85, 93, 255, 0.3) 0%, 
        rgba(150, 85, 255, 0.2) 40%,
        transparent 70%);
    filter: blur(80px);
    animation: robot-glow-pulse 4s ease-in-out infinite;
}

@keyframes robot-glow-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.robot-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 60px rgba(85, 93, 255, 0.4));
    opacity: 0; /* Start invisible */
    animation: robot-float 6s ease-in-out infinite, robot-fade-in 8s ease-in-out infinite;
}

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

@keyframes robot-fade-in {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 0.6; /* Fade in to max */
    }
    50% {
        opacity: 0.1; /* Breathe to min */
    }
    90% {
        opacity: 0.6; /* Breathe back to max */
    }
    100% {
        opacity: 0.1; /* Cycle back to min */
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1400px) {
    .robot-showcase-section {
        padding: 60px;
    }
    
    .showcase-cards-row {
        gap: 32px;
    }
    
    .showcase-card-left,
    .showcase-card-middle,
    .showcase-card-right {
        width: 320px;
    }
    
    .robot-character {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 1024px) {
    .robot-showcase-section {
        width: calc(100% - 80px);
        margin: 0 40px;
        padding: 40px;
    }
    
    .showcase-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .showcase-card-left,
    .showcase-card-middle,
    .showcase-card-right {
        width: 100%;
        max-width: 400px;
    }
    
    .robot-character {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 400px;
        height: 400px;
        margin: 40px 0;
    }
}

@media (max-width: 768px) {
    .robot-showcase-section {
        width: calc(100% - 40px);
        margin: 0 20px;
        padding: 40px 20px;
        min-height: auto;
    }
    
    .showcase-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .showcase-subtitle {
        font-size: 18px;
        line-height: 28px;
    }
    
    .robot-character {
        width: 300px;
        height: 300px;
    }
    
    .card-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .card-subtitle,
    .info-text {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ===== OUR VISION SECTION (FRAME 4) ===== */
/* Built by BroJack Agent #4 - October 9, 2025 */
/* Enhanced by Agent #5 - More padding + gradient fade in/out */

.vision-section {
    position: relative;
    width: calc(100% - 160px);
    height: auto;
    min-height: 700px;
    margin: 40px 80px 80px 80px;
    padding: 120px 80px;
    background: linear-gradient(135deg, #010101 0%, #0a0e1f 50%, #00091E 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 40px;
    scroll-margin-top: 100px; /* Offset for fixed nav */
}

/* REMOVED: Dark gradient fade effects - clean rounded corners instead! */

/* ===== DECORATIVE GRID LINES ===== */
.vision-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.4; /* Increased visibility! */
}

.vision-grid .grid-line-h {
    position: absolute;
    height: 1px;
    width: 120% !important; /* Stretch across entire frame! */
    background: rgba(85, 93, 255, 0.4); /* Purple tint + brighter */
    box-shadow: 0 0 8px rgba(85, 93, 255, 0.3);
    overflow: hidden;
}

.vision-grid .grid-line-v {
    position: absolute;
    width: 1px;
    height: 120% !important; /* Stretch across entire frame! */
    background: rgba(85, 93, 255, 0.4); /* Purple tint + brighter */
    box-shadow: 0 0 8px rgba(85, 93, 255, 0.3);
    overflow: hidden;
}

/* ===== ANIMATED LIGHT PULSES ON GRID ===== */
/* Light traveling horizontally on grid lines */
.vision-grid .grid-line-h::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(85, 93, 255, 0.8) 30%,
        rgba(150, 85, 255, 1) 50%,
        rgba(85, 93, 255, 0.8) 70%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(85, 93, 255, 0.8);
    animation: light-pulse-horizontal 6s ease-in-out infinite;
}

/* Stagger the animation for different lines */
.vision-grid .grid-line-h:nth-child(1)::after {
    animation-delay: 0s;
}

.vision-grid .grid-line-h:nth-child(2)::after {
    animation-delay: 1.2s;
}

.vision-grid .grid-line-h:nth-child(3)::after {
    animation-delay: 2.4s;
}

.vision-grid .grid-line-h:nth-child(4)::after {
    animation-delay: 3.6s;
}

.vision-grid .grid-line-h:nth-child(5)::after {
    animation-delay: 4.8s;
}

/* Light traveling vertically on grid lines */
.vision-grid .grid-line-v::after {
    content: '';
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(85, 93, 255, 0.8) 30%,
        rgba(150, 85, 255, 1) 50%,
        rgba(85, 93, 255, 0.8) 70%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(85, 93, 255, 0.8);
    animation: light-pulse-vertical 5s ease-in-out infinite;
}

/* Stagger the animation for vertical lines */
.vision-grid .grid-line-v:nth-child(6)::after {
    animation-delay: 0.5s;
}

.vision-grid .grid-line-v:nth-child(7)::after {
    animation-delay: 1.5s;
}

.vision-grid .grid-line-v:nth-child(8)::after {
    animation-delay: 2.5s;
}

.vision-grid .grid-line-v:nth-child(9)::after {
    animation-delay: 3.5s;
}

.vision-grid .grid-line-v:nth-child(10)::after {
    animation-delay: 4.5s;
}

.vision-grid .grid-line-v:nth-child(11)::after {
    animation-delay: 5.5s;
}

/* Horizontal light pulse animation */
@keyframes light-pulse-horizontal {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Vertical light pulse animation */
@keyframes light-pulse-vertical {
    0% {
        top: -100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* ===== PURPLE BLUR EFFECTS ===== */
.vision-blur {
    position: absolute;
    width: 363px;
    background: #555DFF;
    filter: blur(200px);
    pointer-events: none;
    opacity: 0.6;
}

.vision-blur-left {
    height: 209px;
    left: -40px;
    top: 144px;
    transform: scaleX(-1);
}

.vision-blur-right {
    height: 281px;
    right: -40px;
    top: 72px;
}

/* ===== HEADER ===== */
.vision-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 1280px;
    margin-bottom: 48px;
    z-index: 10;
}

.vision-title {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    margin: 0;
}

.vision-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

/* ===== VIDEO CONTAINER ===== */
.vision-video-container {
    position: relative;
    width: 600px;
    height: 400px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 10;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #7A80FF 100%);
}

.vision-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 40px;
}

/* ===== VIDEO COMING SOON PLACEHOLDER (Agent #9) ===== */
.video-coming-soon-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Glassmorphism effect matching app overlays */
    background: rgba(0, 9, 30, 0.85);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    
  /* Smooth entrance animation */
  animation: fadeInOverlay 0.8s ease-out;
  
  /* Top alignment */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  
  /* Match video container border */
  border-radius: 40px;
}

.video-placeholder-content {
    text-align: center;
    padding: 24px 32px;
    max-width: 450px;
    
    /* Inner glass effect */
    background: rgba(28, 35, 56, 0.6);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    /* Soft glow */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    /* Entrance animation */
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.video-placeholder-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Glow effect */
    box-shadow: 
        0 0 0 8px rgba(102, 126, 234, 0.2),
        0 0 40px rgba(102, 126, 234, 0.4);
    
    /* Pulse animation */
    animation: pulseIcon 2s ease-in-out infinite;
}

.video-placeholder-icon i {
    font-size: 32px;
    color: #FFFFFF;
    animation: floatIcon 3s ease-in-out infinite;
}

.video-placeholder-title {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    
    /* Gradient text */
    background: linear-gradient(135deg, #FFFFFF 0%, #A4A9B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-placeholder-message {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #A4A9B6;
    margin: 0 0 24px 0;
}

.video-placeholder-message strong {
    color: #FFFFFF;
    font-weight: 600;
}

.video-placeholder-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 184, 108, 0.1);
    border: 1px solid rgba(255, 184, 108, 0.3);
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #FFB86C;
}

.status-dot-landing {
    width: 8px;
    height: 8px;
    background: #FFB86C;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Notify button in video placeholder */
.btn-notify-video {
    margin-top: 20px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #555DFF 0%, #667eea 100%);
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    
    display: inline-flex;
    align-items: center;
    gap: 8px;
    
    box-shadow: 
        0 4px 16px rgba(85, 93, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-notify-video:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 6px 24px rgba(85, 93, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-notify-video:active {
    transform: translateY(0) scale(0.98);
}

.btn-notify-video i {
    font-size: 16px;
}

/* Animations for placeholder (reuse from app overlays) */
@keyframes fadeInOverlay {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(20px) saturate(1.5);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 0 8px rgba(102, 126, 234, 0.2),
            0 0 40px rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 0 12px rgba(102, 126, 234, 0.3),
            0 0 60px rgba(102, 126, 234, 0.6);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .vision-section {
        width: calc(100% - 80px);
        margin: 0 40px;
        padding: 40px;
        height: auto;
        min-height: 500px;
    }
    
    .vision-video-container {
        width: 100%;
        max-width: 500px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .vision-section {
        width: calc(100% - 40px);
        margin: 0 20px;
        padding: 40px 20px;
    }
    
    .vision-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .vision-subtitle {
        font-size: 18px;
        line-height: 28px;
    }
    
    .vision-video-container {
        width: 100%;
        height: 250px;
    }
    
    /* Mobile adjustments for video placeholder */
    .video-coming-soon-placeholder {
        padding-top: 30px;
    }
    
    .video-placeholder-content {
        padding: 32px 24px;
        max-width: 90%;
    }
    
    .video-placeholder-icon {
        width: 56px;
        height: 56px;
    }
    
    .video-placeholder-icon i {
        font-size: 24px;
    }
    
    .video-placeholder-title {
        font-size: 24px;
    }
    
    .video-placeholder-message {
        font-size: 14px;
    }
}

/* ===== PARTNERSHIP SECTION (NEW FRAME - BETWEEN VISION AND FOOTER) ===== */
/* Built by BroJack - October 27, 2025 */

.partnership-section {
    display: none; /* HIDDEN - Will activate later */
    position: relative;
    width: calc(100% - 160px);
    margin: 40px 80px;
    padding: 80px;
    border-radius: 40px;
    background: linear-gradient(135deg, #010101 0%, #0a0e1f 50%, #00091E 100%);
    /* display: flex; */ /* Uncomment when ready to show */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    overflow: hidden;
    min-height: 400px;
    text-align: center;
    scroll-margin-top: 100px; /* Offset for fixed nav */
}

/* Purple blur effects */
.partnership-blur {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #555DFF;
    filter: blur(150px);
    pointer-events: none;
    opacity: 0.4;
    animation: partnership-pulse 6s ease-in-out infinite;
}

@keyframes partnership-pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.partnership-blur-left {
    left: -100px;
    top: -100px;
}

.partnership-blur-right {
    right: -100px;
    bottom: -100px;
    animation-delay: 3s;
}

/* Partnership container */
.partnership-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    width: 100%;
}

/* Partnership header */
.partnership-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partnership-title {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    margin: 0;
}

.partnership-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Partnership form (reuse newsletter style) */
.partnership-form {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.partnership-input-wrapper {
    display: flex;
    gap: 12px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partnership-input-wrapper.hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.partnership-input {
    flex: 1;
    padding: 16px 24px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.partnership-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.partnership-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(85, 93, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(85, 93, 255, 0.1);
}

.partnership-button {
    padding: 16px 32px;
    height: 56px;
    min-width: 180px;
    background: linear-gradient(135deg, #555DFF 0%, #7F4CFF 100%);
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 4px 16px rgba(85, 93, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.partnership-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 24px rgba(85, 93, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.partnership-button:active {
    transform: translateY(0);
}

.partnership-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.partnership-button .btn-text,
.partnership-button .btn-loading,
.partnership-button .btn-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.partnership-button .btn-loading i {
    animation: spin 1s linear infinite;
}

.partnership-button .btn-success {
    color: #7BFFBF;
}

/* Error Message */
.partnership-error {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%) translateY(-5px);
    padding: 12px 16px;
    background: rgba(255, 85, 88, 0.1);
    border: 1px solid rgba(255, 85, 88, 0.3);
    border-radius: 8px;
    color: #FF5558;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
}

.partnership-error.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    animation: shake 0.5s ease;
}

/* Success Message */
.partnership-success {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%) translateY(10px);
    padding: 16px 24px;
    background: rgba(123, 255, 191, 0.1);
    border: 1px solid rgba(123, 255, 191, 0.3);
    border-radius: 12px;
    color: #7BFFBF;
    font-size: 15px;
    text-align: center;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 100;
}

.partnership-success.show {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.partnership-success i {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partnership-section {
        width: calc(100% - 80px);
        margin: 40px 40px;
        padding: 60px 40px;
    }
    
    .partnership-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .partnership-subtitle {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 768px) {
    .partnership-section {
        width: calc(100% - 40px);
        margin: 20px;
        padding: 40px 24px;
        min-height: 300px;
    }
    
    .partnership-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .partnership-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .partnership-input-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .partnership-input,
    .partnership-button {
        width: 100%;
    }
}

/* ===== FOOTER SECTION (FRAME 5) ===== */
/* Built by BroJack Agent #4 - October 9, 2025 */

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    width: 100%;
    background: #00091E;
    padding-bottom: 0;
    scroll-margin-top: 100px; /* Offset for fixed nav */
}

/* ===== NEWSLETTER SUBSCRIPTION ===== */
.newsletter-container {
    position: relative;
    width: calc(100% - 160px);
    max-width: 1280px;
    margin: 0 80px;
    padding: 24px 64px;
    background: linear-gradient(135deg, 
        rgba(85, 93, 255, 0.3) 0%, 
        rgba(150, 85, 255, 0.25) 25%,
        rgba(255, 85, 200, 0.2) 50%,
        rgba(85, 93, 255, 0.25) 75%,
        rgba(150, 85, 255, 0.3) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), 
        #00091E;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(150, 85, 255, 0.3), 
                inset 0 0 80px rgba(255, 85, 200, 0.1);
}

/* Purple to pink blur effects for newsletter */
.newsletter-blur {
    position: absolute;
    filter: blur(150px);
    pointer-events: none;
    opacity: 0.6;
    animation: newsletter-pulse 8s ease-in-out infinite;
}

@keyframes newsletter-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.newsletter-blur-left {
    width: 350px;
    height: 350px;
    left: -120px;
    top: -120px;
    background: linear-gradient(135deg, 
        #555DFF 0%, 
        #9655FF 50%, 
        #FF55C8 100%);
}

.newsletter-blur-right {
    width: 350px;
    height: 350px;
    right: -120px;
    bottom: -120px;
    background: linear-gradient(225deg, 
        #FF55C8 0%, 
        #9655FF 50%, 
        #555DFF 100%);
    animation-delay: 4s;
}

.newsletter-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    position: relative;
    z-index: 10;
}

.newsletter-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-title {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    margin: 0;
}

.newsletter-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    margin: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.newsletter-input {
    padding: 12px 20px;
    width: 331px;
    height: 52px;
    background: #FFFFFF;
    border: none;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #00091E;
}

.newsletter-input::placeholder {
    color: #6F83B2;
}

.newsletter-button {
    padding: 12px 24px;
    height: 52px;
    background: #FFFFFF;
    border: none;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #00091E;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

/* ===== FOOTER CONTENT ===== */
.footer-content {
    width: calc(100% - 160px);
    max-width: 1280px;
    margin: 0 80px;
    padding: 48px 0 80px 0;
    background: #00091E;
    border-radius: 40px 40px 0 0;
}

.footer-columns {
    display: flex;
    flex-direction: row;
    gap: 130px;
    align-items: flex-start;
}

/* Logo Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 242px;
}

.footer-logo img {
    width: 180px;
    height: 32px;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #999DA5;
    margin: 0;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(236, 235, 232, 0.1);
    border-radius: 500px;
    color: #FFFFFF;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: rgba(236, 235, 232, 0.2);
    transform: translateY(-4px);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFFFFF;
}

/* ===== COPYRIGHT BAR ===== */
.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 64px;
    width: 100%;
    padding: 24px 80px;
    background: #010714;
}

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
    color: #536285;
    margin: 0;
}

.footer-legal {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
    color: #536285;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal:hover {
    color: #8A96B5;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .newsletter-container {
        width: calc(100% - 80px);
        margin: 0 40px;
        padding: 32px;
    }
    
    .newsletter-content {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .footer-content {
        width: calc(100% - 80px);
        margin: 0 40px;
    }
    
    .footer-columns {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .newsletter-container {
        width: calc(100% - 40px);
        margin: 0 20px;
        padding: 24px;
    }
    
    .newsletter-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .newsletter-subtitle {
        font-size: 18px;
        line-height: 28px;
    }
    
    .footer-content {
        width: calc(100% - 40px);
        margin: 0 20px;
        padding: 32px 0 40px 0;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
    }
}

/* ===== SCROLL-REVEAL ANIMATIONS (Agent #5) ===== */
/* Built by BroJack Agent #5 - October 9, 2025 */

/* Initial state - hidden */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Revealed state - visible */
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Child elements - staggered reveal */
.reveal-child {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-child.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hero section - special entrance (fade only, no slide) */
.hero-section.reveal {
    transform: translateY(0);
    opacity: 0;
}

.hero-section.revealed {
    opacity: 1;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-child {
        transition: opacity 0.3s ease;
        transform: none !important;
    }
}

/* ===== ENHANCED FOOTER WITH CANVAS (Agent #5 - Enhanced) ===== */

/* Newsletter container - Enhanced with canvas layers */
.newsletter-container {
    position: relative;
    background: #010510;  /* MUCH darker background (like screenshot 2) */
    overflow: hidden;
    margin-top: 120px;  /* More headroom OUTSIDE container */
    padding: 0;  /* No padding - MEAN design! */
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.32);  /* Black drop shadow */
}

/* Canvas layers */
#footerStructureCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;  /* Slightly more subtle */
    mix-blend-mode: screen;  /* Changed to screen for better wave effect */
    filter: hue-rotate(10deg) saturate(0.8);  /* Hue blending with background */
}

#footerGradientCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.5;  /* Slightly reduced */
    mix-blend-mode: screen;  /* Additive blending */
}

/* Newsletter content above canvases */
.newsletter-content {
    position: relative;
    z-index: 10;
    padding: 40px 60px;  /* 40px top/bottom, 60px left/right */
}

/* ===== NEWSLETTER FORM STATES (Agent #5) ===== */

/* Newsletter form needs relative positioning for absolute success message */
.newsletter-form {
    position: relative;
}

/* Input Wrapper */
.newsletter-input-wrapper {
    display: flex;
    gap: 12px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hide state for input wrapper */
.newsletter-input-wrapper.hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

/* Button States */
.newsletter-button {
    position: relative;
    min-width: 140px; /* Prevents button from shrinking during state changes */
    transition: all 0.3s ease;
}

.newsletter-button .btn-text,
.newsletter-button .btn-loading,
.newsletter-button .btn-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.newsletter-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Loading Spinner */
.newsletter-button .btn-loading i {
    animation: spin 1s linear infinite;
}

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

/* Success Checkmark */
.newsletter-button .btn-success {
    color: #7BFFBF;
}

/* Error Message */
.newsletter-error {
    position: absolute; /* FLOAT ABOVE! OUT OF FLOW! */
    top: 0; /* Position at same spot as input */
    left: 50%; /* Center horizontally */
    width: 100%; /* FULL WIDTH! */
    transform: translateX(-50%) translateY(-5px); /* Center + slide animation */
    padding: 12px 16px;
    background: rgba(255, 85, 88, 0.1);
    border: 1px solid rgba(255, 85, 88, 0.3);
    border-radius: 8px;
    color: #FF5558;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100; /* On top of everything */
}

.newsletter-error.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0); /* Keep centered, no slide offset */
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    25% { transform: translateX(calc(-50% - 8px)) translateY(0); }
    75% { transform: translateX(calc(-50% + 8px)) translateY(0); }
}

/* Success Message */
.newsletter-success {
    position: absolute; /* FLOAT ABOVE! OUT OF FLOW! */
    top: 0; /* Position at same spot as input */
    left: 50%; /* Center horizontally */
    width: 100%; /* FULL WIDTH! */
    transform: translateX(-50%) translateY(10px); /* Center + slide animation */
    padding: 16px 24px;
    background: rgba(123, 255, 191, 0.1);
    border: 1px solid rgba(123, 255, 191, 0.3);
    border-radius: 12px;
    color: #7BFFBF;
    font-size: 15px;
    text-align: center;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 100; /* On top of everything */
}

/* Show state for success message */
.newsletter-success.show {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(0); /* Keep centered, no slide offset */
}

.newsletter-success i {
    font-size: 20px;
}

/* Input Disabled State */
.newsletter-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

