/* corporate-theme.css */
:root {
    --bg-dark: #0a0a0a;
    --text-main: #ffffff;
    --text-muted: #888888;
    --border-color: #333333;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.terminal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo {
    font-weight: 700;
    color: var(--text-main);
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.system-status {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.hero {
    margin-bottom: 4rem;
    border-left: 2px solid var(--border-color);
    padding-left: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.hero .subhead {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    font-weight: 300;
}

.metrics-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-bottom: 4rem;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric .value {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.metric .label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.thesis {
    margin-bottom: 4rem;
}

.thesis h2 {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

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

.thesis-card {
    background: #111;
    border: 1px solid var(--border-color);
    padding: 2rem;
}

.thesis-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.thesis-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

footer {
    border-top: 1px solid var(--border-color);
    padding: 2rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 4rem; } .product-card { background: #111; border: 1px solid var(--border-color); padding: 2.5rem; } .product-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border-color); padding-bottom: 1rem; } .product-title { font-size: 1.5rem; font-weight: 500; letter-spacing: -0.01em; } .product-status { font-family: var(--font-mono); font-size: 0.75rem; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; border: 1px solid var(--border-color); padding: 0.25rem 0.5rem; } .product-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; min-height: 100px; } .product-meta { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-main); } .product-meta div { margin-bottom: 0.5rem; display: flex; justify-content: space-between; border-bottom: 1px dotted var(--border-color); padding-bottom: 0.25rem; } .product-meta span.label { color: var(--text-muted); }

.tech-section { margin-bottom: 5rem; } .tech-section h2 { font-size: 2rem; font-weight: 400; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border-color); padding-bottom: 1rem; } .tech-content { color: var(--text-muted); font-size: 1.05rem; max-width: 900px; margin-bottom: 2rem; } .tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; } .tech-box { border: 1px solid var(--border-color); padding: 2rem; background: #0c0c0c; } .tech-box h3 { font-family: var(--font-mono); font-size: 0.9rem; color: var(--text-main); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; } .tech-box p { color: var(--text-muted); font-size: 0.9rem; }

.about-container { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; margin-bottom: 5rem; } .about-content { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; } .about-content h2 { color: var(--text-main); font-size: 2rem; font-weight: 400; margin-bottom: 1.5rem; } .about-content p { margin-bottom: 1.5rem; } .about-sidebar { border-left: 1px solid var(--border-color); padding-left: 2rem; } .sidebar-block { margin-bottom: 3rem; } .sidebar-block h3 { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-main); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; border-bottom: 1px solid var(--border-color); padding-bottom: 0.5rem; } .sidebar-list { list-style: none; padding: 0; } .sidebar-list li { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.75rem; display: flex; align-items: flex-start; } .sidebar-list li::before { content: '>'; font-family: var(--font-mono); color: var(--text-main); margin-right: 0.75rem; }
