@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    --bg-color: #0d0d0d;
    --text-color: #e0e0e0;
    --accent-color: #b0fb50;
    /* Lime Green from the terminal screenshots */
    --accent-cyan: #1da8df;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(-2deg);
    }

    50% {
        transform: translateY(-20px) rotate(0deg);
    }

    100% {
        transform: translateY(0px) rotate(-2deg);
    }
}

@keyframes glow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(176, 251, 80, 0.2));
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(176, 251, 80, 0.5));
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-glow {
    animation: glow 4s ease-in-out infinite;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

header.scrolled {
    background: rgba(13, 13, 13, 0.9);
    padding: 0.8rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: -1px;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
    opacity: 0.7;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    /* Adjusted to prevent overlap with fixed nav */
    padding-bottom: 5rem;
}

.hero-content {
    flex: 1;
}

.hero-tag {
    color: var(--accent-color);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: #999;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    font-family: 'JetBrains Mono', monospace;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(176, 251, 80, 0.3);
}

.btn-secondary {
    border: 1px solid var(--glass-border);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: #fff;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image {
    max-width: 100%;
    width: 600px;
}

/* Features Section */
.features {
    padding: 5rem 0;
}

.section-label {
    text-align: center;
    color: var(--accent-color);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 1rem;
    display: block;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 3rem;
    transition: var(--transition-fast);
}

.feature-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #777;
    font-size: 0.95rem;
}

/* Documentation */
.docs {
    padding: 5rem 0;
}

.terminal-block {
    background: #000;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 2rem;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    overflow: hidden;
}

.terminal-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.command {
    color: var(--accent-color);
}

.comment {
    color: #555;
}

/* Footer */
footer {
    padding: 5rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
}

.hero-container {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
}

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

    header {
        padding: 0.8rem 0;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding-top: 180px;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .hero-image {
        width: 100%;
        max-width: 350px;
    }

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

    .hero p {
        margin: 0 auto 2rem;
    }

    .cta-group {
        justify-content: center;
    }

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

    .features h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}