/* Anubis Corp — Marketing Site */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    color: #e5e5e5;
    line-height: 1.6;
}

/* ---- Nav ---- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #222;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.brand {
    font-weight: 700;
    font-size: 1.3em;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav-links { display: flex; gap: 24px; }
.nav-links a {
    color: #a3a3a3;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-docs {
    padding: 6px 16px;
    border: 1px solid #333;
    border-radius: 6px;
}

/* ---- Hero ---- */
.hero {
    padding: 180px 40px 120px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3em;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2em;
    color: #a3a3a3;
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.05em;
    transition: background 0.2s;
}
.cta-btn:hover { background: #1d4ed8; }

/* ---- Sections ---- */
.section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.section h2 {
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section p {
    color: #a3a3a3;
    font-size: 1.05em;
}

.section a { color: #60a5fa; }

/* ---- Services Grid ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.service-card {
    background: #141414;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 24px;
}

.service-card h3 {
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.service-card p {
    color: #888;
    font-size: 0.95em;
}

/* ---- Footer ---- */
footer {
    text-align: center;
    padding: 40px;
    color: #555;
    font-size: 0.85em;
    border-top: 1px solid #1a1a1a;
}
