/* enterprise-theme.css - Master Pro Landing */
:root {
    --primary-cyan: #00f2ff;
    --primary-navy: #0a192f;
    --accent-gold: #ffcc00;
    --glass-bg: rgba(10, 25, 47, 0.7);
    --glass-border: rgba(0, 242, 255, 0.2);
    --text-main: #e6f1ff;
    --text-dim: #8892b0;
}

.enterprise-homepage {
    font-family: 'Inter', 'Noto Sans', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

.enterprise-station-detail {
    background: var(--primary-navy);
    color: var(--text-main);
    min-height: 100vh;
    padding: 2rem;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
}

/* Skyplot Container */
.skyplot-wrapper {
    position: relative; width: 100%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%; border: 1px dashed var(--glass-border);
}
.skyplot-ring {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 242, 255, 0.1); border-radius: 50%;
}

/* Animated Pulse */
.pulse-online {
    display: inline-block; width: 10px; height: 10px;
    background: var(--primary-cyan); border-radius: 50%; margin-right: 8px;
    box-shadow: 0 0 0 rgba(0, 242, 255, 0.4); animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 242, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0); }
}

/* Stats Typography */
.stat-value {
    font-size: 1.1rem; font-weight: 800; color: var(--primary-cyan);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}
.stat-label {
    text-transform: uppercase; letter-spacing: 2px;
    font-size: 0.75rem; color: var(--text-dim);
}

/* Constellation Badges */
.badge-gnss {
    padding: 4px 12px; border-radius: 20px; font-size: 0.7rem;
    font-weight: bold; border: 1px solid var(--glass-border); margin-right: 5px;
}
.badge-gps { color: #4facfe; border-color: #4facfe; }
.badge-glo { color: #f093fb; border-color: #f093fb; }
.badge-bds { color: #ff0844; border-color: #ff0844; }
.badge-gal { color: #00f2fe; border-color: #00f2fe; }

/* ============================================================
   LANDING PAGE - MASTER PRO
   ============================================================ */

/* === ANIMATED BACKGROUND === */
.landing-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 20% 50%, #0d1b2a 0%, #000 60%);
    z-index: 0; overflow: hidden;
}
.landing-grid {
    position: absolute; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(0, 242, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}
.landing-orb {
    position: absolute; border-radius: 50%;
    filter: blur(100px); opacity: 0.25; pointer-events: none;
}
.landing-orb-1 {
    width: 500px; height: 500px; top: -150px; right: -100px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.5), transparent);
    animation: orbFloat1 20s ease-in-out infinite;
}
.landing-orb-2 {
    width: 400px; height: 400px; bottom: -100px; left: -100px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.4), transparent);
    animation: orbFloat2 25s ease-in-out infinite;
}
.landing-orb-3 {
    width: 300px; height: 300px; top: 40%; left: 50%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.2), transparent);
    animation: orbFloat3 18s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, 80px) scale(1.1); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(80px, -60px); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, 0) scale(1); }
    50% { transform: translate(-50%, -40px) scale(1.15); }
}

/* Particles */
.landing-particles {
    position: absolute; width: 100%; height: 100%; pointer-events: none;
}
.landing-particle {
    position: absolute; width: 2px; height: 2px;
    background: var(--primary-cyan); border-radius: 50%;
    box-shadow: 0 0 6px var(--primary-cyan);
    animation: particleRise 14s infinite ease-in;
}
@keyframes particleRise {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-10vh) translateX(30px) scale(0.3); opacity: 0; }
}

/* Vietnam Map Outline Background */
.vietnam-map-bg {
    position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
    width: 320px; height: auto; opacity: 0.6;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.4));
    pointer-events: none; z-index: 1;
    animation: vietnamGlow 6s ease-in-out infinite;
}
@keyframes vietnamGlow {
    0%, 100% { opacity: 0.6; filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.2)); }
    50% { opacity: 0.8; filter: drop-shadow(0 0 50px rgba(0, 242, 255, 0.5)); }
}

/* Satellite Orbit Rings */
.satellite-orbit-ring {
    position: absolute; border: 1px dashed rgba(0, 242, 255, 0.08);
    border-radius: 50%; pointer-events: none;
}
.orbit-ring-1 {
    width: 600px; height: 600px; top: -200px; left: -200px;
    animation: orbitSpin 40s linear infinite;
}
.orbit-ring-2 {
    width: 800px; height: 800px; bottom: -300px; right: -300px;
    animation: orbitSpin 60s linear infinite reverse;
}
.orbit-dot {
    position: absolute; width: 6px; height: 6px;
    background: var(--primary-cyan); border-radius: 50%;
    box-shadow: 0 0 12px var(--primary-cyan);
    top: 0; left: 50%; transform: translateX(-50%);
}
@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Flying Satellites (scroll-driven by GSAP) */
.flying-satellite {
    position: absolute;
    pointer-events: none;
    will-change: transform;
    transition: none;
}
.flying-flag {
    position: absolute;
    pointer-events: none;
    will-change: transform, opacity;
    transition: none;
}

/* === LANDING NAVBAR === */
.landing-navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 32px;
    background: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.3s;
}
.landing-navbar.scrolled {
    background: rgba(10, 25, 47, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.landing-nav-brand {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: #fff; font-weight: 700; font-size: 1.1rem;
}
.landing-nav-brand img { height: 36px; filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.4)); }
.landing-nav-brand span { color: var(--primary-cyan); font-weight: 400; opacity: 0.7; font-size: 0.85rem; }
.landing-nav-actions { display: flex; gap: 12px; align-items: center; }

.btn-login-nav {
    background: transparent; border: 1px solid rgba(0, 242, 255, 0.4);
    color: var(--primary-cyan); padding: 8px 24px; border-radius: 50px;
    font-weight: 600; font-size: 0.85rem; cursor: pointer;
    transition: all 0.3s; letter-spacing: 0.5px;
}
.btn-login-nav:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
    transform: translateY(-1px);
}

/* === HERO SECTION === */
.hero-section {
    position: relative; padding: 140px 0 80px; overflow: hidden; z-index: 1;
}
/* Horizontal scanning beam */
.hero-section::after {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 242, 255, 0.6) 50%, transparent 100%);
    animation: heroScan 8s linear infinite;
    opacity: 0.4; z-index: 0;
}
@keyframes heroScan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Custom scrollbar for station directory */
.row[style*="overflowY"]::-webkit-scrollbar { width: 4px; }
.row[style*="overflowY"]::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); border-radius: 4px; }
.row[style*="overflowY"]::-webkit-scrollbar-thumb { background: rgba(0, 242, 255, 0.3); border-radius: 4px; }
.row[style*="overflowY"]::-webkit-scrollbar-thumb:hover { background: rgba(0, 242, 255, 0.5); }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0, 242, 255, 0.1); border: 1px solid rgba(0, 242, 255, 0.3);
    color: var(--primary-cyan); padding: 8px 20px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 24px;
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.2); }
    50% { box-shadow: 0 0 20px 4px rgba(0, 242, 255, 0.15); }
}
.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900;
    line-height: 1.05; letter-spacing: -2px; margin-bottom: 8px;
    color: #ffffff;
}
.hero-title-gradient {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #00a8ff 50%, #0066ff 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.3));
}
.hero-subtitle {
    color: #b0c4de; font-size: 1.15rem; max-width: 560px;
    line-height: 1.7; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn-enterprise {
    background: linear-gradient(135deg, #00f2ff 0%, #0088ff 100%);
    color: #0a192f; font-weight: 700; padding: 14px 36px;
    border-radius: 50px; border: none; cursor: pointer;
    transition: all 0.3s; text-transform: uppercase;
    letter-spacing: 1px; font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0, 242, 255, 0.3);
}
.btn-enterprise:hover {
    box-shadow: 0 8px 40px rgba(0, 242, 255, 0.5);
    transform: translateY(-3px) scale(1.03);
}
.btn-outline-cyan {
    background: transparent; border: 1px solid rgba(0, 242, 255, 0.4);
    color: var(--primary-cyan); padding: 14px 36px; border-radius: 50px;
    font-weight: 600; cursor: pointer; transition: all 0.3s;
    font-size: 0.9rem;
}
.btn-outline-cyan:hover {
    background: rgba(0, 242, 255, 0.08);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.2);
}

/* === STATS SECTION === */
.landing-stats {
    position: relative; z-index: 2; padding: 40px 0;
}
.landing-stat-card {
    background: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 242, 255, 0.12);
    border-radius: 20px; padding: 28px 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; overflow: hidden;
}
.landing-stat-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.landing-stat-card:hover {
    border-color: rgba(0, 242, 255, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.1);
}
.landing-stat-card:hover::before { opacity: 1; }
.landing-stat-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0, 242, 255, 0.08); color: var(--primary-cyan);
    font-size: 1.4rem; margin-bottom: 16px;
    border: 1px solid rgba(0, 242, 255, 0.15);
}
.landing-stat-value {
    font-size: 2.2rem; font-weight: 800;
    letter-spacing: -1px; margin-bottom: 4px;
    background: linear-gradient(135deg, #fff 30%, var(--primary-cyan));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.15));
}
.landing-stat-label {
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 2px; color: var(--text-dim); margin-bottom: 4px;
}
.landing-stat-sub { font-size: 0.8rem; color: #4a6a8a; }

/* Scanning beam on stat cards */
.landing-stat-card::after {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.04), transparent);
    transition: left 0.6s;
}
.landing-stat-card:hover::after {
    left: 150%;
}

/* === FEATURES SECTION === */
.landing-features { position: relative; z-index: 2; padding: 60px 0; }
.landing-feature-card-OLD {
    background: rgba(10, 25, 47, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 242, 255, 0.08);
    border-radius: 20px; padding: 32px 28px;
    transition: all 0.4s; height: 100%;
}
.landing-feature-card-OLD:hover {
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(0, 242, 255, 0.03);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 242, 255, 0.05);
}
.landing-feature-card-OLD:hover .landing-feature-icon {
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.15);
    transform: scale(1.08);
}
.landing-feature-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 20px;
    border: 1px solid rgba(0, 242, 255, 0.15);
    transition: all 0.4s;
}
.feature-icon-blue { background: rgba(0, 136, 255, 0.1); color: #4facfe; }
.feature-icon-green { background: rgba(0, 200, 100, 0.1); color: #51cf66; }
.feature-icon-purple { background: rgba(150, 100, 255, 0.1); color: #cc5de8; }
.feature-icon-cyan { background: rgba(0, 242, 255, 0.1); color: var(--primary-cyan); }

.landing-feature-title {
    font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 12px;
    background: linear-gradient(to right, #fff, var(--primary-cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.landing-feature-desc {
    font-size: 0.95rem; color: var(--text-dim); line-height: 1.6;
}

.landing-feature-long-desc {
    font-size: 0.88rem; color: #b0c4de; line-height: 1.7;
    margin-top: 15px;
    border-top: 1px solid rgba(0, 242, 255, 0.1);
    padding-top: 15px;
}

.back-badge {
    position: absolute; top: 20px; right: 20px;
    background: rgba(0, 242, 255, 0.1); color: var(--primary-cyan);
    font-size: 0.65rem; font-weight: 800; padding: 4px 10px;
    border-radius: 20px; text-transform: uppercase; letter-spacing: 1px;
}


/* === LOGIN OVERLAY === */
.login-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9998; opacity: 0; visibility: hidden;
    transition: all 0.4s ease;
}
.login-overlay.active { opacity: 1; visibility: visible; }
.login-panel {
    position: fixed; top: 0; right: -480px; bottom: 0;
    width: 440px; max-width: 95vw; z-index: 9999;
    background: rgba(10, 20, 40, 0.95);
    backdrop-filter: blur(30px);
    border-left: 1px solid rgba(0, 242, 255, 0.15);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.8);
    transition: right 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    overflow-y: auto; display: flex; flex-direction: column;
}
.login-panel.active { right: 0; }
.login-panel-header {
    padding: 32px 32px 0; text-align: center;
}
.login-panel-logo { width: 180px; margin: 0 auto 16px;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.4));
}
.login-panel-title {
    font-size: 0.8rem; color: var(--primary-cyan); letter-spacing: 3px;
    text-transform: uppercase; font-weight: 600; margin-bottom: 4px;
}
.login-panel-close {
    position: absolute; top: 20px; right: 20px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #aaa; width: 36px; height: 36px; border-radius: 50%;
    font-size: 1.2rem; cursor: pointer; transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.login-panel-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.login-panel-body { padding: 24px 32px; flex: 1; }
.login-input-group { position: relative; margin-bottom: 16px; }
.login-input-icon {
    position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    color: rgba(0, 242, 255, 0.5); font-size: 1.1rem; z-index: 2;
    transition: all 0.3s;
}
.login-input-group:focus-within .login-input-icon {
    color: var(--primary-cyan);
}
.login-input {
    width: 100%; background: rgba(0, 242, 255, 0.04);
    border: 1px solid rgba(0, 242, 255, 0.15); border-radius: 14px;
    color: #fff; padding: 14px 16px 14px 48px; font-size: 0.95rem;
    transition: all 0.3s; position: relative; z-index: 1;
}
.login-input:focus {
    outline: none; border-color: var(--primary-cyan);
    background: rgba(0, 242, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(0, 242, 255, 0.1), 0 0 20px rgba(0, 242, 255, 0.1);
}
.login-input::placeholder { color: #4a6a8a; }
.login-submit-btn {
    width: 100%; padding: 14px; border: none; border-radius: 14px;
    background: linear-gradient(135deg, #00f2ff, #0088ff);
    color: #0a192f; font-weight: 700; font-size: 0.95rem;
    cursor: pointer; transition: all 0.3s; position: relative;
    overflow: hidden; text-transform: uppercase; letter-spacing: 1px;
}
.login-submit-btn:hover:not(:disabled) {
    box-shadow: 0 8px 30px rgba(0, 242, 255, 0.4);
    transform: translateY(-2px);
}
.login-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.login-error {
    background: rgba(220, 53, 69, 0.15); border: 1px solid rgba(220, 53, 69, 0.4);
    border-radius: 12px; padding: 10px 14px; margin-bottom: 16px;
    font-size: 0.85rem; color: #ff6b6b;
    animation: shakeError 0.3s ease;
}
@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
.login-panel-footer {
    padding: 16px 32px 24px; border-top: 1px solid rgba(0, 242, 255, 0.08);
}
.login-promo {
    background: rgba(0, 242, 255, 0.04);
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 12px; padding: 12px 14px; margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; transition: all 0.3s;
}
.login-promo:hover {
    background: rgba(0, 242, 255, 0.08);
    border-color: rgba(0, 242, 255, 0.3);
}
.login-company-info {
    text-align: center; font-size: 0.65rem; color: #4a6a8a; line-height: 1.6;
}
.login-company-info strong { color: var(--primary-cyan); }

/* === FOOTER === */
.landing-footer {
    position: relative; z-index: 2; padding: 40px 0;
    border-top: 1px solid rgba(0, 242, 255, 0.08);
}

/* === BACKGROUND TECH GRID (legacy compat) === */
.tech-grid {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px; pointer-events: none; z-index: -1;
}

/* Status Cards (legacy compat) */
.status-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px; padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.status-card:hover {
    background: rgba(0, 242, 255, 0.03);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}

/* Glowing Border Animation */
.glow-border { position: relative; }
.glow-border::before {
    content: ''; position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--primary-cyan), transparent, var(--primary-cyan));
    z-index: -1; border-radius: inherit; opacity: 0; transition: opacity 0.3s;
}
.glow-border:hover::before { opacity: 0.5; }

/* === NAV LINKS === */
.landing-nav-link {
    color: #8892b0; text-decoration: none; font-size: 0.85rem;
    font-weight: 500; padding: 6px 14px; border-radius: 8px;
    transition: all 0.3s;
}
.landing-nav-link:hover {
    color: var(--primary-cyan);
    background: rgba(0, 242, 255, 0.06);
}

/* === STATION DIRECTORY (SEO) === */
.station-dir-item {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px; border-radius: 12px;
    background: rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(0, 242, 255, 0.06);
    text-decoration: none; transition: all 0.3s;
    color: #b0c4de; font-size: 0.82rem;
}
.station-dir-item:hover {
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(0, 242, 255, 0.04);
    color: #fff; transform: translateY(-1px);
}
.station-dir-dot {
    width: 8px; height: 8px; border-radius: 50%;
    flex-shrink: 0;
}
.station-dir-name {
    white-space: nowrap; overflow: hidden;
    text-overflow: ellipsis;
}

/* === FOOTER LINKS === */
.landing-footer-link {
    color: #6a8aaa; text-decoration: none;
    transition: color 0.3s;
}
.landing-footer-link:hover {
    color: var(--primary-cyan);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .landing-navbar { padding: 12px 16px; }
    .landing-nav-link { display: none; }
    .hero-section { padding: 120px 0 60px; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-actions { flex-direction: column; }
    .btn-enterprise, .btn-outline-cyan { width: 100%; text-align: center; }
    .vietnam-map-bg { display: none; }
    .satellite-orbit-ring { display: none; }
    .landing-stat-card { padding: 20px 18px; }
    .landing-stat-value { font-size: 1.8rem; }
    .login-panel { width: 100%; max-width: 100%; }
    .landing-footer .row { text-align: center !important; }
    .landing-footer .text-start,
    .landing-footer .text-end { text-align: center !important; }
}
@media (max-width: 480px) {
    .landing-navbar { padding: 10px 12px; }
    .landing-nav-brand span { display: none; }
    .hero-section { padding: 100px 0 40px; }
    .login-panel-body { padding: 20px 20px; }
    .login-panel-header { padding: 24px 20px 0; }
    .login-panel-footer { padding: 12px 20px 20px; }
}

/* ============================================================
   CINEMATIC SCROLL ANIMATION SYSTEM (VIP PRO)
   ============================================================ */

/* Lenis Smooth Scroll */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}

/* === GSAP INITIAL STATES === */
.gsap-hero-content {
    will-change: transform, opacity;
}

/* Vietnam Map - Make it animatable across sections */
.hero-map-wrapper {
    position: absolute;
    right: clamp(40px, 8vw, 130px);
    top: 52vh;
    width: clamp(300px, 28vw, 430px);
    height: auto;
    pointer-events: none;
    z-index: 40;
    will-change: transform, opacity;
}
.vietnam-map-bg {
    position: static;
    display: block;
    width: 100%; height: auto; opacity: 0.88;
    filter: brightness(2.55) saturate(1.9) drop-shadow(0 0 34px rgba(0, 242, 255, 0.52));
    animation: vietnamGlow 6s ease-in-out infinite;
    will-change: transform, opacity, filter;
    transform-origin: center center;
}

.network-map-slot {
    position: absolute;
    left: 50%;
    top: 61%;
    width: min(72%, 390px);
    height: 430px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.network-map-slot::before,
.network-map-slot::after {
    content: '';
    position: absolute;
    inset: 8%;
    border: 1px dashed rgba(0, 242, 255, 0.16);
    border-radius: 50%;
    animation: orbitSpin 28s linear infinite;
}

.network-map-slot::after {
    inset: 20%;
    border-color: rgba(255, 213, 79, 0.16);
    animation-duration: 38s;
    animation-direction: reverse;
}

.vietnam-origin-badge {
    position: absolute;
    right: 2%;
    top: 12%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 213, 79, 0.32);
    border-radius: 999px;
    background: rgba(10, 25, 47, 0.72);
    color: #ffd54f;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 0 22px rgba(255, 213, 79, 0.16);
}

.vietnam-origin-badge img,
.flying-flag img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.35);
}

.map-scan-ring {
    position: absolute;
    left: 48%;
    top: 48%;
    width: 58%;
    aspect-ratio: 1;
    border: 1px solid rgba(0, 242, 255, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: mapPulse 3.5s ease-out infinite;
}

.map-scan-ring-2 {
    width: 80%;
    animation-delay: 1.4s;
}

@keyframes mapPulse {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.45); }
    35% { opacity: 0.75; }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.25); }
}

.flying-satellite {
    position: fixed;
    z-index: 12;
    pointer-events: none;
    font-size: clamp(1.1rem, 1.5vw, 2.1rem);
    opacity: 0.72;
    animation: satelliteDrift 16s ease-in-out infinite;
    will-change: transform, opacity;
}

.flying-satellite i {
    display: block;
}

.sat-cyan { color: #00f2ff; filter: drop-shadow(0 0 14px rgba(0, 242, 255, 0.65)); }
.sat-blue { color: #4facfe; filter: drop-shadow(0 0 14px rgba(79, 172, 254, 0.62)); }
.sat-purple { color: #cc5de8; filter: drop-shadow(0 0 14px rgba(204, 93, 232, 0.58)); }
.sat-green { color: #51cf66; filter: drop-shadow(0 0 14px rgba(81, 207, 102, 0.56)); }
.sat-red { color: #ff6b6b; filter: drop-shadow(0 0 14px rgba(255, 107, 107, 0.55)); }

@keyframes satelliteDrift {
    0%, 100% { transform: translate3d(-18px, 10px, 0) rotate(-8deg); opacity: 0.45; }
    50% { transform: translate3d(26px, -18px, 0) rotate(12deg); opacity: 0.95; }
}

.flying-flag {
    position: fixed;
    right: 7vw;
    top: 22vh;
    z-index: 13;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(78, 12, 12, 0.5);
    border: 1px solid rgba(255, 213, 79, 0.24);
    color: #ffd54f;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    pointer-events: none;
    box-shadow: 0 0 24px rgba(255, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .hero-map-wrapper {
        display: none;
    }

    .network-map-slot {
        width: min(78vw, 300px);
        height: 320px;
    }
}

/* Hero Section - Full viewport for pinning */
.hero-section {
    position: relative; padding: 140px 0 80px; z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Stats - Override for scroll reveal */
.landing-stats {
    position: relative; z-index: 2; padding: 60px 0;
    overflow: hidden;
}

/* Features - Override for scroll reveal */
.landing-features {
    position: relative; z-index: 2; padding: 80px 0;
    overflow: hidden;
}

/* === CINEMATIC SECTION TRANSITIONS === */
.cinematic-section {
    position: relative;
    overflow: hidden;
}

/* Reveal line - decorative element */
.section-reveal-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    margin: 0 auto 40px;
    transition: width 1s ease;
}
.section-reveal-line.active {
    width: 200px;
}

/* === MAGNETIC HOVER BUTTONS === */
.btn-magnetic {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* === STAGGER REVEAL CARDS === */
.reveal-card {
    will-change: transform, opacity;
}

/* === FLOATING LABEL ON SCROLL === */
.scroll-indicator {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(0, 242, 255, 0.5);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s;
}
.scroll-indicator.hidden {
    opacity: 0;
}
.scroll-indicator-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0, 242, 255, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.3); opacity: 1; }
}

/* === ENHANCED STAT CARD GLOW ON REVEAL === */
.landing-stat-card.revealed {
    border-color: rgba(0, 242, 255, 0.25);
}
.landing-stat-card.revealed::before {
    opacity: 1;
}

/* === FEATURE CARD TILT ON SCROLL === */
.landing-feature-card-OLD {
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* === COUNTER GLOW EFFECT === */
.landing-stat-value.counting {
    animation: countGlow 0.3s ease;
}
@keyframes countGlow {
    0% { filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.15)); }
    50% { filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.5)); }
    100% { filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.15)); }
}

/* === STATION DIRECTORY WATERFALL === */
.station-dir-item {
    will-change: transform, opacity;
}

/* ============================================================
   HOW IT WORKS - TIMELINE SECTION
   ============================================================ */
.hiw-section {
    position: relative; z-index: 2; padding: 100px 0;
}
.hiw-section .section-title {
    font-size: 2.2rem; font-weight: 900; color: #fff;
    letter-spacing: -1px; text-align: center; margin-bottom: 8px;
}
.hiw-section .section-sub {
    color: #6a8aaa; text-align: center; margin-bottom: 60px; font-size: 0.95rem;
}
.hiw-timeline {
    position: relative; max-width: 900px; margin: 0 auto;
}
.hiw-timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, transparent, rgba(0,242,255,0.3), transparent);
    transform: translateX(-50%);
}
.hiw-step {
    display: flex; align-items: flex-start; margin-bottom: 80px;
    position: relative;
}
.hiw-step:nth-child(even) { flex-direction: row-reverse; }
.hiw-step-content {
    width: 45%; padding: 32px;
    background: rgba(10, 25, 47, 0.6); backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 242, 255, 0.1); border-radius: 20px;
    transition: all 0.4s;
}
.hiw-step-content:hover {
    border-color: rgba(0, 242, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.hiw-step-number {
    position: absolute; left: 50%; top: 0;
    transform: translateX(-50%);
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #00f2ff, #0066ff);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 900; color: #0a192f;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
    z-index: 2;
}
.hiw-step-title {
    font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.hiw-step-desc {
    font-size: 0.88rem; color: #8892b0; line-height: 1.7;
}
.hiw-step-icon {
    font-size: 2rem; margin-bottom: 12px;
    background: linear-gradient(135deg, #00f2ff, #0088ff);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================================
   LIVE DATA STREAM VISUALIZATION
   ============================================================ */
.livedata-section {
    position: relative; z-index: 2; padding: 100px 0; overflow: hidden;
}
.livedata-bars {
    display: flex; align-items: flex-end; justify-content: center;
    gap: 6px; height: 120px; margin-top: 40px;
}
.livedata-bar {
    width: 8px; border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, rgba(0,242,255,0.2), rgba(0,242,255,0.8));
    animation: barPulse 1.5s ease-in-out infinite;
    transform-origin: bottom;
}
@keyframes barPulse {
    0%, 100% { transform: scaleY(0.3); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}
.livedata-label {
    text-align: center; margin-top: 16px;
    font-size: 0.75rem; color: #4a6a8a; letter-spacing: 2px; text-transform: uppercase;
}
.livedata-card {
    background: rgba(10, 25, 47, 0.6); backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 242, 255, 0.1); border-radius: 20px;
    padding: 40px 32px; text-align: center;
    transition: all 0.4s;
}
.livedata-card:hover {
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.08);
}
.livedata-big {
    font-size: 3rem; font-weight: 900;
    background: linear-gradient(135deg, #fff 30%, #00f2ff);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================================
   TECHNOLOGY MARQUEE
   ============================================================ */
.tech-marquee-section {
    position: relative; z-index: 2; padding: 72px 0 66px; overflow: hidden;
}
.tech-marquee-section::before {
    content: '';
    position: absolute;
    inset: 14% 0 8%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.06), transparent);
    pointer-events: none;
}
.tech-marquee-label {
    text-shadow: 0 0 16px rgba(0, 242, 255, 0.22);
}
.tech-marquee-track {
    display: flex; gap: 60px; animation: marqueeScroll 25s linear infinite;
    width: max-content;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.tech-marquee-item {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 28px; border-radius: 60px;
    background: linear-gradient(145deg, rgba(10, 25, 47, 0.68), rgba(8, 20, 39, 0.62));
    border: 1px solid rgba(0, 242, 255, 0.14);
    white-space: nowrap; font-size: 0.9rem; font-weight: 600;
    color: #b0c4de; transition: all 0.3s;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.tech-marquee-item:hover {
    border-color: rgba(0, 242, 255, 0.34);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 18px rgba(0, 242, 255, 0.12);
}
.tech-marquee-item i {
    font-size: 1.4rem; color: var(--primary-cyan);
}

/* ============================================================
   CTA (CALL TO ACTION) SECTION
   ============================================================ */
.cta-section {
    position: relative; z-index: 2; padding: 104px 0; text-align: center;
}
.cta-box {
    max-width: 860px; margin: 0 auto; padding: 62px 46px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.06), rgba(0, 100, 255, 0.06));
    border: 1px solid rgba(0, 242, 255, 0.22);
    border-radius: 22px; position: relative; overflow: hidden;
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.cta-box::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0,242,255,0.08), transparent, rgba(0,242,255,0.06));
    animation: ctaRotate 14s linear infinite;
}
@keyframes ctaRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.cta-title {
    font-size: 2rem; font-weight: 900; color: #fff;
    position: relative; z-index: 1; margin-bottom: 16px;
}
.cta-desc {
    font-size: 1rem; color: #8892b0; max-width: 500px; margin: 0 auto 32px;
    position: relative; z-index: 1; line-height: 1.7;
}
.cta-actions {
    position: relative;
    z-index: 1;
}
.cta-actions .btn-enterprise,
.cta-actions .btn-outline-cyan {
    min-width: 160px;
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.section-divider {
    width: 100%; height: 1px; position: relative; z-index: 2;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.2), transparent);
    margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .scroll-indicator { display: none; }
    .hero-section { min-height: auto; }
    .hiw-timeline::before { left: 24px; }
    .hiw-step, .hiw-step:nth-child(even) { flex-direction: column; padding-left: 60px; }
    .hiw-step-content { width: 100%; }
    .hiw-step-number { left: 24px; transform: translateX(-50%); }
    .livedata-big { font-size: 2rem; }
    .cta-box { padding: 40px 24px; }
}

/* VIP Flag Ripple Effect */
.flag-ripple {
    position: absolute;
    width: 40px; height: 40px;
    background: rgba(0, 242, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    animation: flagRipple 2s ease-out infinite;
}

@keyframes flagRipple {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* --- 3D Flip Card System (Overriding) --- */
.landing-feature-card-wrapper {
    perspective: 1200px;
    height: 420px;
    margin-bottom: 20px;
}
.landing-feature-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}
.landing-feature-card-wrapper:hover .landing-feature-card-inner {
    transform: translateY(-6px) scale(1.02);
}
.landing-feature-card-front, .landing-feature-card-back {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 242, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}
.landing-feature-card-front {
    background: rgba(10, 25, 47, 0.6);
    z-index: 2;
}
.landing-feature-card-back {
    display: none;
}
.landing-feature-icon {
    width: 64px; height: 64px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 24px;
    border: 1px solid rgba(0, 242, 255, 0.2);
    transition: all 0.4s;
    flex-shrink: 0;
}
.feature-icon-blue { background: rgba(0, 136, 255, 0.15) !important; color: #4facfe !important; }
.feature-icon-green { background: rgba(0, 200, 100, 0.15) !important; color: #51cf66 !important; }
.feature-icon-purple { background: rgba(150, 100, 255, 0.15) !important; color: #cc5de8 !important; }
.feature-icon-cyan { background: rgba(0, 242, 255, 0.15) !important; color: #00f2ff !important; }

.landing-feature-title {
    font-size: 1.4rem !important; font-weight: 800 !important; color: #fff !important; margin-bottom: 16px !important;
    background: linear-gradient(to right, #fff, #00f2ff) !important;
    -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
}
.landing-feature-desc {
    font-size: 1rem !important; color: #8892b0 !important; line-height: 1.6 !important;
}
.landing-feature-long-desc {
    font-size: 0.9rem !important; color: #a8b2d1 !important; line-height: 1.7 !important;
    margin-top: 10px !important;
    border-top: 1px solid rgba(0, 242, 255, 0.1) !important;
    padding-top: 15px !important;
}
.back-badge {
    position: absolute !important; top: 24px !important; right: 24px !important;
    background: rgba(0, 242, 255, 0.2) !important; color: #00f2ff !important;
    font-size: 0.7rem !important; font-weight: 800 !important; padding: 4px 12px !important;
    border-radius: 20px !important; text-transform: uppercase !important; letter-spacing: 1px !important;
}

/* ============================================================
   BLOG + API DOCS (CINEMATIC SURFACE)
   ============================================================ */
.blog-shell,
.api-shell {
    position: relative;
    z-index: 2;
}

.blog-hero,
.api-hero {
    padding: 8px 0 14px;
}

.blog-card,
.blog-article,
.blog-side-card,
.api-sidebar,
.api-endpoint {
    background: linear-gradient(150deg, rgba(10, 25, 47, 0.8), rgba(5, 16, 32, 0.86));
    border: 1px solid rgba(0, 242, 255, 0.15);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.32);
}

.blog-card,
.blog-side-card {
    padding: 26px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover,
.blog-side-card:hover,
.api-endpoint:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 242, 255, 0.35);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45), 0 0 20px rgba(0, 242, 255, 0.08);
}

.blog-article {
    padding: 34px;
}

.blog-body h2,
.blog-body h3,
.blog-body h4 {
    color: #e6f1ff;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
}

.blog-body p,
.blog-body li {
    color: #9cb1ca;
    line-height: 1.74;
}

.blog-body .blog-cta {
    border-radius: 16px;
    border-color: rgba(0, 242, 255, 0.24) !important;
    background: linear-gradient(130deg, rgba(0, 242, 255, 0.06), rgba(0, 136, 255, 0.06));
}

.api-sidebar {
    border-radius: 16px;
}

.api-endpoint-head {
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.06), rgba(0, 0, 0, 0));
}

.api-endpoint-body {
    background: rgba(0, 0, 0, 0.22);
}

.api-endpoint pre {
    max-height: 320px;
    overflow: auto;
}

/* ============================================================
   SUPPORT TECH + END PAGE REDESIGN
   ============================================================ */
.support-tech-section {
    position: relative;
    z-index: 2;
    padding: 84px 0 70px;
}

.support-tech-kicker {
    color: #4a6a8a;
    font-size: 0.76rem;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.support-tech-title {
    max-width: 860px;
    margin: 0 auto 12px;
    color: #e9f5ff;
    font-weight: 900;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.support-tech-sub {
    max-width: 860px;
    margin: 0 auto;
    color: #87a2be;
}

.support-tech-line-wrap {
    position: relative;
    height: 18px;
    margin: 36px auto 28px;
    overflow: hidden;
}

.support-tech-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.38), transparent);
}

.support-tech-scan {
    position: absolute;
    top: -7px;
    left: 0;
    width: 160px;
    height: 14px;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.95), rgba(255, 255, 255, 0.7), transparent);
    filter: blur(3px);
    opacity: 1;
    mix-blend-mode: screen;
    pointer-events: none;
}

.support-tech-marquee {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 242, 255, 0.12);
    border-radius: 14px;
    background: rgba(7, 18, 34, 0.46);
    padding: 12px;
}

.support-tech-track {
    display: flex;
    gap: 12px;
    width: max-content;
    will-change: transform;
}

.support-tech-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 242, 255, 0.16);
    background: linear-gradient(145deg, rgba(10, 25, 47, 0.74), rgba(7, 18, 34, 0.62));
    color: #c3d3e6;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    min-width: 170px;
}

.support-tech-chip i {
    color: #00f2ff;
}

.support-tech-panel {
    height: 100%;
    border: 1px solid rgba(0, 242, 255, 0.16);
    border-radius: 16px;
    padding: 22px;
    background: linear-gradient(150deg, rgba(10, 25, 47, 0.8), rgba(5, 16, 32, 0.88));
}

.cta-contact-links {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.cta-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    padding: 9px 13px;
    border: 1px solid rgba(0, 242, 255, 0.14);
    border-radius: 999px;
    background: rgba(7, 18, 34, 0.54);
    color: #b9cce2;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    pointer-events: auto;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cta-contact-link:hover {
    color: #fff;
    border-color: rgba(0, 242, 255, 0.34);
    background: rgba(0, 242, 255, 0.08);
    transform: translateY(-1px);
}

.cta-contact-link i {
    color: #00f2ff;
    flex-shrink: 0;
}

.cta-contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    object-fit: contain;
}

.cta-contact-address span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.support-tech-panel h4 {
    color: #eaf3ff;
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.support-tech-panel p {
    color: #8ea8c4;
    margin-bottom: 12px;
}

.support-tech-list {
    margin: 0;
    padding-left: 18px;
    color: #a7bdd5;
}

.station-directory-section .station-directory-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #f2f8ff;
}

.station-directory-section .station-directory-sub {
    color: #6a8aaa;
}

.station-directory-grid {
    padding: 8px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 16px;
    background: rgba(7, 20, 38, 0.5);
}

.footer-surface {
    border: 1px solid rgba(0, 242, 255, 0.12);
    border-radius: 16px;
    background: linear-gradient(155deg, rgba(10, 25, 47, 0.74), rgba(4, 15, 30, 0.9));
    padding: 28px 24px;
}

.footer-brand {
    color: #f2f7ff;
    letter-spacing: 0.6px;
}

.footer-heading {
    color: #99bbd9;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 0.72rem;
    margin-bottom: 10px;
}

.footer-copy {
    color: #7f9bb8;
}

@media (max-width: 992px) {
    .blog-article,
    .blog-card,
    .blog-side-card,
    .api-sidebar,
    .api-endpoint {
        padding: 22px;
    }

    .footer-surface {
        padding: 22px 18px;
    }
}

