<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary: #f7931e;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 107, 53, 0.3);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-hover: rgba(255, 107, 53, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

/* Accessibility: Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Scroll Animations */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-left.in-view {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-scale.in-view {
    opacity: 1;
    transform: scale(1);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 70px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    z-index: 1002;
}

.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 0.75rem;
    border-radius: 8px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    min-height: 44px; /* Accessibility: minimum touch target */
    display: flex;
    align-items: center;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    min-height: 44px;
    min-width: 44px;
    z-index: 1002;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1001;
}

.mobile-menu.open {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
    min-height: 56px; /* Larger touch target on mobile */
    display: flex;
    align-items: center;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
    color: var(--text-primary);
    background: var(--glass);
}

.dev-status {
    background: var(--glass);
    border: 1px solid var(--border-hover);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    padding-top: 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 48px; /* Accessibility: minimum touch target */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before,
.btn-primary:focus::before {
    left: 100%;
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover,
.btn-secondary:focus {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

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

.hero-mockup {
    width: 100%;
    height: 300px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

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

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.6;
}

.mockup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-item {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    padding: 1rem;
    border-left: 3px solid var(--primary);
    animation: glow 3s ease-in-out infinite;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.mockup-item:nth-child(2) { animation-delay: 1s; }
.mockup-item:nth-child(3) { animation-delay: 2s; }

@keyframes glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.02) 100%);
}

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

.feature-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--glass-hover), rgba(247, 147, 30, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before,
.feature-card:focus-within::before {
    opacity: 1;
}

.feature-card:hover,
.feature-card:focus-within {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

/* Mission Section */
.mission {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.02) 50%, transparent 100%);
    padding: 8rem 0;
}

.mission-concept {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.black-box-demo {
    position: relative;
}

.black-box {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
}

.inputs-section, .outputs-section {
    text-align: center;
}

.inputs-section h3, .outputs-section h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notification-stream {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notification {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    animation: notification-pulse 3s ease-in-out infinite;
    opacity: 0.7;
}

.notification:nth-child(1) { animation-delay: 0s; }
.notification:nth-child(2) { animation-delay: 0.5s; }
.notification:nth-child(3) { animation-delay: 1s; }
.notification:nth-child(4) { animation-delay: 1.5s; }
.notification:nth-child(5) { animation-delay: 2s; }
.notification:nth-child(6) { animation-delay: 2.5s; }

@keyframes notification-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

.processing-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    min-height: 400px;
}

.cognitive-loop {
    position: relative;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.2);
    background: rgba(255, 107, 53, 0.05);
}

.loop-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--border-hover);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    min-width: 140px;
    backdrop-filter: blur(15px);
}

.brain-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.75rem;
}

.loop-center p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.3;
}

.loop-step {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.3s ease, border-color 0.3s ease;
    animation: step-pulse 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    cursor: pointer;
    tabindex: 0;
}

.loop-step:hover,
.loop-step:focus {
    background: rgba(255, 107, 53, 0.15);
    border-color: var(--border-hover);
}

.step-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.1;
}

/* More spacious positioning with better breathing room */
.step-1 { top: 40px; left: 50%; transform: translateX(-50%); }
.step-2 { top: 90px; right: 90px; }
.step-3 { top: 50%; right: 40px; transform: translateY(-50%); }
.step-4 { bottom: 90px; right: 90px; }
.step-5 { bottom: 40px; left: 50%; transform: translateX(-50%); }
.step-6 { bottom: 90px; left: 90px; }
.step-7 { top: 50%; left: 40px; transform: translateY(-50%); }
.step-8 { top: 90px; left: 90px; }

@keyframes step-pulse {
    0%, 100% { opacity: 0.8; }
    12.5% { 
        opacity: 1; 
        background: rgba(255, 107, 53, 0.15);
        border-color: var(--border-hover);
    }
    25% { opacity: 0.8; }
}

/* Stagger animations */
.step-1 { animation-delay: 0s; }
.step-2 { animation-delay: 1s; }
.step-3 { animation-delay: 2s; }
.step-4 { animation-delay: 3s; }
.step-5 { animation-delay: 4s; }
.step-6 { animation-delay: 5s; }
.step-7 { animation-delay: 6s; }
.step-8 { animation-delay: 7s; }

.output-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.output-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.output-item:hover {
    opacity: 1;
}

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

.problem-statement, .solution-statement, .vision-statement {
    padding: 1.5rem 0;
}

.problem-statement h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.solution-statement h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.vision-statement h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.mission-explanation h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.mission-explanation p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

/* Capabilities Section */
.capabilities {
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.02) 0%, transparent 100%);
}

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

.capability-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--glass-hover), rgba(247, 147, 30, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.capability-card:hover::before,
.capability-card:focus-within::before {
    opacity: 1;
}

.capability-card:hover,
.capability-card:focus-within {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--border-hover);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 2;
}

.capability-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.capability-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

/* Timeline Section */
.timeline-section {
    background: rgba(255, 107, 53, 0.01);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary) 0%, 
        var(--primary) 25%, 
        var(--border) 25%, 
        var(--border) 100%);
    border-radius: 1px;
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--border);
    margin: 0 auto 1rem;
    position: relative;
    transition: all 0.6s ease;
    border: 3px solid var(--bg-primary);
}

.timeline-item.active .timeline-dot {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    transform: scale(1.3);
}

.timeline-content {
    opacity: 0.6;
    transition: opacity 0.6s ease;
}

.timeline-item.active .timeline-content {
    opacity: 1;
}

.timeline-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-title {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.timeline-desc {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    color: var(--text-muted);
    line-height: 1.4;
}

.timeline-item.active .timeline-title {
    color: var(--primary);
}

.timeline-item.active .timeline-desc {
    color: var(--text-secondary);
}

/* Manifesto Section */
.manifesto {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(247, 147, 30, 0.08) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-text {
    margin-bottom: 3rem;
}

.manifesto-text p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: left;
}

.manifesto-text p:last-child {
    margin-bottom: 0;
    font-weight: 700;
    color: var(--text-primary);
    font-style: italic;
    font-size: clamp(1.4rem, 2.5vw, 1.125rem);
}

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

@media (max-width: 768px) {
    .manifesto-text p {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
        text-align: left;
    }
}

 /* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    padding-bottom: 8rem;
}

.newsletter-container {
    max-width: 500px;
    margin: 2rem auto 0;
    position: relative;
    min-height: 180px;
}

.newsletter-form {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.newsletter-form.hiding {
    opacity: 0;
    transform: scale(0.95);
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: var(--glass);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 48px;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* Accessibility: Better form labeling */
.form-label {
    position: absolute;
    left: -9999px;
}

.form-note {
    color: var(--text-muted);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    text-align: center;
}

.success-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--glass);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.success-message.show {
    opacity: 1;
    transform: scale(1);
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: success-bounce 0.6s ease-out;
}

@keyframes success-bounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-message h3 {
    color: #28a745;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.success-message p {
    color: var(--text-secondary);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    line-height: 1.5;
    margin: 0;
}

/* Footer */
footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover,
.social-link:focus {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-contact {
    display: flex;
    align-items: center;
}

.contact-email {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s ease;
    background: var(--glass);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.contact-email:hover,
.contact-email:focus {
    color: var(--primary);
    border-color: var(--primary);
}

    /* Legal Pages Styles */
.legal-page {
    padding: 8rem 0 6rem 0;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem 0;
}

.legal-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-section ul {
    color: var(--text-secondary);
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    position: relative;
}

.legal-section li::marker {
    color: var(--primary);
}

.contact-info {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
}

.text-link {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.text-link:hover {
    border-bottom-color: var(--primary);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 0 4rem 0;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section ul {
        margin-left: 1.5rem;
    }
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Mobile Navigation */
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    #dev-status {
        display: none;
    }

    /* Mobile Hero */
    .hero {
        padding: 8rem 0 4rem 0;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-visual {
        height: auto;
        order: 1; /* Visual comes after content on mobile */
    }

    .hero-content {
        order: 0; /* Content comes first on mobile */
    }

    .hero-mockup {
        height: auto;
        min-height: 280px;
    }

    /* Mobile Buttons */
    .hero-buttons {
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        min-width: 200px;
        text-align: center;
    }
    


    /* Mobile Sections */
    section {
        padding: 4rem 0;
    }

    .mission-concept {
        gap: 3rem;
    }

    .black-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    /* Mobile Mission Layout */
    .mission-concept {
        gap: 2rem;
    }

    .black-box {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .cognitive-loop {
        width: 300px;
        height: 300px;
    }

    .loop-step {
        width: 60px;
        height: 60px;
    }

    .step-icon {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .step-label {
        font-size: 0.6rem;
    }

    .loop-center {
        padding: 0.75rem 0.5rem;
        min-width: 70px;
    }

    .brain-icon {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .loop-center p {
        font-size: 0.55rem;
        line-height: 1.1;
    }

    /* Mobile positioning - more clearance from center */
    .step-1 { top: 20px; left: 50%; transform: translateX(-50%); }
    .step-2 { top: 45px; right: 45px; }
    .step-3 { top: 50%; right: 20px; transform: translateY(-50%); }
    .step-4 { bottom: 45px; right: 45px; }
    .step-5 { bottom: 20px; left: 50%; transform: translateX(-50%); }
    .step-6 { bottom: 45px; left: 45px; }
    .step-7 { top: 50%; left: 20px; transform: translateY(-50%); }
    .step-8 { top: 45px; left: 45px; }

    .processing-section {
        order: 2;
    }

    .inputs-section {
        order: 1;
    }

    .outputs-section {
        order: 3;
    }

    /* Mobile Timeline */
    .timeline-track {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-line {
        display: none;
    }

    /* Mobile Newsletter */
    .form-group {
        flex-direction: column;
    }

    .newsletter-container {
        min-height: 200px;
    }

    .newsletter {
        padding-bottom: 6rem;
    }

    .success-message {
        min-height: 180px;
        padding: 2rem 1.5rem;
    }

    /* Mobile Footer */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-social {
        order: 2;
        justify-content: center;
    }

    .footer-contact {
        order: 3;
        justify-content: center;
    }

    .footer-links {
        order: 4;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .features-grid,
    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .timeline-track {
        grid-template-columns: 1fr;
    }

    .mission-explanation {
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .dev-status {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #e0e0e0;
        --border: rgba(255, 255, 255, 0.3);
        --border-hover: rgba(255, 107, 53, 0.8);
    }
}

/* Dark mode adjustments for better accessibility */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
        --text-muted: #999999;
    }
}</pre></body></html>