/* ─── HERO ────────────────────────────────────────────────────────────────── */

.moon-bg {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
    filter: blur(10px) brightness(0);
    animation:
        revealLogo 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards,
        breathe 4s ease-in-out 2s infinite;
}
/* ─── SECTION WRAPPER & BENTO GRID ───────────────────────────────────────── */

.section-wrapper { max-width: 1100px; width: 90%; margin-bottom: 100px; }

.section-header {
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #fff;
    text-align: left;
    border-left: 2px solid #fff;
    padding-left: 15px;
}

.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.feature-card {
    background: #0a0a0a;
    border: 1px solid var(--border);
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover { border-color: #555; background: #0f0f0f; transform: translateY(-5px); }
.feature-large { grid-column: span 2; grid-row: span 2; }

.feature-card h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    color: #fff;
}

.feature-card p { font-size: 12px; color: var(--text-dim); line-height: 1.6; margin: 0; }

.badge {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 9px;
    padding: 3px 8px;
    border: 1px solid #333;
    color: #555;
    text-transform: uppercase;
}

.ui-preview {
    width: 100%;
    height: 160px;
    margin-top: 20px;
    background: linear-gradient(45deg, #050505, #111);
    border: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 10px;
    text-transform: uppercase;
}

.status-dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: #00ff88;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px #00ff88;
}

.distro-tag {
    font-size: 9px;
    padding: 3px 7px;
    border: 1px solid #333;
    margin-right: 5px;
    color: #666;
    text-transform: uppercase;
}

/* ─── STATS ───────────────────────────────────────────────────────────────── */

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.stat-card {
    background: #0a0a0a;
    border: 1px solid var(--border);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
}

.stat-value { font-size: 36px; font-weight: 900; letter-spacing: 2px; }
.stat-label { font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 2px; margin-top: 8px; }

/* ─── TERMINAL ────────────────────────────────────────────────────────────── */

.terminal-window {
    width: 90%;
    max-width: 650px;
    background: #080808;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.terminal-header {
    background: #1a1a1a;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

.terminal-title   { font-size: 11px; color: #666; font-family: sans-serif; }
.terminal-controls { display: flex; gap: 12px; color: #444; font-size: 10px; }

.terminal-body {
    padding: 20px;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 11px;
    color: #555;
    text-align: left;
    min-height: 240px;
    white-space: pre;
    line-height: 1.2;
    overflow-x: auto;
}

.cmd         { color: #eee; }
.success     { color: #00ff88; }
.ascii-logo  { color: #fff; font-weight: bold; margin-bottom: 15px; }

/* ─── DEV TEAM ────────────────────────────────────────────────────────────── */

.dev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.dev-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.dev-avatar {
    width: 70px; height: 70px;
    background: #111;
    border: 1px solid #333;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #444;
    object-fit: cover; 
}

.dev-avatar img {
    width: 100%; height: 100%;
    border-radius: 50%;
    display: flex;
    object-fit: cover; 
}

.main-dev .dev-avatar { border-color: #fff; color: #fff; }

.dev-info h4 { margin: 0; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.dev-info p  { font-size: 11px; color: #555; margin-top: 5px; }

.dev-socials { display: flex; justify-content: center; gap: 15px; margin-top: 15px; }
.dev-socials a { color: #444; transition: 0.3s; }
.dev-socials a:hover { color: #fff; transform: translateY(-2px); }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */

footer {
    width: 100%;
    background: #080808;
    border-top: 1px solid #111;
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo { margin-bottom: 20px; display: block; }
.footer-brand p { font-size: 12px; color: #444; line-height: 1.8; max-width: 250px; }

.footer-column h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #fff;
}

.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 12px; }

.footer-list a {
    color: #555;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.3s;
}

.footer-list a::before { content: '-'; margin-right: 8px; color: #222; transition: 0.3s; }
.footer-list a:hover { color: #fff; transform: translateX(8px); }
.footer-list a:hover::before { color: #fff; }

.footer-bottom {
    max-width: 1100px;
    width: 90%;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid #111;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .nav-container {
        width: calc(100% - 24px);
        margin: 12px;
        padding: 14px 18px;
    }

    .hero {
        padding: 90px 16px 40px;
        min-height: auto;
    }

    .intro-text {
        font-size: 11px;
        letter-spacing: 5px;
        line-height: 1.7;
        text-align: center;
        margin-bottom: 18px;
    }

    .main-title {
        font-size: 34px;
        letter-spacing: 8px;
        line-height: 1.2;
        text-align: center;
    }

    .logo-placeholder {
        transform: scale(0.72);
        margin: -20px auto;
    }

    .btn-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 10px;
    }

    .action-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px;
    }

    .terminal-window {
        width: 100%;
        max-width: 100%;
        margin-top: 30px;
    }

    .terminal-body {
        font-size: 10px;
        line-height: 1.4;
        overflow-x: auto;
        white-space: pre-wrap;
    }

    .ascii-logo {
        font-size: 8px;
        line-height: 1.1;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 26px;
        letter-spacing: 6px;
    }

    .intro-text {
        font-size: 10px;
        letter-spacing: 4px;
    }

    .logo-placeholder {
        transform: scale(0.58);
    }

    .terminal-body {
        font-size: 9px;
    }

    .action-btn {
        font-size: 10px;
        letter-spacing: 2px;
    }
}

.nav-container {
    justify-content: center;
}

.logo {
    margin: 0 auto;
}