/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #07070d;
    color: #e0e0e0;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: #7c8cff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #a8b8ff;
}

/* ========== STARFIELD ========== */
.stars,
.twinkling {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.stars {
    background: #07070d url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjgiIHI9IjEiIGZpbGw9IndoaXRlIi8+PGNpcmNsZSBjeD0iODAiIGN5PSI1MCIgcj0iMSIgZmlsbD0id2hpdGUiLz48Y2lyY2xlIGN4PSIxNTAiIGN5PSIyMCIgcj0iMSIgZmlsbD0id2hpdGUiLz48Y2lyY2xlIGN4PSIyMDAiIGN5PSI4MCIgcj0iMSIgZmlsbD0id2hpdGUiLz48Y2lyY2xlIGN4PSIzMDAiIGN5PSI0MCIgcj0iMSIgZmlsbD0id2hpdGUiLz48Y2lyY2xlIGN4PSI0MDAiIGN5PSI2MCIgcj0iMSIgZmlsbD0id2hpdGUiLz48Y2lyY2xlIGN4PSI0NTAiIGN5PSIyMCIgcj0iMSIgZmlsbD0id2hpdGUiLz48Y2lyY2xlIGN4PSI1MCIgY3k9IjE1MCIgcj0iMSIgZmlsbD0id2hpdGUiLz48Y2lyY2xlIGN4PSIxMDAiIGN5PSIxODAiIHI9IjEiIGZpbGw9IndoaXRlIi8+PC9zdmc+) repeat;
    background-size: 500px 500px;
    animation: starMove 200s linear infinite;
}

.twinkling {
    background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48Y2lyY2xlIGN4PSI2MCIgY3k9IjEyMCIgcj0iMS41IiBmaWxsPSJ3aGl0ZSIgb3BhY2l0eT0iMC4zIi8+PGNpcmNsZSBjeD0iMTgwIiBjeT0iNjAiIHI9IjIiIGZpbGw9IndoaXRlIiBvcGFjaXR5PSIwLjIiLz48Y2lyY2xlIGN4PSIyODAiIGN5PSIxNDAiIHI9IjEuNSIgZmlsbD0id2hpdGUiIG9wYWNpdHk9IjAuNCIvPjxjaXJjbGUgY3g9IjM4MCIgY3k9IjUwIiByPSIxIiBmaWxsPSJ3aGl0ZSIgb3BhY2l0eT0iMC4zIi8+PC9zdmc+) repeat;
    background-size: 500px 500px;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes starMove {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-500px);
    }
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

/* ========== NAVIGATION ========== */
nav {
    background: rgba(7, 7, 13, 0.92);
    border-bottom: 1px solid rgba(124, 140, 255, 0.08);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.nav-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: #a0a0b8;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7c8cff;
    transition: width 0.3s;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-link-company {
    color: #7c8cff !important;
    font-weight: 500;
}

.btn-nav {
    background: #5865f2;
    color: #fff !important;
    padding: 8px 24px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.15);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.25);
    background: #4752c4;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #7c8cff, #6a7ae6);
    color: #fff;
    padding: 14px 38px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(124, 140, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(124, 140, 255, 0.25);
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 38px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid rgba(124, 140, 255, 0.25);
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.btn-secondary:hover {
    background: rgba(124, 140, 255, 0.06);
    border-color: #7c8cff;
    transform: translateY(-3px);
    color: #fff;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

.btn-dev {
    display: inline-block;
    background: #5865f2;
    color: #fff;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s, transform 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-dev:hover {
    background: #4752c4;
    color: #fff;
    transform: translateY(-2px);
}

/* ========== HERO ========== */
.hero {
    padding: 100px 0 80px;
    position: relative;
    z-index: 1;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 200, 50, 0.12);
    border: 1px solid rgba(255, 200, 50, 0.15);
    color: #ffd866;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.1;
}

.hero .highlight {
    background: linear-gradient(135deg, #7c8cff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .tagline {
    font-size: 1.4rem;
    color: #7c8cff;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero .description {
    max-width: 480px;
    color: #b0b0c8;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(124, 140, 255, 0.06);
    border-radius: 50%;
    animation: spin 25s linear infinite;
}

.ring-2 {
    width: 82%;
    height: 82%;
    animation-direction: reverse;
    animation-duration: 18s;
    border-color: rgba(124, 140, 255, 0.04);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-logo {
    width: 170px;
    height: 170px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 50px rgba(124, 140, 255, 0.12));
}

/* ========== DEV BANNER ========== */
.dev-banner {
    padding: 20px 0;
    background: rgba(255, 200, 50, 0.04);
    border-top: 1px solid rgba(255, 200, 50, 0.08);
    border-bottom: 1px solid rgba(255, 200, 50, 0.08);
    position: relative;
    z-index: 1;
}

.dev-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dev-banner-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.dev-banner-content strong {
    color: #ffd866;
    display: block;
    font-size: 1rem;
}

.dev-banner-content p {
    color: #b0b0c8;
    font-size: 0.95rem;
    margin: 0;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 100px 0;
    background: rgba(7, 7, 13, 0.6);
    border-top: 1px solid rgba(124, 140, 255, 0.04);
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    color: #b0b0c8;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.about-text strong {
    color: #fff;
}

.about-ownership {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(124, 140, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a0a0b8;
    font-size: 0.95rem;
}

.about-ownership a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7c8cff;
    font-weight: 500;
}

.about-ownership img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.about-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: rgba(124, 140, 255, 0.03);
    border: 1px solid rgba(124, 140, 255, 0.06);
    border-radius: 16px;
}

.about-quote blockquote {
    font-size: 1.5rem;
    color: #fff;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 12px;
}

.quote-attribution {
    color: #7c8cff;
    font-size: 0.95rem;
    margin: 0;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.features-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: #a0a0b8;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(124, 140, 255, 0.03);
    border: 1px solid rgba(124, 140, 255, 0.06);
    border-radius: 16px;
    padding: 35px 30px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    border-color: rgba(124, 140, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 16px;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: #b0b0c8;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.feature-status {
    display: inline-block;
    background: rgba(124, 140, 255, 0.1);
    border: 1px solid rgba(124, 140, 255, 0.12);
    border-radius: 20px;
    padding: 3px 16px;
    color: #7c8cff;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ========== ROADMAP SECTION ========== */
.roadmap-section {
    padding: 100px 0;
    background: rgba(7, 7, 13, 0.6);
    border-top: 1px solid rgba(124, 140, 255, 0.04);
    border-bottom: 1px solid rgba(124, 140, 255, 0.04);
    position: relative;
    z-index: 1;
}

.roadmap-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.roadmap-timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.roadmap-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 20px 24px;
    background: rgba(124, 140, 255, 0.02);
    border: 1px solid rgba(124, 140, 255, 0.04);
    border-radius: 12px;
    transition: border-color 0.3s;
}

.roadmap-item:hover {
    border-color: rgba(124, 140, 255, 0.1);
}

.roadmap-status {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
}

.roadmap-status.done {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.roadmap-status.in-progress {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.roadmap-status.planned {
    background: rgba(107, 114, 128, 0.15);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.2);
}

.roadmap-content h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.roadmap-content p {
    color: #a0a0b8;
    font-size: 0.95rem;
    margin: 0 0 8px;
}

.roadmap-phase {
    display: inline-block;
    background: rgba(124, 140, 255, 0.06);
    border-radius: 12px;
    padding: 2px 14px;
    color: #7c8cff;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ========== COMMUNITY SECTION ========== */
.community-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.community-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.community-content h2 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
}

.community-content p {
    color: #b0b0c8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.community-note {
    margin-top: 16px;
    color: #7c8cff !important;
    font-size: 1rem !important;
}

/* ========== FOOTER ========== */
footer {
    background: rgba(7, 7, 13, 0.95);
    border-top: 1px solid rgba(124, 140, 255, 0.04);
    padding: 60px 0 24px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 1rem;
}

.footer-section p {
    color: #a0a0b8;
    font-size: 0.95rem;
}

.footer-dev-notice {
    color: #ffd866;
    font-size: 0.85rem;
    margin-top: 8px;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #a0a0b8;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(124, 140, 255, 0.04);
}

.footer-bottom p {
    color: #555;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #7c8cff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content {
        gap: 50px;
    }

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

    .globe-container {
        width: 260px;
        height: 260px;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(7, 7, 13, 0.98);
        padding: 24px;
        border-bottom: 1px solid rgba(124, 140, 255, 0.08);
        gap: 16px;
        align-items: stretch;
        text-align: center;
    }

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

    .btn-nav {
        text-align: center;
    }

    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero .description {
        margin: 0 auto 32px;
    }

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

    .hero .tagline {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .globe-container {
        width: 200px;
        height: 200px;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
    }

    .dev-banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .btn-dev {
        white-space: normal;
        width: 100%;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-quote {
        padding: 30px;
    }

    .about-quote blockquote {
        font-size: 1.2rem;
    }

    .features-section h2,
    .roadmap-section h2,
    .community-content h2 {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .roadmap-timeline {
        padding: 0 10px;
    }

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

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