:root {
    --bg-deep: #050505;
    --bg-alt: #0a0a0c;
    --accent-primary: #00d2ff;
    --accent-secondary: #9d50bb;
    --accent-danger: #ff0055;
    --accent-gold: #ffcc33;
    --text-main: #e0e0e0;
    --text-dim: #888888;
    --glass: rgba(15, 15, 20, 0.7);
    --border-glass: rgba(255, 255, 255, 0.1);
    --font-header: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation --- */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: var(--font-header);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #fff;
}

.logo span {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #1a1a2e 0%, #050505 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-header);
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 8px;
    color: #fff;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--accent-primary);
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary {
    background: var(--accent-primary);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.6);
}

.btn-outline {
    border: 1px solid var(--border-glass);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    transform: translateY(-5px);
}

/* --- Glitch Effect --- */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: var(--accent-danger);
    z-index: -1;
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

.glitch::after {
    color: var(--accent-primary);
    z-index: -2;
    animation: glitch-anim 3s infinite linear alternate;
}

@keyframes glitch-anim {
    0% { clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%); transform: translate(0); }
    20% { clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%); transform: translate(-5px); }
    40% { clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%); transform: translate(5px); }
    60% { clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%); transform: translate(-5px); }
    80% { clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%); transform: translate(0); }
    100% { clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%); transform: translate(5px); }
}

/* --- Section Styling --- */
.section {
    padding: 100px 0;
}

.alt-bg {
    background-color: var(--bg-alt);
}

.section-title {
    font-family: var(--font-header);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.section-desc {
    text-align: center;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 60px;
}

/* --- Vision Cards --- */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vision-card {
    background: var(--bg-alt);
    padding: 40px;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.vision-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-10px);
}

.vision-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vision-card h3 {
    font-family: var(--font-header);
    margin-bottom: 15px;
    color: var(--accent-primary);
}

/* --- Boss Grid --- */
.boss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.boss-card {
    background: #000;
    border: 1px solid var(--border-glass);
    padding: 30px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.boss-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.boss-card[data-personality="claude"]::before { background: var(--accent-primary); }
.boss-card[data-personality="sam"]::before { background: var(--accent-secondary); }
.boss-card[data-personality="gmini"]::before { background: var(--accent-gold); }
.boss-card[data-personality="checkmate"]::before { background: var(--accent-danger); }

.boss-header {
    margin-bottom: 20px;
}

.boss-header .status {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-dim);
    display: block;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.boss-card h3 {
    font-family: var(--font-header);
    font-size: 1.2rem;
}

/* --- Feature View --- */
.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
}

.feature-text {
    flex: 1;
}

.feature-text ul {
    list-style: none;
    margin-top: 20px;
}

.feature-text li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.feature-text li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

.feature-visual {
    flex: 1;
    background: linear-gradient(135deg, #111, #222);
    border: 1px solid var(--accent-primary);
    height: 300px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contract-preview {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotate(-2deg);
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
}

.contract-stat {
    font-family: var(--font-header);
    font-size: 0.9rem;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
}

.multiplier {
    color: var(--accent-gold);
    font-size: 1.5rem;
    border: none;
    text-align: center;
    margin-top: 15px;
}

/* --- Footer --- */
.abyssal-footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-glass);
    background: #000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    font-size: 0.75rem;
    color: #555;
    padding-top: 30px;
    border-top: 1px solid #111;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3rem; }
    .feature-row { flex-direction: column; }
    .footer-content { flex-direction: column; gap: 30px; }
}
