/* =========================================
   1. CORE VARIABLES & SETUP
   ========================================= */
:root {
    /* Colors matching Studio Environment */
    --bg-app: #000000;
    --bg-elevated: #050505;
    --card-bg: #030303;
    --card-border: #1f1f1f;
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --accent: #dfff00; /* Neon Yellow */
    --accent-hover: #eaff33;
    
    --text-main: #ffffff;
    --text-muted: #a0a0a0; /* Passes WCAG AA contrast */
    
    /* Typography */
    --font-ui: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Animation Easings - Physics-driven curves */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-fluid: cubic-bezier(0.43, 0.13, 0.23, 0.96);
    
    /* Spacing */
    --nav-height: 80px;
    --section-gap: 120px; 
    --container-padding: 5vw;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-app);
    color: var(--text-main);
    font-family: var(--font-ui);
    line-height: 1.5;
    overflow-x: hidden;
    overscroll-behavior: none; 
}

/* GLOBAL GRID BACKGROUND */
#grid-canvas {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0; pointer-events: none; opacity: 0.5;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 { font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.mono { font-family: var(--font-mono); text-transform: uppercase; font-size: 0.85em; letter-spacing: 0.05em; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.justify-center { justify-content: center; }
.hover-underline { position: relative; }
.hover-underline::after {
    content: ''; position: absolute; width: 0; height: 1px; bottom: -2px; left: 0;
    background-color: currentColor; transition: width 0.3s var(--ease-out);
}
.hover-underline:hover::after { width: 100%; }

/* Layout Utilities */
.container { max-width: 1400px; margin: 0 auto; padding: 0 var(--container-padding); }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 4rem; }
.hide-mobile { display: block; }

/* Mobile Menu Toggle Base */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 4px; /* Better tap target */
}

.mobile-menu-toggle:hover {
    color: var(--accent);
}

/* =========================================
   MOBILE MENU OVERLAY
   ========================================= */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.90);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 2000; /* Stays above your site-nav */
    display: flex;
    flex-direction: column;
    padding: 0 var(--container-padding);
    
    /* Hidden by default, GSAP will handle visibility */
    opacity: 0;
    visibility: hidden;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
    margin-bottom: 40px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

.mobile-menu-close:hover {
    color: var(--accent);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 5vh;
}

.mobile-link {
    font-size: clamp(3rem, 10vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 12px;
    
    /* GSAP Starting States */
    transform: translateY(40px);
    opacity: 0;
}

.mobile-link i {
    font-size: clamp(2rem, 6vw, 2.5rem);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    
    /* GSAP Starting States */
    opacity: 0;
    transform: translateY(20px);
}

@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
    .mobile-menu-toggle { display: block; } /* Show the button on mobile */
    :root { --section-gap: 80px; } 
    .mt-mobile { margin-top: 2rem; }
}

/* =========================================
   2. BUTTONS & PILLS
   ========================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-ui); font-weight: 500; border-radius: 20px;
    cursor: pointer; transition: transform 0.4s var(--ease-fluid), background-color 0.3s, border-color 0.3s, color 0.3s;
    white-space: nowrap; will-change: transform;
}
.btn:active { transform: scale(0.95); }

.btn-primary { background-color: var(--text-main); color: var(--bg-app); border: 1px solid var(--text-main); }
.btn-primary:hover { background-color: var(--accent); border-color: var(--accent); color: var(--bg-app); }

.btn-outline { background-color: transparent; color: var(--text-main); border: 1px solid var(--glass-border); }
.btn-outline:hover { border-color: var(--text-main); background-color: rgba(255, 255, 255, 0.05); }

.glass-btn {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.glass-btn:hover { background: rgba(255, 255, 255, 0.06) !important; border-color: rgba(255, 255, 255, 0.2) !important; }

.btn-sm { height: 40px; padding: 0 20px; font-size: 14px; border-radius: 15px;}
.btn-lg { height: 56px; padding: 0 32px; font-size: 16px; }

.badge-pill {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
    background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border);
    border-radius: 100px; font-family: var(--font-mono); font-size: 12px; color: var(--text-muted);
}

/* NEW: Dedicated Status Pill */
.badge-online {
    background: rgba(0, 255, 102, 0.05);
    border: 1px solid rgba(0, 255, 102, 0.25);
    color: #00ff66;
}
.badge-online .pulse-dot {
    background-color: #00ff66;
    box-shadow: 0 0 10px #00ff66;
}

/* FIXED: Slightly scaled down to prevent awkward forced wrapping on desktop */
.hero-text-reveal {
    font-size: clamp(3rem, 6.5vw, 6.5rem); 
    letter-spacing: -0.04em;
    line-height: 1.05; 
    margin-bottom: 32px;
}

.pulse-dot {
    width: 8px; height: 8px; background-color: var(--accent); border-radius: 50%;
    box-shadow: 0 0 10px var(--accent); animation: pulse 2s infinite;
}
.footer-status .pulse-dot { background-color: #00ff66; box-shadow: 0 0 10px #00ff66; }

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(223, 255, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(223, 255, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(223, 255, 0, 0); }
}

/* =========================================
   3. NAVIGATION
   ========================================= */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height);
    z-index: 1000; transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
    background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px); border-bottom: 1px solid var(--card-border);
}
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 var(--container-padding);
    height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.brand-logo svg { height: 28px; width: auto; transition: all 0.3s; }
.brand-logo:hover svg path { fill: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 24px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.nav-link:hover { color: var(--text-main); }

/* =========================================
   4. HERO SECTION (GLASS STUDIO REVEAL)
   ========================================= */
.glass-studio-hero {
    position: relative;
    padding-top: calc(var(--nav-height) + 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin-bottom: 60px;
}

/* Elegant, restrained typography */
.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem); 
    letter-spacing: -0.03em;
    line-height: 1.05; 
    margin-bottom: 32px;
}

.line-wrap { display: block; overflow: hidden; padding-bottom: 0.1em; }
.line-inner { display: block; transform: translateY(100%); will-change: transform; }

.hero-subtitle { 
    font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--text-muted); 
    max-width: 650px; margin: 0 auto 40px auto; line-height: 1.6;
}

.hero-cta-group { display: flex; align-items: center; gap: 16px; }

/* The Status Badge */
.badge-online {
    background: rgba(0, 255, 102, 0.05);
    border: 1px solid rgba(0, 255, 102, 0.25);
    color: #00ff66;
}
.badge-online .pulse-dot { background-color: #00ff66; box-shadow: 0 0 10px #00ff66; }

/* The Feature Dock */
.feature-dock {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    margin-top: 20px;
}

.dock-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 500; color: var(--text-muted);
}
.dock-item i { color: var(--accent); font-size: 18px; }
.dock-separator { width: 4px; height: 4px; border-radius: 50%; background: var(--glass-border); }

/* The App Canvas Window */
.hero-app-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* Fades the bottom of the image into pure black to blend with the next section */
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.hero-app-image {
    display: block;
    width: 100%;
    height: auto;
    border: none; /* explicitly protecting your pre-rendered borders */
    border-radius: 0;
    box-shadow: none;
    outline: none;
    will-change: transform;
}

@media (max-width: 768px) {
    .glass-studio-hero { padding-top: calc(var(--nav-height) + 40px); }
    .hero-cta-group { 
        flex-direction: row; 
        width: 100%; 
        gap: 12px; /* Slightly tighter gap for smaller screens */
    }
    .hero-cta-group .btn { 
        flex: 1; /* Makes both buttons share the available width equally */
        padding: 0 12px; /* Reduces padding to prevent text overflow */
        font-size: 14px; /* Scales down the text slightly */
        min-width: 0; /* Prevents flexbox from forcing width based on text length */
    }
}

/* =========================================
   5. BENTO GRID (FLASHLIGHT EFFECT)
   ========================================= */
.features { padding: var(--section-gap) 0; }
.section-header { margin-bottom: 64px; }
.section-title { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 16px; }
.section-desc { font-size: 1.2rem; color: var(--text-muted); }

.bento-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; grid-auto-rows: minmax(320px, auto);
}

.bento-interactive {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 32px; padding: 40px; display: flex; flex-direction: column;
    justify-content: space-between; position: relative; overflow: hidden;
    transform: translateZ(0); transition: border-color 0.4s, transform 0.4s var(--ease-fluid), box-shadow 0.4s var(--ease-fluid);
}
.bento-interactive:hover { 
    border-color: rgba(255,255,255,0.15); transform: translateY(-2px) translateZ(0);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.bento-glow {
    position: absolute; width: 600px; height: 600px;
    background: radial-gradient(circle closest-side, rgba(236, 236, 236, 0.040), transparent);
    top: -300px; left: -300px; 
    opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease-out); z-index: 0;
}
.bento-interactive:hover .bento-glow { opacity: 1; }

.bento-content { position: relative; z-index: 1; pointer-events: none; }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }
.bento-icon { font-size: 32px; color: var(--accent); margin-bottom: 24px; display: block; }
.bento-content h3 { font-size: 1.8rem; margin-bottom: 12px; }
.bento-content p { color: var(--text-muted); font-size: 1.1rem; }

.bento-content.flex-row { display: flex; align-items: center; justify-content: space-between; gap: 40px; height: 100%; }
.visual-col { flex: 1; display: flex; justify-content: flex-end; }
.format-badges { display: flex; gap: 12px; }
.format-badges span {
    padding: 12px 24px; background: var(--bg-elevated);
    border: 1px solid var(--card-border); border-radius: 16px;
    font-family: var(--font-mono); font-weight: 600; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .col-span-2, .col-span-3 { grid-column: span 2; }
    .bento-content.flex-row { flex-direction: column; align-items: flex-start; }
    .visual-col { justify-content: flex-start; margin-top: 24px; }
}
@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .col-span-2, .col-span-3 { grid-column: span 1; }
    .bento-card { padding: 32px; border-radius: 24px; }
}

/* =========================================
   6. USE CASES (DRAG & PROGRESS)
   ========================================= */
.use-cases { padding: var(--section-gap) 0; overflow: hidden; background: var(--bg-app); }
.section-header-split { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.scroll-header h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 12px; }
.slider-nav { display: flex; gap: 12px; padding-bottom: 10px; }
.nav-arrow {
    width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--card-border); background: var(--bg-elevated);
    color: var(--text-main); display: flex; align-items: center; justify-content: center;
    font-size: 20px; cursor: pointer; transition: all 0.2s var(--ease-out);
}
.nav-arrow:hover { background: var(--text-main); color: var(--bg-app); border-color: var(--text-main); }
.nav-arrow:active { transform: scale(0.95); }

.slider-viewport { width: 100%; overflow: hidden; cursor: grab; padding: 20px 0; touch-action: pan-y; }
.slider-viewport:active { cursor: grabbing; }
.cards-track { display: inline-flex; gap: 32px; padding: 0 var(--container-padding); }

.hc-card {
    width: 400px; height: 500px; background: var(--bg-elevated); border: 1px solid var(--card-border);
    border-radius: 24px; flex-shrink: 0; display: flex; flex-direction: column; overflow: hidden; user-select: none;
    transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out), filter 0.5s;
    transform-origin: center center; will-change: transform, opacity;
}
.hc-card.interactive-focus:not(.is-active) { transform: scale(0.95); opacity: 0.5; filter: grayscale(50%); }

.hc-image-placeholder {
    height: 60%; background: #0a0a0a; border-bottom: 1px solid var(--card-border);
    display: flex; align-items: center; justify-content: center; font-size: 64px; color: #1a1a1a;
}
.hc-text { padding: 32px; height: 40%; display: flex; flex-direction: column; justify-content: center; }
.hc-text h4 { font-size: 1.4rem; margin-bottom: 8px; }
.hc-text p { color: var(--text-muted); font-size: 1rem; }

.slider-progress-ui { margin-top: 48px; width: 100%; max-width: 400px; margin-inline: auto; }
.slider-progress-track { height: 4px; background: var(--card-border); border-radius: 4px; overflow: hidden; position: relative; }
.slider-progress-fill {
    position: absolute; top: 0; left: 0; height: 100%; width: 100%;
    background: var(--accent); transform-origin: left; transform: scaleX(0); will-change: transform;
}

@media (max-width: 768px) {
    .section-header-split { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 32px; }
    .hc-card { width: 85vw; height: 450px; }
    .cards-track { gap: 16px; }
}

/* =========================================
   7. PRO-DESIGNER MARQUEE
   ========================================= */
.marquee-section { padding: var(--section-gap) 0; overflow: hidden; background: var(--bg-app); display: flex; align-items: center; cursor: default; }
.marquee-track { display: flex; white-space: nowrap; will-change: transform; }
.marquee-content { display: flex; align-items: center; padding-right: 4vw; }

.marquee-content span:not(.spacer) {
    font-size: clamp(4rem, 8vw, 8rem); font-weight: 700; letter-spacing: -0.02em;
    color: transparent; 
    -webkit-text-stroke: 1px rgba(255,255,255,0.3); 
    transition: all 0.3s var(--ease-out);
}
.hover-pause:hover .marquee-content span:not(.spacer) { color: var(--accent); -webkit-text-stroke: 1px var(--accent); }
.marquee-content .spacer { font-size: clamp(2rem, 4vw, 4rem); color: rgba(255,255,255,0.2); margin: 0 4vw; }

/* =========================================
   8. WORKFLOW (ANIMATED SVG LINE)
   ========================================= */
.workflow { padding: 0 var(--container-padding) var(--section-gap); }
.workflow-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; margin-top: 80px; position: relative; }

.reveal-gpu { opacity: 0; transform: translate3d(0, 40px, 0); will-change: transform, opacity; }

.workflow-step {
    flex: 1; background: var(--bg-elevated); border: 1px solid var(--card-border);
    padding: 40px 32px; border-radius: 24px; position: relative; z-index: 2;
}
.step-number {
    position: absolute; top: -20px; left: 32px; background: var(--bg-app); border: 1px solid var(--card-border);
    padding: 8px 16px; border-radius: 100px; color: var(--accent); font-weight: 700;
}
.workflow-step h3 { font-size: 1.5rem; margin-bottom: 16px; margin-top: 16px; }
.workflow-step p { color: var(--text-muted); }

.relative-wrapper { position: relative; }
.workflow-line-canvas { position: absolute; top: 45px; left: 0; width: 100%; height: 100px; z-index: 1; pointer-events: none; }
.workflow-svg { width: 100%; height: 100%; overflow: visible; }
.workflow-path-base { stroke: var(--card-border); stroke-width: 2; stroke-dasharray: 6 6; }
.workflow-path-glow { stroke: var(--accent); stroke-width: 4; filter: drop-shadow(0 0 8px var(--accent)); stroke-dasharray: 2000; stroke-dashoffset: 2000; }

@media (max-width: 900px) {
    .workflow-grid { flex-direction: column; gap: 60px; }
    .workflow-step { width: 100%; }
}

/* =========================================
   9. TESTIMONIALS (VERTICAL FEED)
   ========================================= */
.testimonials { padding: var(--section-gap) 0; background: var(--bg-elevated); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); overflow: hidden; }
.testimonial-feed-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-height: 800px; overflow: hidden; position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}
.testimonial-column { display: flex; flex-direction: column; gap: 32px; will-change: transform; }
.test-card { padding: 40px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 24px; }
.test-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: #222; }
.meta { display: flex; flex-direction: column; }
.meta strong { font-size: 1.1rem; }
.meta span { font-size: 0.85rem; }
.quote { font-size: 1.1rem; line-height: 1.6; color: #ccc; }

@media (max-width: 768px) {
    .testimonial-feed-container { grid-template-columns: 1fr; max-height: 600px; }
    .column-slow { display: none; } 
    .test-card { padding: 32px; }
}

/* =========================================
   10. FAQ SECTION
   ========================================= */
.faq { padding: var(--section-gap) var(--container-padding); max-width: 900px; margin: 0 auto; }
.faq-list { border-top: 1px solid var(--card-border); transition: opacity 0.3s; }
.faq-item { border-bottom: 1px solid var(--card-border); transition: opacity 0.4s var(--ease-out); }

.faq-list:has(.faq-trigger[aria-expanded="true"]) .faq-item:not(:has(.faq-trigger[aria-expanded="true"])) { opacity: 0.5; }

.faq-trigger {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 32px 0; background: transparent; border: none; color: var(--text-main); cursor: pointer; text-align: left;
}
.faq-question { font-size: 1.4rem; font-weight: 500; font-family: var(--font-ui); }
.faq-icon-wrapper { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.faq-icon { font-size: 24px; color: var(--text-muted); transition: transform 0.4s var(--ease-fluid), color 0.3s; }
.faq-trigger:hover .faq-icon { color: var(--accent); }
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--text-main); }
.faq-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease-fluid); }
.faq-trigger[aria-expanded="true"] + .faq-content { grid-template-rows: 1fr; }
.faq-inner { overflow: hidden; padding-bottom: 0; transition: padding-bottom 0.4s var(--ease-fluid); }
.faq-trigger[aria-expanded="true"] + .faq-content .faq-inner { padding-bottom: 32px; }
.faq-inner p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; }

@media (max-width: 768px) { .faq-question { font-size: 1.2rem; } .faq-trigger { padding: 24px 0; } }

/* =========================================
   11. FOOTER (100VH DESTINATION)
   ========================================= */
.site-footer {
    height: 100vh;
    min-height: 700px;
    background: var(--bg-app);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1; 
    border-top: 1px solid var(--card-border);
}

.footer-massive-cta {
    flex-grow: 1; display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
}

.magnetic-field {
    padding: 10vh 10vw; 
    cursor: pointer; display: inline-block;
}

.kinetic-text {
    font-size: clamp(4rem, 12vw, 15rem);
    font-weight: 700; letter-spacing: -0.05em; line-height: 1;
    color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    transition: color 0.4s var(--ease-out), -webkit-text-stroke 0.4s var(--ease-out);
    position: relative;
}

.magnetic-field:hover .kinetic-text {
    color: var(--accent); -webkit-text-stroke: 1px var(--accent);
}

.footer-bottom {
    display: flex; justify-content: space-between; align-items: flex-end;
    padding: 40px var(--container-padding); border-top: 1px solid var(--glass-border);
    position: relative; z-index: 2;
}

.footer-status { display: flex; align-items: center; gap: 12px; color: var(--text-muted); }
.status-clock { margin-left: 16px; color: var(--text-main); }

.footer-links-grid { display: flex; gap: 32px; align-items: center; }
.footer-links-grid .footer-link { color: var(--text-main); font-weight: 500; font-size: 1rem; }
.footer-links-grid .copyright { font-size: 0.85rem; }

@media (max-width: 1024px) {
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }
    .footer-links-grid { flex-wrap: wrap; gap: 24px; }
}
