.container { 
    padding: 1rem; display: flex; flex-direction: column; width: 100%; overflow-x: hidden;
}

header {
    display: flex; justify-content: space-between; align-items: center; padding: 1rem 0.5rem; order: 1;
}
header h1.logo { font-size: 2.2rem; }

nav.desktop-nav { display: none; }
.desktop-btn { display: none; }
.menu-toggle { display: flex; }

.obsidian-bar { display: none; }

.robot-3d {
    position: relative; width: 280px; max-width: 80%;
    margin: 2rem auto 1rem auto; order: 2;
    animation: floatImageMobile 4s ease-in-out infinite;
    top: auto; right: auto; left: auto; display: block;
}
@keyframes floatImageMobile {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

main { display: flex; flex-direction: column; margin-top: 1rem; order: 3; }
.content { margin: 0 auto; text-align: center; width: 100%; padding-top: 0; }
.tag-box { margin: 0 auto 1.5rem auto; width: 12rem; height: 2rem; }
.content h1.hero-title { font-size: 2.2rem; margin: 1rem 0 1.5rem 0; line-height: 1.2; }
.description { font-size: 1rem; max-width: 100%; margin-bottom: 2rem; color: #a7a7a7; }
.buttons { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
.btn-get-started, .btn-signing-main { width: 100%; padding: 0.8rem 1.5rem; font-size: 0.9rem; }

.brand-section { margin-top: 4rem; margin-bottom: 4rem; padding: 2rem 0; order: 4; }
.brand-heading { font-size: 0.8rem; margin-bottom: 1.5rem; }
.brand-track { gap: 3rem; } 
.brand-item { font-size: 1.2rem; }
.brand-item i { font-size: 1.8rem; }

.features-section { margin-top: 4rem; order: 5; }
.features-grid { grid-template-columns: 1fr; gap: 1rem; }
.feature-card { padding: 1.5rem; }

.infra-section { margin-top: 4rem; order: 6; }
.map-container { 
    height: 450px; 
    position: relative; 
    overflow: hidden; 
    border-radius: 16px;
    border: 1px solid rgba(132, 56, 183, 0.2);
    background: #09090b;
}

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

.map-dot { position: absolute; width: 10px; height: 10px; background: #8438b7; border-radius: 50%; z-index: 2; box-shadow: 0 0 8px #8438b7; }
.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: 35%; left: 20%; }
.dot-miami-2 { top: 28%; left: 50%; }
.dot-miami-3 { top: 40%; left: 80%; }
.dot-miami-4 { top: 65%; left: 90%; }

.infra-cards {
    flex-direction: column; width: 90%; gap: 8px;
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    z-index: 5;
}
.status-card { 
    width: 100%; min-width: auto; padding: 0.8rem; flex: none; 
    background: rgba(10, 10, 15, 0.9); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    display: flex; align-items: center; gap: 0.8rem;
}
.status-card i { color: #8438b7; }
.status-info h4 { color: white; font-size: 0.9rem; margin: 0; }
.status-info span { font-size: 0.75rem; color: #888; }
.badge-online { margin-left: auto; color: #10b981; font-size: 0.75rem; background: rgba(16, 185, 129, 0.1); padding: 2px 6px; border-radius: 10px; }

.privacy-section {
    display: flex; flex-direction: column; gap: 3rem; margin-top: 5rem; padding-bottom: 3rem; order: 7;
}
.privacy-content { text-align: left; padding: 0 0.5rem; }
.privacy-content h2 { font-size: 2rem; }
.privacy-img { width: 100%; max-width: 100%; }

.testimonials-wrapper { margin-top: 3rem; order: 8; }
.testimonials-header h2 { font-size: 1.8rem; }
.slide { width: 280px; padding: 1.5rem; }
.slide-track { width: calc(310px * 9); }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-310px * 3)); }
}

.discord-section { order: 9; padding: 1rem; margin-bottom: 3rem; }
.discord-box {
    flex-direction: column; text-align: center; 
    padding: 2rem 1.5rem; 
    gap: 1.5rem;
}
.discord-content { max-width: 100%; }
.discord-content h2 { justify-content: center; font-size: 1.5rem; }
.join-discord-btn { font-size: 1rem; padding: 0.8rem 2rem; width: 100%; }

footer { order: 10; padding-top: 3rem; }
.footer-grid {
    flex-direction: column;
    gap: 2.5rem; padding: 0 1rem; text-align: center;
}
.brand-col { margin: 0 auto; }
.brand-col p { margin: 0 auto 1.5rem auto; }
.social-icons { justify-content: center; }

.mobile-links { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.mobile-links > a {
    text-decoration: none; color: #ccc; font-size: 1.1rem; font-weight: 500; 
    padding: 0.8rem 0; border-bottom: 1px solid #222; transition: color 0.3s;
}

.mobile-group { display: flex; flex-direction: column; border-bottom: 1px solid #222; }

.group-title {
    display: flex; justify-content: space-between; align-items: center;
    text-decoration: none; color: #ccc; font-size: 1.1rem; font-weight: 500;
    padding: 0.8rem 0; cursor: pointer;
}
.group-title i { font-size: 0.8rem; transition: transform 0.3s ease; }

.mobile-submenu {
    display: none; flex-direction: column; padding-left: 1.5rem;
    background: #0a0a0a; border-radius: 8px; margin-bottom: 1rem;
    border-left: 2px solid #8438b7;
}

.mobile-submenu a {
    text-decoration: none; color: #888; font-size: 0.95rem;
    padding: 0.8rem 0; display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid #1a1a1a;
}
.mobile-submenu a:last-child { border-bottom: none; }
.mobile-submenu a i { color: #8438b7; width: 20px; text-align: center; }

.mobile-group.active .mobile-submenu { display: flex; }
.mobile-group.active .group-title { color: white; }
.mobile-group.active .group-title i { transform: rotate(180deg); color: #8438b7; }