/* Inspired by the design of usgraphics.com */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    display: inline;
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: #cccccc;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s ease-in-out;
}

.nav-links a:hover {
    color: #96bf48;
}

.hero {
    text-align: center;
    padding: 6rem 0;
}

.cli-logo-wrapper {
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 3rem;
    margin: 0 auto 3rem auto;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.cli-logo {
    font-family: "Menlo", "Consolas", "Monaco", monospace;
    white-space: pre;
    text-align: center;
    color: #ffffff;
    line-height: 1.4;
    font-size: 1.2rem;
}

.tagline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.sub-tagline {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

.content {
    padding: 2rem 0;
}

.features {
    padding: 6rem 0;
    border-top: 1px solid #333333;
}

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

.feature {
    background: #1a1a1a;
    border: 1px solid #333333;
    padding: 2.5rem;
    border-radius: 8px;
    transition:
        transform 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.6);
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.feature p {
    color: #cccccc;
}

footer {
    text-align: center;
    padding: 5rem 0;
    border-top: 1px solid #333333;
    color: #999999;
}

footer a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    color: #96bf48;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    .tagline {
        font-size: 2rem;
    }
    .sub-tagline {
        font-size: 1.1rem;
    }
    .cli-logo {
        font-size: 1rem;
    }
    .cli-logo-wrapper {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }
    .container {
        padding: 0 20px;
    }
    .cli-logo {
        font-size: 0.5rem;
        white-space: pre-wrap;
        word-break: break-all;
    }
    .cli-logo-wrapper {
        padding: 1rem;
        width: 100%;
        overflow-x: auto;
    }
}
