@import 'lang.css';

:root {
    --primary-color: #00f2ff;
    --secondary-color: #bd00ff;
    --bg-color: #050a14;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --nav-height: 80px;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: var(--nav-height);
    background: rgba(5, 10, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px; /* 圆角边框效果 */
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.logo img {
    height: 40px; /* Adjust based on logo aspect ratio */
    width: auto;
    vertical-align: middle;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section Immersive */
.hero-immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
    background: #000;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.cyber-grid-floor {
    position: absolute;
    bottom: -20%;
    left: -50%;
    width: 200%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 242, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(60deg);
    animation: grid-move 20s linear infinite;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, transparent 80%);
}

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

.light-beam {
    position: absolute;
    top: -100px;
    right: 10%;
    width: 200px;
    height: 1000px;
    background: linear-gradient(180deg, rgba(0, 242, 255, 0.2), transparent);
    transform: rotate(30deg);
    filter: blur(50px);
    opacity: 0.5;
}

.hero-container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    z-index: 2;
}

/* Hero Text */
.hero-text-wrapper {
    flex: 1;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

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

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

.hero-text-wrapper h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(90deg, #00f2ff, #bd00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-desc strong {
    color: #fff;
    font-weight: 600;
}

/* Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 60px;
}

.btn-glow-primary {
    position: relative;
    padding: 18px 40px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.4);
    z-index: 1;
}

.btn-glow-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 114, 255, 0.6);
}

.liquid {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: all 0.6s ease;
    z-index: -1;
    border-radius: 40%;
}

.btn-glow-primary:hover .liquid {
    transform: translateY(0) rotate(10deg);
}

.btn-play-video {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 600;
    transition: var(--transition);
}

.play-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
}

.play-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% { width: 100%; height: 100%; opacity: 1; }
    100% { width: 160%; height: 160%; opacity: 0; }
}

.btn-play-video:hover .play-icon {
    background: #fff;
    color: #000;
}

.btn-play-video:hover {
    color: var(--primary-color);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.trust-logos {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
    opacity: 0.7;
}

/* 3D Device Matrix (Laptop + Phones) */
.hero-matrix {
    flex: 1;
    height: 600px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    z-index: 5;
}

/* Central Monitor Construction */
.central-monitor {
    position: relative;
    width: min(480px, 90vw);
    height: auto;
    aspect-ratio: 8 / 5;
    transform-style: preserve-3d;
    z-index: 10;
    --m-scale: 1;
    animation: monitor-float 6s ease-in-out infinite;
}

@keyframes monitor-float {
    0%, 100% { transform: scale(var(--m-scale)) rotateX(5deg) rotateY(-15deg) translateZ(50px) translateY(0); }
    50% { transform: scale(var(--m-scale)) rotateX(5deg) rotateY(-15deg) translateZ(50px) translateY(-15px); }
}

.monitor-screen-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 12px;
    border: 2px solid #333;
    padding: 8px;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.2), inset 0 0 20px rgba(0,0,0,0.8);
    background: linear-gradient(135deg, #2a2a2a, #0d0d0d);
    z-index: 2;
}

.monitor-screen {
    width: 100%;
    height: 100%;
    background: #050a14;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Image mode inside Monitor */
.monitor-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, #0b0f1a, #010409);
}

.monitor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.15));
}

/* Software UI inside Monitor */
.software-window {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.software-header {
    height: 24px;
    background: #111520;
    border-bottom: 1px solid #1f2937;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 15px;
}

.window-controls {
    display: flex;
    gap: 5px;
}

.window-controls span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.window-controls .close { background: #ff5f56; }
.window-controls .min { background: #ffbd2e; }
.window-controls .max { background: #27c93f; }

.software-title {
    font-size: 0.65rem;
    color: #8b949e;
    font-family: monospace;
}

.software-title .status-ok {
    color: #00ff88;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.software-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.software-sidebar {
    width: 35px;
    background: #0d1117;
    border-right: 1px solid #1f2937;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    gap: 12px;
}

.s-nav {
    color: #484f58;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.s-nav.active, .s-nav:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 242, 255, 0.5);
}

.software-grid {
    flex: 1;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    background: #010409;
}

.mini-phone {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 4px;
    padding: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.mini-phone::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.mini-screen {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.9;
}

.m-tiktok { background: linear-gradient(45deg, #000, #222); color: #00f2fe; text-shadow: 1px 1px 0 #ff0050; }
.m-game { background: linear-gradient(45deg, #1a0b2e, #4a154b); color: #bd00ff; }
.m-social { background: linear-gradient(45deg, #0f2027, #203a43); color: #00ff88; }

.mini-screen i {
    animation: icon-pulse 2s ease-in-out infinite;
}

.mini-phone:nth-child(even) .mini-screen i {
    animation-delay: 1s;
}

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

.monitor-stand {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 30px;
    background: linear-gradient(to right, #222, #444, #222);
    z-index: 1;
}

.monitor-base {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) rotateX(70deg);
    width: 180px;
    height: 80px;
    background: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
    z-index: 0;
    border: 2px solid #333;
}

/* Floating Phone Orbit */
.phone-orbit-system {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform-style: preserve-3d;
}

.orbit-phone {
    position: absolute;
    width: 60px;
    height: 120px;
    background: #000;
    border: 2px solid #30363d;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    transform-style: preserve-3d;
    animation: orbit-float 6s ease-in-out infinite;
    z-index: 20;
}

.p-notch {
    position: absolute;
    top: 4px; left: 50%; transform: translateX(-50%);
    width: 15px; height: 4px;
    background: #000;
    border-radius: 2px;
    z-index: 5;
    box-shadow: 0 1px 2px rgba(255,255,255,0.1);
}

.p-display {
    width: 100%; height: 100%;
    background: #111;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

/* Phone UI */
.tiktok-ui { background: #000; border: 1px solid #222; }
.ui-sidebar { position: absolute; right: 2px; bottom: 10px; display: flex; flex-direction: column; gap: 5px; }
.ui-icon { color: #fff; font-size: 0.6rem; width: 12px; height: 12px; display: flex; justify-content: center; align-items: center; }
.ui-icon.heart { color: #ff0050; }

.game-ui { background: linear-gradient(45deg, #2b003e, #68004f); display: flex; justify-content: center; align-items: center; }
.game-btn { font-size: 0.5rem; color: #fff; border: 1px solid #fff; padding: 1px 4px; border-radius: 2px; animation: pulse 1s infinite; }

.social-ui { background: #f0f2f5; padding: 5px; }
.msg-bubble { width: 80%; height: 6px; background: #fff; border-radius: 3px; margin-bottom: 4px; }
.msg-bubble.right { background: #95ec69; margin-left: auto; }

.live-badge {
    position: absolute; top: 5px; left: 5px;
    background: #ff0050; color: #fff;
    font-size: 0.4rem; padding: 1px 3px; border-radius: 2px;
}

/* Orbit Positions */
.p1 { top: 16%; left: -6%; transform: translateZ(80px) rotateY(15deg); animation-delay: 0s; }
.p2 { top: 18%; right: -6%; transform: translateZ(60px) rotateY(-15deg); animation-delay: 1.2s; }
.p3 { bottom: 18%; left: -7%; transform: translateZ(70px) rotateY(12deg); animation-delay: 2.2s; }
.p4 { bottom: 24%; right: -7%; transform: translateZ(90px) rotateY(-12deg); animation-delay: 0.8s; }

@keyframes orbit-float {
    0%, 100% { transform: translateY(0) translateZ(var(--z)) rotateY(var(--ry)); }
    50% { transform: translateY(-15px) translateZ(var(--z)) rotateY(var(--ry)); }
}

/* Connecting Beams */
.matrix-beams {
    position: absolute;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.beam {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), #fff);
    height: 2px;
    opacity: 0.6;
    transform-origin: left center;
    box-shadow: 0 0 10px var(--primary-color);
    border-radius: 50%;
}

.b1 { top: 25%; left: 10%; width: 200px; transform: rotate(25deg); }
.b2 { top: 25%; right: 10%; width: 200px; transform: rotate(155deg); }
.b3 { bottom: 25%; left: 15%; width: 220px; transform: rotate(-25deg); }
.b4 { bottom: 30%; right: 15%; width: 200px; transform: rotate(-155deg); }

/* Particle System */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: particle-float 5s infinite linear;
    opacity: 0;
}

@keyframes particle-float {
    0% { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { transform: translateY(-100px) translateX(20px) scale(1); opacity: 0; }
}

/* Randomize Particles */
.particle:nth-child(1) { left: 10%; bottom: 20%; animation-duration: 4s; animation-delay: 0s; background: #fff; }
.particle:nth-child(2) { left: 20%; bottom: 30%; animation-duration: 5s; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; bottom: 10%; animation-duration: 6s; animation-delay: 2s; background: var(--secondary-color); }
.particle:nth-child(4) { left: 40%; bottom: 40%; animation-duration: 4.5s; animation-delay: 0.5s; }
.particle:nth-child(5) { left: 50%; bottom: 20%; animation-duration: 5.5s; animation-delay: 1.5s; background: #fff; }
.particle:nth-child(6) { left: 60%; bottom: 30%; animation-duration: 4s; animation-delay: 2.5s; }
.particle:nth-child(7) { left: 70%; bottom: 10%; animation-duration: 6s; animation-delay: 0.2s; background: var(--secondary-color); }
.particle:nth-child(8) { left: 80%; bottom: 40%; animation-duration: 5s; animation-delay: 1.2s; }
.particle:nth-child(9) { left: 90%; bottom: 20%; animation-duration: 4.5s; animation-delay: 2.2s; }
.particle:nth-child(10) { left: 15%; bottom: 50%; animation-duration: 5.2s; animation-delay: 0.8s; background: #fff; }
.particle:nth-child(11) { left: 25%; bottom: 15%; animation-duration: 4.8s; animation-delay: 1.8s; }
.particle:nth-child(12) { left: 35%; bottom: 35%; animation-duration: 5.8s; animation-delay: 2.8s; background: var(--secondary-color); }
.particle:nth-child(13) { left: 45%; bottom: 25%; animation-duration: 4.2s; animation-delay: 0.4s; }
.particle:nth-child(14) { left: 55%; bottom: 45%; animation-duration: 5.2s; animation-delay: 1.4s; background: #fff; }
.particle:nth-child(15) { left: 65%; bottom: 15%; animation-duration: 4.6s; animation-delay: 2.4s; }
.particle:nth-child(16) { left: 75%; bottom: 35%; animation-duration: 5.6s; animation-delay: 0.6s; background: var(--secondary-color); }
.particle:nth-child(17) { left: 85%; bottom: 25%; animation-duration: 4.4s; animation-delay: 1.6s; }
.particle:nth-child(18) { left: 5%; bottom: 45%; animation-duration: 5.4s; animation-delay: 2.6s; }
.particle:nth-child(19) { left: 95%; bottom: 15%; animation-duration: 4.9s; animation-delay: 0.9s; background: #fff; }
.particle:nth-child(20) { left: 50%; bottom: 50%; animation-duration: 5.9s; animation-delay: 1.9s; }

/* Add dynamic movement to Laptop */
.laptop-wrapper {
    animation: laptop-float 6s ease-in-out infinite;
}

@keyframes laptop-float {
    0%, 100% { transform: rotateX(10deg) rotateY(-10deg) translateZ(50px) translateY(0); }
    50% { transform: rotateX(10deg) rotateY(-10deg) translateZ(50px) translateY(-15px); }
}

/* Add dynamic movement to Beams */
.beam {
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent, #fff, transparent);
    background-size: 200% 100%;
    animation: beam-flow 1.5s linear infinite;
}

@keyframes beam-flow {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Remove old styles */
.hero-control-deck, .deck-container, .deck-wing, .app-card, .deck-center, .master-window, .deck-floor {
    display: none;
}

/* Remove old group control styles */
.hero-group-control, .control-platform, .monitor-frame, .monitor-header, .win-controls, .app-title, .status-indicator, .monitor-grid, .grid-item, .screen-mirror, .bg-game, .bg-tiktok, .bg-social, .center-focus, .cursor-anim, .phone-array, .phone-unit, .p-left, .p-center, .p-right, .p-screen, .cable, .flow-lines, .line, .l1, .l2, .l3 {
    display: none;
}

/* Remove Old Cyber Styles */
.hero-cyber-visual, .cyber-base-grid, .reactor-core, .cyber-nodes, .cyber-hud {
    display: none;
}

/* Remove Old Hologram Styles */
.hero-hologram, .hologram-base, .base-plate, .base-light, .holo-container, .holo-stack, .layer, .orbit-path, .satellite, .holo-status {
    display: none;
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    /* Add particle effects if needed, simplified here */
}

/* Remove old 3D scene styles */
.hero-3d-scene, .device-cluster, .phone-frame, .data-stream, .float-card {
    display: none;
}

/* Remove old hero styles */
.hero, .hero-content, .hero-bg, .hero-btns, .hero-stats, .screen-group, .screen-main, .screen-sub, .connection-lines, .floating-icon {
    /* We reuse some names but override their context, or hide if unused */
    /* display: none; */ 
    /* Better to just override or let new classes take over. */
}

.glowing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -100px;
    left: -100px;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 242, 255, 0.1);
}

/* Decorative Tech Elements */
.tech-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    animation: rotate 20s linear infinite;
}

.tech-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -3;
    perspective: 1000px;
    transform: rotateX(60deg) translateY(-100px) scale(2);
    opacity: 0.3;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Section Styles */
.section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Features Creative Layout */
.feature-layout-creative {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 50px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-center-visual {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.center-device {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(5, 10, 20, 0.9), #1a1f35);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--primary-color);
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.3);
    z-index: 5;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(0, 242, 255, 0.2);
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.radar-circle.sm {
    width: 60%;
    height: 60%;
    border-color: rgba(189, 0, 255, 0.2);
}

.radar-scanner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    background: linear-gradient(45deg, rgba(0, 242, 255, 0.1), transparent 50%);
    transform-origin: top left;
    animation: radar-scan 4s linear infinite;
    z-index: 1;
    border-radius: 100% 0 0 0;
}

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

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 60px;
    flex: 1;
}

.feature-column.left {
    align-items: flex-end;
    text-align: right;
}

.feature-column.right {
    align-items: flex-start;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-column.left .feature-item:hover {
    transform: translateY(-5px) translateX(-5px);
}

.feature-column.right .feature-item:hover {
    transform: translateY(-5px) translateX(5px);
}

.f-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    transition: var(--transition);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02), 0 5px 15px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

/* Unique Icon Colors for each feature to make it less monotonous */
.feature-column.left .feature-item:nth-child(1) .f-icon { color: #00f2ff; text-shadow: 0 0 10px rgba(0, 242, 255, 0.5); }
.feature-column.left .feature-item:nth-child(2) .f-icon { color: #00ff88; text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
.feature-column.left .feature-item:nth-child(3) .f-icon { color: #bd00ff; text-shadow: 0 0 10px rgba(189, 0, 255, 0.5); }

.feature-column.right .feature-item:nth-child(1) .f-icon { color: #ff9900; text-shadow: 0 0 10px rgba(255, 153, 0, 0.5); }
.feature-column.right .feature-item:nth-child(2) .f-icon { color: #ff0055; text-shadow: 0 0 10px rgba(255, 0, 85, 0.5); }
.feature-column.right .feature-item:nth-child(3) .f-icon { color: #0099ff; text-shadow: 0 0 10px rgba(0, 153, 255, 0.5); }

.feature-item:hover .f-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.feature-column.left .feature-item:nth-child(1):hover .f-icon { box-shadow: 0 0 20px rgba(0, 242, 255, 0.4); border-color: #00f2ff; }
.feature-column.left .feature-item:nth-child(2):hover .f-icon { box-shadow: 0 0 20px rgba(0, 255, 136, 0.4); border-color: #00ff88; }
.feature-column.left .feature-item:nth-child(3):hover .f-icon { box-shadow: 0 0 20px rgba(189, 0, 255, 0.4); border-color: #bd00ff; }

.feature-column.right .feature-item:nth-child(1):hover .f-icon { box-shadow: 0 0 20px rgba(255, 153, 0, 0.4); border-color: #ff9900; }
.feature-column.right .feature-item:nth-child(2):hover .f-icon { box-shadow: 0 0 20px rgba(255, 0, 85, 0.4); border-color: #ff0055; }
.feature-column.right .feature-item:nth-child(3):hover .f-icon { box-shadow: 0 0 20px rgba(0, 153, 255, 0.4); border-color: #0099ff; }

.f-content {
    flex: 1;
}

.f-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.f-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Connect Lines - Adjust for new padding */
.feature-item::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.3;
}

.feature-column.left .feature-item::after {
    right: -60px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
}

.feature-column.right .feature-item::after {
    left: -60px;
}

/* Features Grid (Old - Kept for backup or mobile if needed, but overridden above) */
.feature-grid {
    display: none; /* Hidden in favor of creative layout */
}

/* Market Section Creative */
.market-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.market-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(189, 0, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

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

.market-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.market-header p {
    color: var(--secondary-color);
    letter-spacing: 3px;
    font-weight: 500;
}

.market-showcase {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* 3D App Grid */
.app-grid-container {
    flex: 1;
    perspective: 1500px;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    transform: rotateY(15deg) rotateX(5deg);
    transform-style: preserve-3d;
}

.app-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.app-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    transform: translateZ(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.app-card.highlight-card {
    background: linear-gradient(135deg, rgba(189, 0, 255, 0.2), rgba(0, 0, 0, 0.5));
    border-color: var(--secondary-color);
    grid-column: span 2;
    transform: translateZ(30px);
    position: relative;
    overflow: hidden;
}

.app-card.highlight-card:hover {
    transform: translateZ(50px);
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: #000;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

.app-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #fff;
}

.icon-chat { background: linear-gradient(135deg, #00c6fb, #005bea); }
.icon-data { background: linear-gradient(135deg, #f83600, #f9d423); }
.icon-rocket { background: linear-gradient(135deg, #667eea, #764ba2); }
.icon-clean { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.icon-sync { background: linear-gradient(135deg, #fa709a, #fee140); }

.app-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.app-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Floating Animation */
.floating-card {
    animation: floating-card 6s ease-in-out infinite;
}

.floating-card.delay-1 { animation-delay: 0s; }
.floating-card.delay-2 { animation-delay: 2s; }
.floating-card.delay-3 { animation-delay: 4s; }

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

/* Market Content */
.market-content {
    flex: 1;
}

.market-feature-list {
    margin-bottom: 40px;
}

.mf-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.mf-icon {
    width: 50px;
    height: 50px;
    background: rgba(189, 0, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.mf-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.mf-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.market-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.developer-link a {
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
}

.developer-link a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: linear-gradient(90deg, var(--secondary-color), #8a00bc);
    box-shadow: 0 0 20px rgba(189, 0, 255, 0.4);
}

.btn-lg:hover {
    box-shadow: 0 10px 30px rgba(189, 0, 255, 0.6);
}

/* Remove Old Market CSS */
.market-layout, .market-text, .market-visual, .card-stack, .card {
    display: none;
}

/* Modern Solution Section */
.solution-section-modern {
    position: relative;
    padding: 120px 0;
    background: #050a14;
    overflow: hidden;
}

/* Modern Background Elements */
.solution-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: sphere-float 15s ease-in-out infinite alternate;
}

.sphere-1 {
    width: 400px;
    height: 400px;
    background: #00f2ff;
    top: -100px;
    left: -100px;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: #bd00ff;
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.sphere-3 {
    width: 300px;
    height: 300px;
    background: #00ff88;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.15;
}

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

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.solution-section-modern .container {
    position: relative;
    z-index: 2;
}

/* Solution Grid Layout */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Modern Card Styling */
.sol-card {
    position: relative;
    border-radius: 20px;
    padding: 1px; /* For gradient border */
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    overflow: hidden;
}

.sol-card-inner {
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 19px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.sol-card:hover {
    transform: translateY(-10px);
}

.sol-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.sol-card:hover .sol-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.sol-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.sol-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.sol-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sol-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ddd;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.sol-features li:last-child {
    margin-bottom: 0;
}

.sol-card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
    top: 0;
    left: 0;
    opacity: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
    mix-blend-mode: overlay;
}

/* Card Specific Colors */
.card-game { background: linear-gradient(145deg, rgba(255,0,85,0.5), rgba(255,255,255,0.02)); }
.card-game .sol-icon-wrapper { background: rgba(255,0,85,0.1); color: #ff0055; border: 1px solid rgba(255,0,85,0.2); box-shadow: 0 8px 25px rgba(255,0,85,0.2); }
.card-game:hover { box-shadow: 0 15px 35px rgba(255,0,85,0.15); }
.card-game .sol-features i { color: #ff0055; }

.card-ecommerce { background: linear-gradient(145deg, rgba(255,153,0,0.5), rgba(255,255,255,0.02)); }
.card-ecommerce .sol-icon-wrapper { background: rgba(255,153,0,0.1); color: #ff9900; border: 1px solid rgba(255,153,0,0.2); box-shadow: 0 8px 25px rgba(255,153,0,0.2); }
.card-ecommerce:hover { box-shadow: 0 15px 35px rgba(255,153,0,0.15); }
.card-ecommerce .sol-features i { color: #ff9900; }

.card-social { background: linear-gradient(145deg, rgba(0,255,136,0.5), rgba(255,255,255,0.02)); }
.card-social .sol-icon-wrapper { background: rgba(0,255,136,0.1); color: #00ff88; border: 1px solid rgba(0,255,136,0.2); box-shadow: 0 8px 25px rgba(0,255,136,0.2); }
.card-social:hover { box-shadow: 0 15px 35px rgba(0,255,136,0.15); }
.card-social .sol-features i { color: #00ff88; }

.card-edu { background: linear-gradient(145deg, rgba(0,153,255,0.5), rgba(255,255,255,0.02)); }
.card-edu .sol-icon-wrapper { background: rgba(0,153,255,0.1); color: #0099ff; border: 1px solid rgba(0,153,255,0.2); box-shadow: 0 8px 25px rgba(0,153,255,0.2); }
.card-edu:hover { box-shadow: 0 15px 35px rgba(0,153,255,0.15); }
.card-edu .sol-features i { color: #0099ff; }

/* Remove old styles */
.solution-section, .solution-container, .solution-tabs, .sol-tab, .solution-display, .sol-panel, .sol-info, .sol-visual, .floating-element {
    display: none;
}

/* Articles Section Magazine */
.articles-section {
    padding: 100px 0;
    background: #050a14;
}

.articles-layout {
    display: flex;
    gap: 40px;
}

/* Featured Article */
.article-featured {
    flex: 3;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.article-featured:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.af-image {
    height: 300px;
    position: relative;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Fallback gradient image */
    background-size: 200% 200%;
    animation: gradient-flow 10s ease infinite;
}

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

.af-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
}

.af-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #000;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
}

.af-content {
    padding: 30px;
}

.af-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.af-meta i {
    margin-right: 5px;
}

.af-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: var(--transition);
}

.article-featured:hover .af-content h3 {
    color: var(--primary-color);
}

.af-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-text {
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-text:hover {
    color: var(--primary-color);
    gap: 10px;
}

/* Article List */
.article-list {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.al-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    align-items: flex-start;
}

.al-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.al-date-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.al-date-box .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.al-date-box .month {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.al-content h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.al-content h4 a:hover {
    color: var(--primary-color);
}

.al-tags {
    display: flex;
    gap: 10px;
}

.al-tags span {
    font-size: 0.8rem;
    color: var(--secondary-color);
    background: rgba(189, 0, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.al-more {
    margin-top: 10px;
    text-align: right;
}

/* Remove old article styles */
.article-grid, .article-card, .article-content, .read-more {
    display: none;
}

/* Footer Modern Redesign */
.footer {
    position: relative;
    background: #02040a;
    padding: 100px 0 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.footer-bg-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(ellipse at bottom, rgba(0, 242, 255, 0.05) 0%, rgba(189, 0, 255, 0.02) 50%, transparent 80%);
    z-index: 0;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

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

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.3);
}

.footer-links h4, .footer-contact h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.footer-links ul li a::before {
    content: '›';
    font-family: monospace;
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-info-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-legal .divider {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.copyright-main {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.filing-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.filing-info a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.filing-info a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.filing-info img {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.filing-divider {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 992px) {
    /* Hero Mobile */
    .hero-container-wide {
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
        gap: 60px;
    }

    .hero-text-wrapper {
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text-wrapper h1 {
        font-size: 2.8rem;
    }
    
    .hero-desc {
        font-size: 1rem;
        margin: 0 auto 30px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .btn-glow-primary {
        width: 100%;
        text-align: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 15px;
    }

    .hero-matrix {
        height: 400px;
        transform: scale(0.7);
        margin-top: 50px;
    }
    
    .laptop-wrapper {
        width: 300px;
        height: 180px;
    }
    
    .phone-orbit-system {
        transform: scale(0.8);
    }
    
    .matrix-beams {
        display: none; /* Hide complex beams on mobile */
    }

    /* Feature Layout Mobile */
    .feature-layout-creative {
        flex-direction: column;
        gap: 30px;
        padding: 20px 0;
    }

    .feature-column {
        width: 100%;
        gap: 30px;
    }

    .feature-column.left, .feature-column.right {
        align-items: center;
        text-align: center;
    }

    .feature-item {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }

    .feature-column.left .feature-item {
        flex-direction: column-reverse; /* Keep icon on top visually if desired, or just consistent */
        flex-direction: column;
    }

    .feature-item::after {
        display: none;
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }
    
    .feature-column.left .feature-item:hover {
        transform: translateY(-5px);
    }

    .market-showcase {
        flex-direction: column-reverse;
        gap: 60px;
        text-align: center;
    }

    .app-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .mf-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .market-cta {
        align-items: center;
    }
    
    /* Solution Mobile */
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sol-card-inner {
        padding: 25px;
    }

    .sol-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .glow-sphere {
        filter: blur(80px);
        transform: scale(0.6);
    }
    
    /* Articles Mobile */
    .articles-layout {
        flex-direction: column;
    }

    .af-image {
        height: 200px;
    }
    
    .af-content h3 {
        font-size: 1.4rem;
    }
    
    .al-item {
        padding: 15px;
        gap: 15px;
    }
    
    .al-date-box {
        min-width: 50px;
        padding: 8px;
    }
    
    .al-date-box .day {
        font-size: 1.2rem;
    }
    
    .al-content h4 {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .central-monitor {
        --m-scale: 1;
        margin: 0;
        width: 90vw;
    }

    .hero-matrix {
        height: 350px;
    }

    .orbit-phone {
        transform: scale(0.7);
    }

    /* Adjust orbit phone positions on mobile to avoid clipping */
    .p1 { top: 20%; left: -2%; transform: translateZ(40px) rotateY(10deg); }
    .p2 { top: 22%; right: -2%; transform: translateZ(40px) rotateY(-10deg); }
    .p3 { bottom: 20%; left: -3%; transform: translateZ(40px) rotateY(8deg); }
    .p4 { bottom: 24%; right: -3%; transform: translateZ(50px) rotateY(-8deg); }

    .monitor-img {
        object-fit: contain;
    }

    .navbar {
        width: 95%;
        border-radius: 20px;
    }

    .logo img {
        height: 30px; /* Make logo smaller on mobile to fit badges and buttons */
    }

    .mobile-menu-btn {
        display: block;
        order: 3;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 10, 20, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-brand {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links h4::after, .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul li a {
        justify-content: center;
    }
    
    .footer-links ul li a::before {
        display: none;
    }
    
    .footer-links ul li a:hover {
        transform: translateY(-2px);
    }

    .contact-info-list li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .filing-info {
        justify-content: center;
    }
}
