.container { width: 100%; margin: 0 auto; padding: 0 2rem; position: relative; }
header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5rem; }
header h1 { margin: 0; font-size: 3rem; font-weight: 300; }

@keyframes navEntrance {
    0% { opacity: 0; transform: translateY(-40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes barEntrance {
    0% { opacity: 0; transform: translateX(-50%) translateY(40px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

nav.desktop-nav { 
    display: flex; align-items: center; gap: 3rem; 
    background: rgba(11, 11, 18, 0.6); 
    backdrop-filter: blur(15px); 
    border: 1px solid rgba(132, 56, 183, 0.4); 
    border-radius: 50px; 
    padding: 0.8rem 3rem; 
    position: relative; z-index: 1000;
    transition: box-shadow 0.3s ease;
    animation: navEntrance 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
nav.desktop-nav::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(300px circle at var(--x) var(--y), rgba(168, 85, 247, 0.3), transparent 50%);
    z-index: -1; opacity: 0; transition: opacity 0.3s ease;
    pointer-events: none; border-radius: 50px;
}
nav.desktop-nav:hover::before { opacity: 1; }
nav.desktop-nav:hover {
    box-shadow: 0 0 20px rgba(132, 56, 183, 0.3), inset 0 0 10px rgba(132, 56, 183, 0.1);
    border-color: #a855f7;
}
nav.desktop-nav .nav-link, nav.desktop-nav .dropdown-trigger {
    font-size: 1rem; font-weight: 500; letter-spacing: 0.05rem; 
    transition: all 0.2s ease; text-decoration: none; 
    color: #e7e7e7; display: flex; align-items: center; gap: 8px; cursor: pointer;
    position: relative; z-index: 2;
}
nav.desktop-nav .nav-link:hover, nav.desktop-nav .dropdown-trigger:hover { 
    color: #fff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
nav.desktop-nav i { font-size: 0.85rem; }

main { display: flex; flex-direction: column; justify-content: center; min-height: calc(90vh - 6rem); }
.content { max-width: 40rem; margin-left: 10%; z-index: 999; }
.content h1 { font-size: 4rem; font-weight: 600; letter-spacing: 0.1em; margin: 2rem 0; line-height: 1.2; text-shadow: 0 0 10px rgba(128, 128, 128, 0.418); }
.description { font-size: 1.2rem; letter-spacing: 0.05em; max-width: 35rem; color: gray; }
.buttons { display: flex; gap: 2rem; margin-top: 3rem; }

.robot-3d { 
    position: absolute; 
    top: 350px; 
    right: 5%; 
    width: 450px; 
    animation: floatImage 4s ease-in-out infinite; 
} 
@keyframes floatImage { 
    0% { transform: translateY(0); } 
    50% { transform: translateY(-24px); } 
    100% { transform: translateY(0); } 
}

.brand-section {
    margin-top: 6rem;
    margin-bottom: 6rem; 
    padding: 2.5rem 0;
    text-align: center; position: relative; width: 100%;
    background: #09090b; 
    border-top: 1px solid #8438b7;
    border-bottom: 1px solid #8438b7;
    box-shadow: 0 0 30px rgba(132, 56, 183, 0.15);
}
.brand-slider-container { overflow: hidden; width: 100%; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.brand-track { display: flex; gap: 6rem; width: max-content; animation: scrollBrands 40s linear infinite; align-items: center; }
.brand-item { display: flex; align-items: center; gap: 0.8rem; color: #71717a; font-size: 1rem; transition: all 0.3s ease; }
.brand-item i { font-size: 2.2rem; }
.brand-item:hover { color: white; transform: scale(1.1); text-shadow: 0 0 10px rgba(132, 56, 183, 0.8); }
.brand-item:hover i { color: #a855f7; drop-shadow: 0 0 10px rgba(168, 85, 247, 0.8); }
@keyframes scrollBrands { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-100% / 3)); } }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.section-header h2 .highlight { color: #8438b7; text-shadow: 0 0 20px rgba(132, 56, 183, 0.5); }
.section-header p { color: #888; font-size: 1.1rem; }

.features-section { max-width: 1200px; margin: 8rem auto; padding: 0 1rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.feature-card {
    background: #0b0d12; border: 1px solid rgba(132, 56, 183, 0.2);
    border-radius: 16px; padding: 2rem; transition: all 0.3s ease;
    position: relative; overflow: hidden;
    border-left: 3px solid transparent; 
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: #8438b7;
    border-left: 3px solid #8438b7; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(132, 56, 183, 0.1);
}
.icon-box {
    width: 50px; height: 50px; background: rgba(132, 56, 183, 0.1);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; color: #a855f7; font-size: 1.5rem;
    transition: all 0.3s ease;
}
.feature-card:hover .icon-box { background: #8438b7; color: white; box-shadow: 0 0 15px #8438b7; }
.feature-card h3 { color: white; margin-bottom: 0.8rem; font-size: 1.25rem; }
.feature-card p { color: #888; font-size: 0.95rem; line-height: 1.6; }

.infra-section { max-width: 1200px; margin: 8rem auto 10rem auto; padding: 0 1rem; position: relative; }
.map-container {
    width: 100%; height: 550px; 
    background: #09090b; 
    border: 1px solid rgba(132, 56, 183, 0.2);
    border-radius: 24px; position: relative; overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}

.world-map-svg {
    width: 100%; height: 100%; 
    position: absolute; top: 0; left: 0; z-index: 1;
}

.map-dot { position: absolute; width: 12px; height: 12px; background: #8438b7; border-radius: 50%; cursor: pointer; box-shadow: 0 0 10px #8438b7; z-index: 2; }
.pulse {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100%; height: 100%; border-radius: 50%; border: 1px solid #a855f7;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { width: 100%; height: 100%; opacity: 1; }
    100% { width: 300%; height: 300%; opacity: 0; }
}

.dot-miami-1 { top: 38%; left: 24%; }
.dot-miami-2 { top: 29%; left: 51%; }
.dot-miami-3 { top: 44%; left: 74%; }
.dot-miami-4 { top: 76%; left: 86%; }

.infra-cards {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 1rem; width: 95%; justify-content: center;
    flex-wrap: wrap; z-index: 5;
}

.status-card {
    background: rgba(10, 10, 15, 0.9); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); padding: 0.8rem 1.2rem;
    border-radius: 12px; display: flex; align-items: center; gap: 0.8rem;
    flex: 1; 
    min-width: 200px; transition: all 0.3s ease;
}
.status-card:hover { border-color: #8438b7; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(132, 56, 183, 0.2); }
.status-card i { font-size: 1.3rem; color: #8438b7; background: rgba(132, 56, 183, 0.1); padding: 8px; border-radius: 8px; }
.status-info h4 { color: white; font-size: 0.9rem; margin-bottom: 2px;white-space: nowrap; }
.status-info span { color: #888; font-size: 0.75rem; }
.badge-online { margin-left: auto; color: #10b981; font-size: 0.75rem; background: rgba(16, 185, 129, 0.1); padding: 4px 8px; border-radius: 20px; white-space: nowrap;}

.privacy-section { 
    display: flex; align-items: center; justify-content: center;
    gap: 5rem; margin-top: 5rem; padding-bottom: 5rem;
    max-width: 1200px; margin-left: auto; margin-right: auto;
}
.privacy-img-box { flex: 1; display: flex; justify-content: center; }
.privacy-content { flex: 1; padding-right: 0; }

.menu-toggle, .mobile-menu-overlay { display: none; }

.dropdown-container { position: relative; height: 100%; }
.dropdown-menu {
    position: absolute; top: 150%; left: 50%; transform: translateX(-50%) translateY(10px);
    background: #0b0d12; border: 1px solid rgba(132, 56, 183, 0.2); 
    border-radius: 12px; padding: 1.5rem; opacity: 0; visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 50px rgba(0,0,0,0.9); z-index: 10000;
}
.menu-wide { width: 480px; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.menu-narrow { width: 280px; display: flex; flex-direction: column; gap: 0.5rem; }
.dropdown-menu::before {
    content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
    width: 12px; height: 12px; background: #0b0d12;
    border-top: 1px solid rgba(132, 56, 183, 0.2); border-left: 1px solid rgba(132, 56, 183, 0.2);
}
.dropdown-container:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); top: 150%; }
.dropdown-container:hover .dropdown-trigger i { transform: rotate(180deg); }
.drop-item {
    display: flex; align-items: center; gap: 15px; text-decoration: none; color: #ccc;
    font-size: 0.95rem; font-weight: 500; padding: 12px; border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}
.drop-item i { font-size: 1.2rem; color: #8438b7; width: 24px; text-align: center; }
.drop-item:hover { background: rgba(255, 255, 255, 0.05); color: white; }

.slider { height: auto; margin: 0 auto; overflow: hidden; position: relative; width: 100%; max-width: 1200px; }

.obsidian-bar {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 2.5rem; 
    background: rgba(5, 5, 8, 0.95); backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.397); border-radius: 16px; 
    padding: 0.7rem 1.5rem; box-shadow: 0 20px 50px rgba(0,0,0,0.95);
    z-index: 9999; overflow: hidden; opacity: 0; 
    animation: barEntrance 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; animation-delay: 0.3s;
}
.obsidian-bar::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(200px circle at var(--x) var(--y), rgba(168, 85, 247, 0.3), transparent 60%);
    z-index: -1; pointer-events: none; opacity: 0; transition: opacity 0.3s ease;
}
.obsidian-bar:hover::before { opacity: 1; }
.obsidian-link {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-decoration: none; color: #999; gap: 4px; transition: color 0.3s ease; min-width: 50px; position: relative; z-index: 2;
}
.obsidian-link i { font-size: 1.2rem; transition: all 0.3s ease; }
.obsidian-link span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.obsidian-link:hover { color: white; }
.obsidian-link:hover i { color: #a855f7; text-shadow: 0 0 10px #a855f7; }