:root {
    --bg-color: #060606;
    --accent-color: #baff4c;
    --accent-glow: rgba(186, 255, 76, 0.4);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.4);
    --mono-font: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--mono-font);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background Effects */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow-radial {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle at center, rgba(186, 255, 76, 0.03) 0%, transparent 70%);
    filter: blur(80px);
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* Layout */
.content {
    max-width: 900px;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80vh;
    z-index: 1;
}

/* Header */
.header {
    display: flex;
    justify-content: flex-start;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tagline {
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 4px;
    font-weight: 500;
}

.main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.highlight {
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(186, 255, 76, 0.2);
}

.description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    font-weight: 300;
}

.services-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 680px;
    font-weight: 300;
    margin-top: 12px;
}

/* CTA & Social */
.cta-group {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 18px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(186, 255, 76, 0.15);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(186, 255, 76, 0.3);
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .footer {
        flex-direction: column;
        gap: 12px;
    }
}
