:root {
    --bg-primary: #0a1a3a;
    --bg-secondary: #0f3d7a;
    --text-primary: #ffffff;
    --text-secondary: #c7d0e0;
    --accent-cyan: #00e5ff;
    --accent-green: #00ff7f;
    --accent-yellow: #ffe066;
    --accent-orange: #ff9f40;
    --accent-red: #ff4d4d;
    --border-subtle: #1f2b55;
    --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
    font-family: var(--font-heading);
    background: radial-gradient(circle at top, var(--bg-secondary), var(--bg-primary));
    color: var(--text-primary);
    line-height: 1.6;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(5, 10, 30, 0.9);
    backdrop-filter: blur(10px);
}

.nav {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.nav-logo {
    width: 90px;
    height: auto;
}

.nav-title {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 1.25rem;
    text-transform: uppercase;
}

.nav-title-llc {
    font-size: 0.65em;
}

/* Main content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    width: 100%;
}

.hero-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 1rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-subtle);
    background: #020617;
    margin-top: 2rem;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-spectrum {
    display: inline-flex;
    gap: 2px;
    align-items: flex-end;
}

.footer-spectrum span {
    width: 2px;
    border-radius: 999px;
    display: inline-block;
}

.footer-spectrum span:nth-child(1) {
    height: 8px;
    background: var(--accent-cyan, #00e5ff);
}

.footer-spectrum span:nth-child(2) {
    height: 12px;
    background: var(--accent-green, #00ff7f);
}

.footer-spectrum span:nth-child(3) {
    height: 16px;
    background: var(--accent-yellow, #ffe066);
}

.footer-spectrum span:nth-child(4) {
    height: 12px;
    background: var(--accent-orange, #ff9f40);
}

.footer-spectrum span:nth-child(5) {
    height: 8px;
    background: var(--accent-red, #ff4d4d);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-cyan, #00e5ff);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-logo {
        width: 70px;
    }
    
    .nav-title {
        font-size: 1rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .container {
        padding: 2rem 1rem;
    }
}
