/* =========================================
   Lyzard Dev Studio - Global Design System
   ========================================= */

:root {
    /* Color Palette - Cyber / Future Tech */
    --bg-dark: #05050A; /* Deep midnight space blue */
    --bg-surface: #0B0E17; /* Slightly lighter tech blue */
    --bg-surface-hover: #131826;
    
    --accent-primary: #00F0FF; /* Electric Cyan */
    --accent-glow: rgba(0, 240, 255, 0.25);
    
    --neon-green: #39FF14; /* True Neon Green */
    --neon-cyan: #00F0FF;  /* True Electric Cyan */
    --neon-purple: #B026FF; /* True Electric Purple */
    
    --text-primary: #F0F4F8; /* Bright crisp tech white */
    --text-secondary: #94A3B8; /* Cool tech gray */
    --text-muted: #475569;
    
    --border-glass: #1E293B;
    --border-glass-strong: #334155;

    /* Typography */
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    /* Effects & Transitions */
    --blur-strong: blur(24px);
    --blur-light: blur(12px);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* =========================================
   Typography & Utilities
   ========================================= */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.section-title span {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* =========================================
   Dynamic Background & Orbs
   ========================================= */
.bg-mesh {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0;
    background: 
        radial-gradient(circle at 15% 50%, rgba(0, 240, 255, 0.08), transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(176, 38, 255, 0.08), transparent 50%);
    overflow: hidden;
    pointer-events: none;
}

.bg-mesh::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 2;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--neon-cyan);
    top: -200px;
    left: -200px;
    animation: float-1 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--neon-purple);
    bottom: -300px;
    right: -200px;
    animation: float-2 25s infinite alternate-reverse cubic-bezier(0.4, 0, 0.2, 1);
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--neon-green);
    top: 40%;
    left: 60%;
    animation: float-3 30s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes float-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.05); }
}

@keyframes float-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-70px, 30px) scale(1.1); }
}

@keyframes float-3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -60px) scale(0.95); }
}


/* =========================================
   Navigation (Glassmorphism)
   ========================================= */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.glass-nav.scrolled {
    padding: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: var(--blur-strong);
    -webkit-backdrop-filter: var(--blur-strong);
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.glass-nav.scrolled .nav-container {
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.nav-logo-img {
    height: 24px;
    width: auto;
}

.footer-logo-img {
    height: 24px;
    width: auto;
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition-smooth);
}

.footer-brand:hover .footer-logo-img {
    filter: grayscale(100%) opacity(0.8);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    border: 1px solid var(--border-glass);
    backdrop-filter: var(--blur-light);
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    outline: none;
    text-shadow: none;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(90deg, var(--neon-cyan) 0%, #00B4D8 100%);
    color: #000000;
    font-weight: 600;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
    background: #f4f4f5;
}

.btn-primary.glow-effect:hover {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}

.btn-secondary {
    background: rgba(176, 38, 255, 0.1);
    color: var(--neon-purple);
    border: 1px solid rgba(176, 38, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(176, 38, 255, 0.2);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.3);
}

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

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.btn-glass {
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    backdrop-filter: var(--blur-light);
    border-radius: 12px;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.glow-effect {
    position: relative;
}
.glow-effect::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}
.glow-effect:hover::before {
    opacity: 1;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for nav */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 1000px;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
}
.badge::before {
    content: '>_ ';
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
}

.hero-title span {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.4) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

/* =========================================
   Hero Visual (Exploding Code)
   ========================================= */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    height: 480px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 1;
}

.app-screen {
    width: 100%;
    max-width: 520px;
    height: 340px;
    background: rgba(10, 10, 12, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: rotateY(-15deg) rotateX(10deg) translateZ(0);
    transform-style: preserve-3d;
    position: relative;
    z-index: 10;
    overflow: hidden;
    animation: float-hero 8s ease-in-out infinite alternate;
}

@keyframes float-hero {
    0% { transform: rotateY(-15deg) rotateX(10deg) translateY(0) translateZ(0); }
    100% { transform: rotateY(-12deg) rotateX(8deg) translateY(-15px) translateZ(30px); }
}



.app-header {
    height: 38px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 8px;
}

.app-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.app-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 5;
}

.code-line {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
}
.w-80 { width: 80%; }
.w-60 { width: 60%; }
.w-90 { width: 90%; }
.w-40 { width: 40%; }
.w-70 { width: 70%; }

.floating-snippet {
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(20, 20, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.825rem;
    color: var(--text-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    z-index: 20;
}

/* Violent explode animation that transitions into floating */
@keyframes explode1 {
    0% { transform: translate(-50%, -50%) scale(0) translateZ(0) rotate(0); opacity: 0; }
    5% { opacity: 1; }
    100% { transform: translate(120px, -220px) scale(1.3) translateZ(300px) rotate(35deg) rotateX(20deg); opacity: 1; }
}
@keyframes explode2 {
    0% { transform: translate(-50%, -50%) scale(0) translateZ(0) rotate(0); opacity: 0; }
    5% { opacity: 1; }
    100% { transform: translate(-280px, 160px) scale(1.1) translateZ(250px) rotate(-42deg) rotateY(-25deg); opacity: 1; }
}
@keyframes explode3 {
    0% { transform: translate(-50%, -50%) scale(0) translateZ(0) rotate(0); opacity: 0; }
    5% { opacity: 1; }
    100% { transform: translate(240px, 120px) scale(1.4) translateZ(350px) rotate(22deg) rotateZ(15deg); opacity: 1; }
}
@keyframes explode4 {
    0% { transform: translate(-50%, -50%) scale(0) translateZ(0) rotate(0); opacity: 0; }
    5% { opacity: 1; filter: contrast(300%) blur(2px); }
    100% { transform: translate(-240px, -180px) scale(1.2) translateZ(280px) rotate(-38deg); opacity: 0.95; filter: contrast(100%) blur(0px); }
}
@keyframes explode5 {
    0% { transform: translate(-50%, -50%) scale(0) translateZ(0) rotate(0); opacity: 0; }
    5% { opacity: 1; }
    100% { transform: translate(-40px, -320px) scale(1.1) translateZ(320px) rotate(28deg) rotateX(30deg); opacity: 1; }
}
@keyframes explode6 {
    0% { transform: translate(-50%, -50%) scale(0) translateZ(0) rotate(0); opacity: 0; }
    5% { opacity: 1; }
    100% { transform: translate(180px, 240px) scale(1.3) translateZ(220px) rotate(-26deg) rotateY(20deg); opacity: 0.9; }
}

/* Continuous floating animations that pick up where explode left off */
@keyframes float1 {
    0% { transform: translate(120px, -220px) scale(1.3) translateZ(300px) rotate(35deg) rotateX(20deg); }
    100% { transform: translate(140px, -240px) scale(1.35) translateZ(320px) rotate(38deg) rotateX(24deg); }
}
@keyframes float2 {
    0% { transform: translate(-280px, 160px) scale(1.1) translateZ(250px) rotate(-42deg) rotateY(-25deg); }
    100% { transform: translate(-300px, 175px) scale(1.15) translateZ(270px) rotate(-46deg) rotateY(-28deg); }
}
@keyframes float3 {
    0% { transform: translate(240px, 120px) scale(1.4) translateZ(350px) rotate(22deg) rotateZ(15deg); }
    100% { transform: translate(260px, 105px) scale(1.45) translateZ(370px) rotate(20deg) rotateZ(12deg); }
}
@keyframes float4 {
    0% { transform: translate(-240px, -180px) scale(1.2) translateZ(280px) rotate(-38deg); }
    100% { transform: translate(-260px, -195px) scale(1.25) translateZ(300px) rotate(-42deg); }
}
@keyframes float5 {
    0% { transform: translate(-40px, -320px) scale(1.1) translateZ(320px) rotate(28deg) rotateX(30deg); }
    100% { transform: translate(-30px, -340px) scale(1.15) translateZ(340px) rotate(32deg) rotateX(34deg); }
}
@keyframes float6 {
    0% { transform: translate(180px, 240px) scale(1.3) translateZ(220px) rotate(-26deg) rotateY(20deg); }
    100% { transform: translate(200px, 260px) scale(1.35) translateZ(240px) rotate(-22deg) rotateY(16deg); }
}

.snippet-1 { color: #a1a1aa; animation: explode1 0.4s cubic-bezier(0.1, 0.9, 0.2, 1) forwards, float1 4s ease-in-out infinite alternate 0.4s; }
.snippet-2 { color: #d4d4d8; animation: explode2 0.5s cubic-bezier(0.1, 0.9, 0.2, 1) forwards, float2 4.5s ease-in-out infinite alternate 0.5s; }
.snippet-3 { color: #f4f4f5; animation: explode3 0.35s cubic-bezier(0.1, 0.9, 0.2, 1) forwards, float3 3.8s ease-in-out infinite alternate 0.35s; }
.snippet-4 { color: #e4e4e7; animation: explode4 0.6s cubic-bezier(0.1, 0.9, 0.2, 1) forwards, float4 5s ease-in-out infinite alternate 0.6s; }
.snippet-5 { color: #fafafa; animation: explode5 0.45s cubic-bezier(0.1, 0.9, 0.2, 1) forwards, float5 4.2s ease-in-out infinite alternate 0.45s; }
.snippet-6 { color: #a1a1aa; animation: explode6 0.55s cubic-bezier(0.1, 0.9, 0.2, 1) forwards, float6 5.5s ease-in-out infinite alternate 0.55s; }

/* =========================================
   Cards Grid (Products)
   ========================================= */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.glass-card {
    background: rgba(11, 14, 23, 0.7); /* Deep tech surface */
    border: 1px solid var(--border-glass-strong);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.3), transparent);
}
.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top left, rgba(0, 240, 255, 0.05), transparent 60%);
}

/* Hover effect logic applied to parents */
.glass-card.hover-trigger:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(0, 240, 255, 0.1);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
    transition: var(--transition-bounce);
    background: transparent;
    border: none;
}

.glass-card.hover-trigger .card-icon {
    opacity: 0.8;
}

.glass-card.hover-trigger:hover .card-icon {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
}

.glass-card.hover-trigger:hover .cyan-glow {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.glass-card.hover-trigger:hover .green-glow {
    color: var(--neon-green);
    filter: drop-shadow(0 0 10px var(--neon-green));
}

.card-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.card-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    min-height: 80px;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.features-list .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
}

.glass-card.hover-trigger:hover .dot { background: var(--text-primary); }

.download-btn {
    width: 100%;
}

/* =========================================
   Roadmap / Banner
   ========================================= */
.glass-banner {
    background: linear-gradient(135deg, rgba(11, 14, 23, 0.8) 0%, rgba(5, 5, 10, 0.9) 100%);
    border: 1px solid var(--border-glass-strong);
    border-radius: 12px;
    padding: 4rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.glass-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
}

.banner-content {
    flex: 1;
    max-width: 500px;
}

.banner-content h3 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.banner-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 1.125rem;
    font-weight: 300;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.glass-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border-glass);
    border-radius: 0;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.glass-input:focus {
    border-color: var(--neon-purple);
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.2);
}

.banner-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 200px;
}

.pulsing-core {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 38, 255, 0.15) 0%, transparent 60%);
    box-shadow: 0 0 80px rgba(176, 38, 255, 0.2);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 40px rgba(176, 38, 255, 0.1); }
    100% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 100px rgba(176, 38, 255, 0.7); }
}

/* =========================================
   Footer
   ========================================= */
.glass-footer {
    border-top: 1px solid var(--border-glass-strong);
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.95) 0%, rgba(5, 5, 8, 1) 100%);
    padding: 6rem 0 3rem 0;
    position: relative;
    z-index: 50;
    overflow: hidden;
}

.glass-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.5;
}

.glass-footer::after {
    content: '';
    position: absolute;
    bottom: -50%; left: -20%; width: 140%; height: 100%;
    background: radial-gradient(ellipse at bottom, rgba(56, 189, 248, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 400px;
    line-height: 1.6;
    font-family: var(--font-mono);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.footer-links::before {
    content: 'SYS.LINKS';
    font-family: var(--font-mono);
    color: var(--neon-cyan);
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-bounce);
    position: relative;
    z-index: 60;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
    transform: translateX(-5px);
}
.footer-links a::after {
    content: '>';
    position: absolute;
    right: -15px;
    opacity: 0;
    color: var(--neon-cyan);
    transition: var(--transition-smooth);
}
.footer-links a:hover::after {
    opacity: 1;
    right: -20px;
}



.footer-bottom {
    text-align: left;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(255,255,255,0.1);
    font-family: var(--font-mono);
    display: flex;
    justify-content: space-between;
}
.footer-bottom::after {
    content: 'STATUS: ONLINE';
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
}

/* =========================================
   Animations classes
   ========================================= */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}
.fade-in.visible {
    opacity: 1;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Responsive Breakpoints
   ========================================= */
@media (max-width: 900px) {
    .glass-banner {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    .banner-visual { display: none; }
    .subscribe-form { flex-direction: column; }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .app-screen {
        transform: rotateY(0) rotateX(0);
    }
    
    .snippet-1, .snippet-2, .snippet-3, .snippet-4, .snippet-5, .snippet-6 { display: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 3.5rem; }
    .hero-cta { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    
    .cookie-banner {
        right: 1rem;
        left: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}

/* =========================================
   Legal Pages (Privacy & Terms)
   ========================================= */
.legal-page {
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 80vh;
}

.legal-page .section-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 4rem;
}

.legal-content h2 {
    color: var(--neon-cyan);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p, .legal-content li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

/* =========================================
   Cookie Consent Banner
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 380px;
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(0);
    opacity: 1;
    transition: var(--transition-smooth);
    background: #111111;
    border: 1px solid var(--border-glass-strong);
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

.cookie-banner.hidden {
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
}

.cookie-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}
