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

:root {
    --bg-dark: #0a0a1a;
    --bg-darker: #050510;
    --accent-green: #aaff00;
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-gray: rgba(255, 255, 255, 0.7);
    --line-gray: rgba(255, 255, 255, 0.2);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-dark);
    padding: 24px 0;
    z-index: 1000;
    border-bottom: 1px solid var(--line-gray);
    transition: background-color 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
}

.logo-icon {
    height: 70px;
    width: auto;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.logo-dot {
    color: var(--accent-green);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0 auto;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-white);
    text-transform: lowercase;
    font-size: 16px;
    transition: color 0.3s;
    font-weight: 400;
}

.nav-menu a:hover {
    color: var(--accent-green);
}

.contact-btn {
    background: var(--accent-green);
    color: var(--bg-dark) !important;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s, transform 0.3s;
    white-space: nowrap;
}

.contact-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    margin-top: 80px;
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--text-white);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.network-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 1;
}

/* particles.js canvas styling */
#particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero .container {
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    background: rgba(10, 10, 26, 0.3);
    padding: 24px;
    border-radius: 8px;
    pointer-events: none;
}

.hero-title {
    font-size: clamp(56px, 8vw, 112px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-white);
}

.title-line {
    display: inline-block;
}

.word {
    display: inline-block;
}

.accent-period {
    color: var(--accent-green);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--text-white);
}

.stats-divider {
    width: 100%;
    height: 1px;
    background: var(--line-gray);
    margin-bottom: 40px;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat-card {
    text-align: left;
}

.stat-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-green);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-white);
    font-weight: 300;
}

/* Main Content */
.main-content {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 2;
}

.content-header {
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-header-text {
    max-width: 900px;
}

.content-header-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: var(--accent-green);
    top: 20%;
    left: 20%;
    filter: blur(1px);
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: rgba(170, 255, 0, 0.3);
    top: 50%;
    right: 20%;
    filter: blur(0.5px);
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--accent-green);
    bottom: 20%;
    left: 30%;
    filter: blur(1px);
    opacity: 0.4;
}

.shape-4 {
    width: 60px;
    height: 60px;
    background: rgba(170, 255, 0, 0.5);
    top: 30%;
    right: 40%;
    filter: blur(0.5px);
}

.shape-5 {
    width: 90px;
    height: 90px;
    background: var(--accent-green);
    bottom: 30%;
    right: 10%;
    filter: blur(1px);
    opacity: 0.5;
}

.animated-text {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--text-white);
}

.text-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
}

/* Fallback: Show elements if GSAP doesn't load (after 3 seconds) */
body:not(.gsap-loaded) .text-line,
body:not(.gsap-loaded) .service-card {
    animation: fallbackFadeIn 0.5s ease forwards;
    animation-delay: 3s;
}

@keyframes fallbackFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

.content-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 800px;
    margin-bottom: 30px;
}

.quote {
    font-size: 24px;
    font-style: italic;
    color: var(--text-white);
    font-weight: 300;
}

/* Services Section */
.services-section {
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-white);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-scroll-wrapper {
    margin-bottom: 0;
    padding: 40px 0 0;
    width: 100%;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    cursor: pointer;
    will-change: transform, opacity;
    flex-shrink: 0;
    min-width: 350px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-green);
    box-shadow: 0 8px 30px rgba(170, 255, 0, 0.2);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.services-footer {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 900px;
    margin: 40px auto 40px;
    text-align: center;
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--accent-green);
    color: var(--bg-dark);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.3s, transform 0.3s;
    text-align: center;
}

.cta-button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    margin-bottom: 100px;
    border: 1px solid var(--line-gray);
}

.cta-section h2 {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.cta-section h3 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line-gray);
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(170, 255, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

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

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo .logo-icon {
    height: 60px;
    width: auto;
}

.footer-title {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 60px;
    text-transform: lowercase;
    color: var(--text-white);
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: lowercase;
    color: var(--text-gray);
    font-weight: 400;
}

.footer-section address,
.footer-section a {
    color: var(--text-white);
    text-decoration: none;
    line-height: 2;
    display: block;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-green);
}

.footer-icon {
    display: inline-block;
    margin-right: 10px;
    opacity: 0.9;
    font-size: 16px;
    color: var(--accent-green);
    transition: transform 0.3s ease;
}

.footer-section a:hover .footer-icon {
    transform: scale(1.1);
}

.footer-link {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--line-gray);
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-gray);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-white);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes networkPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
    }
}

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

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

    .content-header-visual {
        height: 300px;
    }

    .shape-1 {
        width: 100px;
        height: 100px;
    }

    .shape-2 {
        width: 70px;
        height: 70px;
    }

    .shape-3 {
        width: 80px;
        height: 80px;
    }

    .shape-4 {
        width: 50px;
        height: 50px;
    }

    .shape-5 {
        width: 70px;
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        gap: 30px;
        border-bottom: 1px solid var(--line-gray);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .contact-btn {
        display: none;
    }


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

    .hero-content {
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

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

    .content-description {
        font-size: 18px;
    }
}

/* Coming Soon Styles */
.coming-soon-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-hero .container {
    pointer-events: auto;
}

.coming-soon-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    background: rgba(10, 10, 26, 0.5);
    padding: 60px 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: auto;
}

.coming-soon-content .hero-title {
    margin-bottom: 60px;
    font-size: clamp(56px, 8vw, 96px);
}

.coming-soon-box {
    margin-bottom: 40px;
}

.coming-soon-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 30px;
    line-height: 1.2;
}

.coming-soon-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-divider {
    width: 100px;
    height: 2px;
    background: var(--accent-green);
    margin: 40px auto;
    opacity: 0.5;
}

.coming-soon-subtitle {
    font-size: 18px;
    color: var(--text-white);
    font-weight: 300;
    font-style: italic;
}

.back-home-btn {
    display: inline-block;
    background: transparent;
    color: var(--text-white);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--accent-green);
    margin-top: 20px;
    pointer-events: auto;
    cursor: pointer;
}

.back-home-btn:hover {
    background: var(--accent-green);
    color: var(--bg-dark);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .coming-soon-content {
        padding: 40px 30px;
    }

    .coming-soon-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 56px;
    }

    .logo {
        font-size: 14px;
    }

    .logo-icon {
        height: 50px;
        width: auto;
    }

    .footer-logo .logo-icon {
        height: 50px;
    }

    .coming-soon-content {
        padding: 30px 20px;
    }

    .coming-soon-title {
        font-size: 40px;
    }

    .back-home-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}
