/* OmniCorp Corporate Website — ARG for Baza ULTRA T21 */
:root {
    --omni-dark: #0a0a12;
    --omni-surface: #12121e;
    --omni-border: #1e1e30;
    --omni-text: #c0c0d0;
    --omni-muted: #606080;
    --omni-accent: #3366ff;
    --omni-accent-dim: #1a2a5a;
    --omni-red: #cc3333;
    --omni-green: #33cc66;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--omni-dark);
    color: var(--omni-text);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: var(--omni-surface);
    border-bottom: 1px solid var(--omni-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    text-decoration: none;
}

.logo span {
    color: var(--omni-accent);
}

nav a {
    color: var(--omni-muted);
    text-decoration: none;
    margin-left: 28px;
    font-size: 14px;
    transition: color 0.2s;
}
nav a:hover { color: white; }

/* Hero */
.hero {
    text-align: center;
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--omni-surface), var(--omni-dark));
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.hero p {
    font-size: 18px;
    color: var(--omni-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 28px;
    color: white;
    margin-bottom: 12px;
}

.section p {
    color: var(--omni-muted);
    max-width: 700px;
}

/* Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.card {
    background: var(--omni-surface);
    border: 1px solid var(--omni-border);
    border-radius: 8px;
    padding: 28px;
}

.card h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
}

.card p { color: var(--omni-muted); font-size: 14px; }

/* Footer */
footer {
    background: var(--omni-surface);
    border-top: 1px solid var(--omni-border);
    padding: 40px 0;
    margin-top: 60px;
}

footer .grid-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

footer h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

footer p, footer a {
    color: var(--omni-muted);
    font-size: 13px;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

footer a:hover { color: var(--omni-accent); }

/* Utility */
.text-accent { color: var(--omni-accent); }
.text-red { color: var(--omni-red); }
.text-small { font-size: 13px; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mono { font-family: 'Courier New', monospace; }

/* Internal pages */
.internal-page {
    padding: 60px 0;
    min-height: 80vh;
}

.terminal-box {
    background: #000;
    border: 1px solid #1a3a1a;
    border-radius: 4px;
    padding: 24px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #33ff33;
    line-height: 1.8;
    max-width: 700px;
}

.terminal-box .prompt { color: #666; }
.terminal-box .warn { color: #ffaa33; }
.terminal-box .err { color: #ff3333; }
.terminal-box .info { color: #3399ff; }

.access-denied {
    background: #1a0505;
    border: 2px solid #5a1a1a;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 40px auto;
}

.access-denied h2 {
    color: var(--omni-red);
    font-size: 24px;
}

/* Hidden data (for scrapers/agents) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
