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

:root {
    --black: #000000;
    --gray-950: #0a0a0a;
    --gray-900: #171717;
    --gray-800: #262626;
    --gray-700: #404040;
    --gray-600: #525252;
    --gray-500: #737373;
    --gray-400: #a3a3a3;
    --gray-300: #d4d4d4;
    --gray-200: #e5e5e5;
    
    --cyan-950: #083344;
    --cyan-900: #164e63;
    --cyan-800: #155e75;
    --cyan-700: #0e7490;
    --cyan-600: #0891b2;
    --cyan-500: #06b6d4;
    --cyan-400: #22d3ee;
    --cyan-300: #67e8f9;
    --cyan-200: #a5f3fc;
    --cyan-100: #cffafe;
    
    --blue-950: #172554;
    --blue-900: #1e3a8a;
    --blue-800: #1e40af;
    --blue-700: #1d4ed8;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    
    --amber-950: #451a03;
    --amber-900: #78350f;
    --amber-800: #92400e;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --amber-300: #fcd34d;
    --amber-200: #fde68a;
    --amber-100: #fef3c7;
    
    --green-950: #052e16;
    --green-900: #14532d;
    --green-800: #166534;
    --green-700: #15803d;
    --green-600: #16a34a;
    --green-500: #22c55e;
    --green-400: #4ade80;
    
    --purple-950: #2e1065;
    --purple-900: #4c1d95;
    --purple-800: #5b21b6;
    --purple-700: #6d28d9;
    --purple-600: #7c3aed;
    
    --red-950: #450a0a;
    --red-900: #7f1d1d;
    --red-800: #991b1b;
    --red-700: #b91c1c;
    --red-400: #f87171;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--black);
    color: rgb(255, 238, 2);
    line-height: 1.6;
    overflow-x: hidden;
}

.font-mono, .nav-title, .status-text, .hero-title, .badge, button, h1, h2, h3, .system-message {
    font-family: 'Courier New', Courier, monospace;
}

/* Navigation */
#navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--cyan-950);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
}

.nav-logo {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-text {
    font-size: 0.75rem;
    font-family: monospace;
}

.nav-title {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

.nav-status {
    font-size: 0.75rem;
    color: var(--cyan-400);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-brand:hover .nav-status {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.3s;
    font-family: monospace;
}

.nav-link:hover {
    color: var(--cyan-400);
    background: rgba(6, 182, 212, 0.1);
}

.nav-link.active {
    color: var(--cyan-400);
    background: rgba(8, 51, 68, 0.3);
}

/* Main Content */
main {
    padding-top: 80px;
}

.section {
    display: none;
    min-height: calc(100vh - 80px);
    padding: 3rem 1.5rem;
}

.section.active {
    display: block;
}

/* Containers */
.container-large {
    max-width: 1280px;
    margin: 0 auto;
}

.container-medium {
    max-width: 1024px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, black 100%);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 384px;
    height: 384px;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-text {
    font-size: 0.75rem;
    color: var(--cyan-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-main {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-words {
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-word {
    position: absolute;
    font-size: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.hero-word.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-word[data-index="0"] {
    color: var(--amber-400);
}

.hero-word[data-index="1"] {
    color: var(--cyan-400);
}

.hero-word[data-index="2"] {
    color: var(--blue-400);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 768px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-family: monospace;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--cyan-600);
    color: white;
}

.btn-primary:hover {
    background: var(--cyan-500);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--cyan-600);
    color: var(--cyan-400);
}

.btn-secondary:hover {
    background: rgba(8, 51, 68, 0.3);
}

.btn-tertiary {
    background: transparent;
    border: 1px solid var(--amber-600);
    color: var(--amber-400);
}

.btn-tertiary:hover {
    background: rgba(69, 26, 3, 0.3);
}

.badge {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--amber-400);
    border-radius: 2px;
}

.badge-amber {
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--amber-400);
}

.hero-tagline {
    max-width: 768px;
    margin: 0 auto;
    padding: 1.5rem;
    border: 1px solid var(--cyan-950);
    background: rgba(8, 51, 68, 0.1);
}

.hero-tagline p {
    font-size: 0.875rem;
    color: var(--cyan-300);
    font-family: monospace;
    line-height: 1.8;
}

/* Different Section */
.different-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(to bottom, var(--black), rgba(8, 51, 68, 0.05));
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.875rem;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.different-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.different-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
}

.different-item.not {
    background: rgba(127, 29, 29, 0.1);
    border: 1px solid rgba(127, 29, 29, 0.3);
    color: var(--gray-300);
}

.different-item.not svg {
    color: var(--red-400);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.different-item.is {
    background: rgba(8, 51, 68, 0.2);
    border: 1px solid rgba(14, 116, 144, 0.3);
    color: var(--cyan-100);
}

.different-item.is svg {
    color: var(--cyan-400);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.statement-box {
    padding: 2rem;
    background: var(--black);
    border: 1px solid rgba(14, 116, 144, 0.3);
    text-align: center;
}

.statement-box p {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.8;
}

/* Page Headers */
.page-header {
    margin-bottom: 4rem;
    text-align: center;
}

.page-title-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
}

.divider {
    width: 6rem;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--cyan-500), transparent);
    margin: 1rem auto 0;
}

.divider-amber {
    background: linear-gradient(to right, transparent, var(--amber-500), transparent);
}

/* About Section */
.why-v6 {
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(8, 51, 68, 0.2), rgba(30, 58, 138, 0.2));
    border: 1px solid rgba(14, 116, 144, 0.3);
}

.why-v6 h2 {
    font-size: 1.5rem;
    color: var(--cyan-400);
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.solution-box {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-left: 4px solid var(--amber-500);
}

.solution-box strong {
    color: var(--amber-400);
}

.solution-box p {
    color: var(--amber-100);
}

.philosophy-section {
    margin-bottom: 4rem;
}

.text-center {
    text-align: center;
}

.philosophy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.philosophy-item {
    padding: 1.5rem;
    background: var(--black);
    border: 1px solid var(--cyan-950);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.3s;
}

.philosophy-item:hover {
    border-color: var(--cyan-800);
}

.philosophy-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(8, 51, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.philosophy-item:hover .philosophy-icon {
    background: rgba(14, 116, 144, 0.3);
}

.philosophy-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--cyan-400);
}

.tagline-box {
    padding: 2rem;
    background: rgba(8, 51, 68, 0.1);
    border: 1px solid rgba(14, 116, 144, 0.3);
    text-align: center;
}

.tagline-box p {
    font-size: 0.875rem;
    color: var(--cyan-300);
    font-family: monospace;
    line-height: 1.8;
}

/* Architecture Section */
.evolution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.evolution-old {
    padding: 1.5rem;
    background: rgba(23, 23, 23, 0.5);
    border: 1px solid var(--gray-700);
}

.evolution-old h3 {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.flow-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.flow-item {
    font-size: 0.875rem;
    color: var(--gray-400);
    font-family: monospace;
}

.flow-arrow {
    width: 1rem;
    height: 1rem;
    color: var(--gray-600);
    margin: 0.25rem 0;
}

.evolution-new {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(8, 51, 68, 0.3), rgba(30, 58, 138, 0.3));
    border: 1px solid var(--cyan-800);
}

.evolution-new h3 {
    font-size: 1.25rem;
    color: var(--cyan-400);
    margin-bottom: 1rem;
}

.evolution-new p {
    font-size: 0.875rem;
    color: var(--gray-300);
}

.pipeline-section {
    margin-bottom: 4rem;
}

.pipeline-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.pipeline-flow {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pipeline-step {
    padding: 1rem;
    background: rgba(8, 51, 68, 0.1);
    border: 1px solid rgba(14, 116, 144, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: border-color 0.3s;
}

.pipeline-step:hover {
    border-color: var(--cyan-700);
}

.pipeline-step.highlight {
    background: rgba(69, 26, 3, 0.2);
    border-color: rgba(217, 119, 6, 0.5);
    color: var(--amber-300);
}

.step-num {
    font-size: 0.75rem;
    font-family: monospace;
    color: var(--gray-500);
    width: 2rem;
}

.pipeline-arrow {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--cyan-600);
    margin: 0.5rem auto;
    display: block;
}

.brains-section {
    margin-bottom: 4rem;
}

.brains-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.brains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.brain-item {
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.3);
    border: 1px solid var(--gray-800);
    cursor: pointer;
    transition: all 0.3s;
}

.brain-item:hover {
    border-color: var(--gray-700);
}

.brain-item[data-color="cyan"]:hover {
    border-color: var(--cyan-500);
    background: rgba(8, 51, 68, 0.2);
}

.brain-item[data-color="blue"]:hover {
    border-color: var(--blue-500);
    background: rgba(23, 37, 84, 0.2);
}

.brain-item[data-color="purple"]:hover {
    border-color: var(--purple-600);
    background: rgba(46, 16, 101, 0.2);
}

.brain-item[data-color="green"]:hover {
    border-color: var(--green-500);
    background: rgba(5, 46, 22, 0.2);
}

.brain-item[data-color="indigo"]:hover {
    border-color: #6366f1;
    background: rgba(30, 27, 75, 0.2);
}

.brain-item[data-color="amber"]:hover {
    border-color: var(--amber-400);
    background: rgba(69, 26, 3, 0.2);
}

.brain-item svg {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.75rem;
}

.brain-item[data-color="cyan"] svg { color: var(--cyan-400); }
.brain-item[data-color="blue"] svg { color: var(--blue-400); }
.brain-item[data-color="purple"] svg { color: #a78bfa; }
.brain-item[data-color="green"] svg { color: var(--green-400); }
.brain-item[data-color="indigo"] svg { color: #818cf8; }
.brain-item[data-color="amber"] svg { color: var(--amber-400); }

.brain-item h3 {
    font-size: 1.125rem;
}

/* Versions Section */
.versions-timeline {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.version-item {
    padding: 1.5rem;
    border: 1px solid;
    transition: border-color 0.3s;
}

.version-item[data-status="active"] {
    background: rgba(5, 46, 22, 0.1);
    border-color: rgba(20, 83, 45, 0.3);
}

.version-item[data-status="planned"] {
    background: rgba(23, 37, 84, 0.1);
    border-color: rgba(30, 58, 138, 0.3);
}

.version-item[data-status="vision"] {
    background: rgba(46, 16, 101, 0.1);
    border-color: rgba(76, 29, 149, 0.3);
}

.version-item[data-status="concept"] {
    background: rgba(69, 26, 3, 0.1);
    border-color: rgba(120, 53, 15, 0.3);
}

.version-item.featured {
    background: linear-gradient(135deg, rgba(69, 26, 3, 0.3), rgba(8, 51, 68, 0.3));
    border-color: rgba(217, 119, 6, 0.5);
}

.version-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.version-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.version-title h3 {
    font-size: 1.5rem;
}

.version-title span:nth-child(2) {
    color: var(--gray-400);
}

.featured-text {
    color: var(--amber-300);
}

.version-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-family: monospace;
    text-transform: uppercase;
}

.version-item[data-status="active"] .version-status {
    color: var(--green-400);
}

.version-item[data-status="planned"] .version-status {
    color: var(--blue-400);
}

.version-item[data-status="vision"] .version-status {
    color: #a78bfa;
}

.version-item[data-status="concept"] .version-status {
    color: var(--amber-400);
}

.version-status svg {
    width: 1.25rem;
    height: 1.25rem;
}

.version-item p {
    color: var(--gray-400);
}

.v6-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.v6-introduces {
    padding: 2rem;
    background: rgba(8, 51, 68, 0.2);
    border: 1px solid var(--cyan-800);
}

.v6-introduces h3 {
    font-size: 1.25rem;
    color: var(--cyan-400);
    margin-bottom: 1.5rem;
}

.v6-introduces ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.v6-introduces li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-300);
}

.v6-introduces svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--cyan-400);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.v6-will-not {
    padding: 2rem;
    background: rgba(69, 26, 3, 0.2);
    border: 1px solid var(--amber-600);
}

.v6-will-not h3 {
    font-size: 1.25rem;
    color: var(--amber-400);
    margin-bottom: 1.5rem;
}

.v6-will-not ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.v6-will-not li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-300);
}

.dash {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash::before {
    content: '';
    width: 0.75rem;
    height: 2px;
    background: var(--amber-400);
}

.example-box {
    padding: 2rem;
    background: var(--black);
    border: 1px solid rgba(14, 116, 144, 0.3);
}

.example-box h3 {
    font-size: 1.25rem;
    color: var(--cyan-400);
    margin-bottom: 1rem;
}

.example-box p {
    color: var(--gray-300);
    line-height: 1.8;
}

/* V6 Page */
.v6-sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.v6-section {
    padding: 2rem;
    border: 1px solid;
    transition: border-color 0.3s;
}

.v6-section[data-color="cyan"] {
    background: rgba(8, 51, 68, 0.1);
    border-color: rgba(14, 116, 144, 0.3);
}

.v6-section[data-color="blue"] {
    background: rgba(23, 37, 84, 0.1);
    border-color: rgba(30, 58, 138, 0.3);
}

.v6-section[data-color="green"] {
    background: rgba(5, 46, 22, 0.1);
    border-color: rgba(20, 83, 45, 0.3);
}

.v6-section[data-color="purple"] {
    background: rgba(46, 16, 101, 0.1);
    border-color: rgba(76, 29, 149, 0.3);
}

.v6-section:hover {
    border-color: var(--cyan-700);
}

.v6-section[data-color="cyan"]:hover { border-color: rgba(14, 116, 144, 0.5); }
.v6-section[data-color="blue"]:hover { border-color: rgba(30, 58, 138, 0.5); }
.v6-section[data-color="green"]:hover { border-color: rgba(20, 83, 45, 0.5); }
.v6-section[data-color="purple"]:hover { border-color: rgba(76, 29, 149, 0.5); }

.v6-section svg {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
}

.v6-section[data-color="cyan"] svg { color: var(--cyan-400); }
.v6-section[data-color="blue"] svg { color: var(--blue-400); }
.v6-section[data-color="green"] svg { color: var(--green-400); }
.v6-section[data-color="purple"] svg { color: #a78bfa; }

.v6-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.v6-section[data-color="cyan"] h3 { color: var(--cyan-300); }
.v6-section[data-color="blue"] h3 { color: var(--blue-400); }
.v6-section[data-color="green"] h3 { color: var(--green-400); }
.v6-section[data-color="purple"] h3 { color: #c4b5fd; }

.v6-section p {
    color: var(--gray-400);
    line-height: 1.8;
}

.comparison-section {
    margin-bottom: 4rem;
}

.comparison-section h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead tr {
    border-bottom: 1px solid var(--cyan-900);
}

.comparison-table th {
    text-align: left;
    padding: 1rem;
    font-family: monospace;
    color: var(--gray-400);
}

.comparison-table th:nth-child(3) {
    color: var(--cyan-400);
}

.comparison-table th svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--gray-900);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(10, 10, 10, 0.3);
}

.comparison-table td {
    padding: 1rem;
}

.comparison-table td.category {
    font-family: monospace;
    font-size: 0.875rem;
    color: var(--amber-400);
}

.comparison-table td:nth-child(2) {
    color: var(--gray-400);
}

.comparison-table td.highlight {
    color: var(--cyan-200);
}

.v6-statement-box {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(69, 26, 3, 0.3), rgba(8, 51, 68, 0.3));
    border: 1px solid rgba(217, 119, 6, 0.5);
    text-align: center;
}

.v6-statement-box p {
    font-size: 0.875rem;
    color: var(--cyan-300);
    font-family: monospace;
    line-height: 1.8;
}

.v6-statement-box .highlight-text {
    color: var(--amber-300);
    font-family: monospace;
}

/* Automation Section */
.mental-model-box {
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(8, 51, 68, 0.3), rgba(30, 58, 138, 0.3));
    border: 1px solid var(--cyan-800);
}

.mental-model-box h2 {
    font-size: 1.5rem;
    color: var(--cyan-400);
    margin-bottom: 1rem;
}

.model-formula {
    font-size: 1.25rem;
    color: var(--gray-200);
    font-family: monospace;
    margin-bottom: 1rem;
}

.mental-model-box > p {
    color: var(--gray-400);
    line-height: 1.8;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.capability-item {
    padding: 1.5rem;
    background: var(--black);
    border: 1px solid var(--cyan-950);
    transition: border-color 0.3s;
}

.capability-item:hover {
    border-color: var(--cyan-800);
}

.capability-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(8, 51, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s;
}

.capability-item:hover .capability-icon {
    background: rgba(14, 116, 144, 0.3);
}

.capability-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--cyan-400);
}

.capability-item h3 {
    font-size: 1.25rem;
    color: var(--cyan-300);
    margin-bottom: 0.5rem;
}

.capability-item p {
    color: var(--gray-400);
}

.workflow-example {
    margin-bottom: 4rem;
}

.workflow-example h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.workflow-step {
    padding: 1rem;
    background: rgba(8, 51, 68, 0.1);
    border: 1px solid rgba(14, 116, 144, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.workflow-step.event {
    background: rgba(23, 37, 84, 0.2);
    border-color: var(--blue-800);
}

.workflow-step.warning {
    background: rgba(69, 26, 3, 0.2);
    border-color: var(--amber-600);
}

.workflow-step.recovery {
    background: rgba(69, 26, 3, 0.2);
    border-color: var(--amber-600);
}

.workflow-step.success {
    background: rgba(5, 46, 22, 0.2);
    border-color: var(--green-800);
}

.workflow-step strong {
    font-family: monospace;
}

.workflow-step.warning strong,
.workflow-step.recovery strong {
    color: var(--amber-300);
}

.workflow-step.success strong {
    color: var(--green-300);
}

.workflow-step.event strong {
    color: var(--cyan-300);
}

.workflow-step span:nth-child(2) {
    color: var(--gray-500);
}

.workflow-step span:nth-child(3) {
    color: var(--gray-400);
}

/* Safety Section */
.safety-controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.safety-control {
    padding: 1.5rem;
    background: rgba(69, 26, 3, 0.2);
    border: 1px solid var(--amber-600);
    transition: border-color 0.3s;
}

.safety-control:hover {
    border-color: var(--amber-500);
}

.control-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(69, 26, 3, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s;
}

.safety-control:hover .control-icon {
    background: rgba(146, 64, 14, 0.3);
}

.control-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--amber-400);
}

.safety-control h3 {
    font-family: monospace;
    color: var(--amber-300);
    margin-bottom: 0.5rem;
}

.safety-control p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.permission-tiers {
    margin-bottom: 4rem;
}

.permission-tiers h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.tier-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tier-item {
    padding: 1.5rem;
    border: 1px solid;
}

.tier-item.safe {
    background: rgba(5, 46, 22, 0.1);
    border-color: var(--green-800);
}

.tier-item.moderate {
    background: rgba(69, 26, 3, 0.1);
    border-color: var(--amber-700);
}

.tier-item.critical {
    background: rgba(69, 10, 10, 0.1);
    border-color: var(--red-700);
}

.tier-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.tier-header h3 {
    font-size: 1.25rem;
}

.tier-badge {
    font-size: 0.75rem;
    font-family: monospace;
    padding: 0.25rem 0.75rem;
    border: 1px solid;
}

.tier-badge.auto {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--green-400);
}

.tier-badge.requires {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
    color: var(--amber-400);
}

.tier-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.action-tag {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--gray-800);
    color: var(--gray-300);
}

.permission-demo {
    margin-bottom: 4rem;
}

.permission-demo h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.demo-container {
    max-width: 768px;
    margin: 0 auto;
}

.permission-state {
    display: none;
}

.permission-state.active {
    display: block;
}

.demo-trigger {
    width: 100%;
    padding: 1.5rem;
    background: rgba(8, 51, 68, 0.2);
    border: 1px solid var(--cyan-700);
    color: white;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.3s;
}

.demo-trigger:hover {
    border-color: var(--cyan-600);
}

.demo-trigger p:first-child {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.demo-hint {
    font-size: 0.875rem;
    color: var(--cyan-400);
    font-family: monospace;
}

.permission-request {
    padding: 2rem;
    background: rgba(69, 26, 3, 0.2);
    border: 2px solid var(--amber-600);
    animation: pulse 2s ease-in-out infinite;
}

.request-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.request-header svg {
    width: 2rem;
    height: 2rem;
    color: var(--amber-400);
    flex-shrink: 0;
}

.request-header h3 {
    font-size: 1.25rem;
    font-family: monospace;
    color: var(--amber-300);
    margin-bottom: 0.5rem;
}

.request-header p {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.action-details {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(180, 83, 9, 0.3);
    font-family: monospace;
    font-size: 0.875rem;
    color: var(--amber-200);
}

.request-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-grant {
    padding: 0.5rem 1.5rem;
    background: var(--amber-600);
    color: white;
    border: none;
    font-family: monospace;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-grant:hover {
    background: var(--amber-500);
}

.btn-deny {
    padding: 0.5rem 1.5rem;
    background: transparent;
    color: var(--gray-300);
    border: 1px solid var(--gray-600);
    font-family: monospace;
    cursor: pointer;
    transition: border-color 0.3s;
}

.btn-deny:hover {
    border-color: var(--gray-500);
}

.system-messages {
    margin-bottom: 4rem;
}

.system-messages h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.message-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.system-message {
    padding: 1rem;
    background: rgba(8, 51, 68, 0.1);
    border: 1px solid rgba(14, 116, 144, 0.3);
    font-family: monospace;
    font-size: 0.875rem;
    color: var(--cyan-300);
}

.safety-statement-box {
    padding: 2rem;
    background: var(--black);
    border: 1px solid var(--amber-600);
    text-align: center;
}

.safety-title {
    color: var(--amber-300);
    font-family: monospace;
    margin-bottom: 0.5rem;
}

.safety-statement-box > p:last-child {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Roadmap Section */
.roadmap-timeline {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-line {
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        var(--green-600) 0%, 
        var(--green-600) 33%, 
        var(--blue-600) 33%, 
        var(--blue-600) 66%, 
        #a78bfa 66%, 
        var(--amber-600) 100%
    );
}

.roadmap-item {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 3rem;
}

.roadmap-node {
    position: absolute;
    left: 0;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
}

.roadmap-item.green .roadmap-node {
    background: rgba(5, 46, 22, 0.3);
    border-color: var(--green-600);
}

.roadmap-item.blue .roadmap-node {
    background: rgba(23, 37, 84, 0.3);
    border-color: var(--blue-600);
}

.roadmap-item.purple .roadmap-node {
    background: rgba(46, 16, 101, 0.3);
    border-color: #a78bfa;
}

.roadmap-item.amber .roadmap-node {
    background: rgba(69, 26, 3, 0.3);
    border-color: var(--amber-600);
}

.roadmap-node svg {
    width: 2rem;
    height: 2rem;
}

.roadmap-item.green .roadmap-node svg { color: var(--green-400); }
.roadmap-item.blue .roadmap-node svg { color: var(--blue-400); }
.roadmap-item.purple .roadmap-node svg { color: #c4b5fd; }
.roadmap-item.amber .roadmap-node svg { color: var(--amber-400); }

.roadmap-content {
    padding: 1.5rem;
    border: 1px solid;
    transition: border-color 0.3s;
}

.roadmap-item.green .roadmap-content {
    background: rgba(5, 46, 22, 0.1);
    border-color: rgba(20, 83, 45, 0.3);
}

.roadmap-item.blue .roadmap-content {
    background: rgba(23, 37, 84, 0.1);
    border-color: rgba(30, 58, 138, 0.3);
}

.roadmap-item.purple .roadmap-content {
    background: rgba(46, 16, 101, 0.1);
    border-color: rgba(76, 29, 149, 0.3);
}

.roadmap-item.amber .roadmap-content {
    background: rgba(69, 26, 3, 0.1);
    border-color: rgba(120, 53, 15, 0.3);
}

.roadmap-item.green .roadmap-content:hover { border-color: rgba(20, 83, 45, 0.5); }
.roadmap-item.blue .roadmap-content:hover { border-color: rgba(30, 58, 138, 0.5); }
.roadmap-item.purple .roadmap-content:hover { border-color: rgba(76, 29, 149, 0.5); }
.roadmap-item.amber .roadmap-content:hover { border-color: rgba(120, 53, 15, 0.5); }

.roadmap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.roadmap-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.roadmap-title h3 {
    font-size: 1.5rem;
}

.roadmap-title span:nth-child(2) {
    color: var(--gray-400);
}

.roadmap-status {
    font-size: 0.75rem;
    font-family: monospace;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border: 1px solid;
}

.roadmap-item.green .roadmap-status {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--green-400);
}

.roadmap-item.blue .roadmap-status {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
    color: var(--blue-400);
}

.roadmap-item.purple .roadmap-status {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
    color: #c4b5fd;
}

.roadmap-item.amber .roadmap-status {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
    color: var(--amber-400);
}

.roadmap-content p {
    color: var(--gray-400);
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.milestone-card {
    padding: 1.5rem;
    border: 1px solid;
}

.milestone-card.green {
    background: rgba(5, 46, 22, 0.2);
    border-color: var(--green-800);
}

.milestone-card.blue {
    background: rgba(23, 37, 84, 0.2);
    border-color: var(--blue-800);
}

.milestone-card.amber {
    background: rgba(69, 26, 3, 0.2);
    border-color: var(--amber-600);
}

.milestone-card h3 {
    font-family: monospace;
    margin-bottom: 0.5rem;
}

.milestone-card.green h3 { color: var(--green-400); }
.milestone-card.blue h3 { color: var(--blue-400); }
.milestone-card.amber h3 { color: var(--amber-400); }

.milestone-version {
    font-size: 1.5rem;
    font-family: monospace;
    margin-bottom: 0.25rem;
}

.milestone-card p:last-child {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Footer */
footer {
    border-top: 1px solid var(--cyan-950);
    background: var(--black);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo {
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-size: 0.625rem;
    font-family: monospace;
}

.footer-title {
    font-family: monospace;
}

.footer-col p {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.8;
}

.footer-col h3 {
    font-family: monospace;
    color: var(--cyan-400);
    margin-bottom: 1rem;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.green {
    background: var(--green-400);
}

.status-dot.cyan {
    background: var(--cyan-400);
}

.status-dot.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.status-item span {
    color: var(--gray-400);
}

.principles-list {
    list-style: none;
    font-size: 0.875rem;
    color: var(--gray-400);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--cyan-950);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-family: monospace;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-main {
        font-size: 2.5rem;
    }
    
    .hero-word {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
}
.site-footer {
  background: #000000;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 24px 32px;
  margin-top: 80px;
}

.footer-bottom p {
  font-size: 14px;
  color: #555;
  margin-left: center;
}
  .footer-left {
    text-align: center;
}
.footer-left p {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-family: monospace;
}
    .footer-left p {
  font-size: 14px;
  color: #555;
  margin-left: center;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-right a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  position: relative;
}

.footer-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.footer-right a:hover::after {
  width: 100%;
}
.footer-left {
position: center;
align-items: center;
}

.divider {
  color: #6d6d6d;
  align-items: center;
  position: center;
}

