:root {
    --bg-dark: #050505;
    --bg-panel: rgba(255, 255, 255, 0.05);
    --accent-blue: #00f0ff;
    --accent-glow: rgba(0, 240, 255, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 100;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 32px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

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

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-blue) !important;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-blue);
}

/* Buttons */
.btn-primary {
    background: white;
    color: black;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: var(--accent-blue);
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-secondary {
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    border-color: var(--text-primary);
}

/* Hero */
.hero-section {
    padding-top: 15vh;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.2;
    z-index: -1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 600px;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-family: monospace;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.pulse-icon {
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 240, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

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

/* Hero Visual & Logo */
.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    width: 200px;
    z-index: 2;
    filter: drop-shadow(0 0 30px var(--accent-glow));
}

.orbital-ring {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbital-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -3px;
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-blue);
}

.orbital-ring.inner {
    width: 280px;
    height: 280px;
    animation: rotate-rev 15s linear infinite;
    border-color: rgba(255, 255, 255, 0.05);
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-rev {
    100% {
        transform: rotate(-360deg);
    }
}

/* About Section */
.about-section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.glass-card {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1px;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.icon-box {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    margin-bottom: 0.5rem;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Introduction Extensions */
.introduction-grid {
    grid-template-columns: repeat(2, 1fr);
}

.capabilities-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cap-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-family: var(--font-heading);
}

.cap-status {
    font-size: 0.7rem;
    padding: 2px 8px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    font-weight: 800;
}

/* Feature Section */
.features-section {
    padding: 6rem 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.feature-text h3 {
    color: var(--accent-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.feature-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.code-terminal {
    width: 100%;
    min-width: 400px;
    font-family: monospace;
    border-radius: 8px;
    overflow: hidden;
}

.terminal-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    display: flex;
    gap: 8px;
}

.terminal-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: none;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.terminal-body {
    padding: 20px;
    color: #a9b7c6;
    font-size: 0.9rem;
}

/* Testimonial */
.testimonial-section {
    padding: 6rem 0;
    text-align: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    font-size: 6rem;
    line-height: 1;
    color: var(--bg-panel);
    position: absolute;
    top: -2rem;
    left: 1rem;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.author strong {
    display: block;
    color: var(--accent-blue);
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

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

.footer-logo {
    height: 24px;
    margin-bottom: 0.5rem;
}

.footer-cta {
    text-align: right;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dashboard Section */
.dashboard-section {
    padding: 6rem 0;
    background: radial-gradient(circle at bottom, #0a0a0a, #050505);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
}

.panel-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.status-box {
    padding: 1rem;
    background: rgba(0, 240, 255, 0.05);
    border-left: 3px solid var(--accent-blue);
}

.status-box .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-right: 10px;
}

.status-box .value {
    font-weight: 800;
    font-family: monospace;
}

.status-box .value.green {
    color: #00ff88;
}

.goal-box h3,
.task-tree h3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.goal-content {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: #fff;
}

.task-list {
    list-style: none;
}

.task-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

.task-item.pending {
    color: #ffbd2e;
    border-left: 2px solid #ffbd2e;
    background: rgba(255, 189, 46, 0.05);
}

.task-item.active {
    color: var(--accent-blue);
}

.task-item.success {
    color: #27c93f;
    opacity: 0.7;
}

.btn-tiny {
    background: var(--accent-blue);
    color: #000;
    border: none;
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 800;
    cursor: pointer;
}

.panel-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 2rem;
    border-left: 1px solid var(--glass-border);
}

.metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric .label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 5px;
}

.bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.bar {
    height: 100%;
    background: var(--accent-blue);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Elite Design System Extensions */
.elite-badge {
    border: 1px solid var(--accent-blue);
    background: rgba(0, 240, 255, 0.1);
    letter-spacing: 1px;
    font-weight: 600;
}

.premium-glow {
    position: relative;
}

.premium-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.elite-card {
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.elite-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px -10px rgba(0, 240, 255, 0.2);
}

.elite-terminal {
    border: 1px solid var(--accent-blue) !important;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.terminal-title {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-left: auto;
    font-family: monospace;
    opacity: 0.6;
}

.evolution-status {
    color: var(--accent-blue);
    font-weight: 800;
    text-shadow: 0 0 10px var(--accent-blue);
}

/* --- Elite Terminal Snapshots & Carousel --- */

.snapshots-section {
    padding: 100px 0;
    background: var(--bg-deep);
}

.snapshots-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.snapshots-carousel::-webkit-scrollbar {
    display: none;
    /* Safari/Chrome */
}

.snapshot-card {
    flex: 0 0 80%;
    min-width: 300px;
    max-width: 800px;
    scroll-snap-align: center;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.elite-terminal-snapshot {
    background: rgba(10, 10, 12, 0.95);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 102, 255, 0.1);
    overflow: hidden;
    font-family: 'Inter', monospace;
}

.terminal-body.snapshot-body {
    padding: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    height: auto;
    max-height: 400px;
    overflow-y: auto;
}

.snap-line {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.snap-time {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
    opacity: 0.6;
}

.snap-user {
    color: #ffcc00;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.snap-ace {
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.snap-text {
    color: #e0e0e0;
}

.snap-text strong {
    color: var(--accent-blue);
}

.snapshot-card:not(.active) {
    filter: blur(2px) grayscale(0.5);
    transform: scale(0.95);
    opacity: 0.6;
}

.snapshot-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-dot.active {
    background: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue);
}

@media (max-width: 768px) {
    .snapshot-card {
        flex: 0 0 95%;
    }
}

/* Technical Deep Dive Styles */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    text-align: center;
    padding: 3rem 2rem;
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px var(--accent-blue));
}

.tech-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--accent-blue);
}

.tech-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.code-snippet {
    margin-top: 1.5rem;
    background: #000;
    padding: 10px;
    border-radius: 4px;
    border-left: 2px solid var(--accent-blue);
}

.code-snippet code {
    font-family: monospace;
    font-size: 0.8rem;
    color: #a9b7c6;
}

/* Novai Hegemony Styles */
.novai-hegemony {
    padding: 8rem 0;
    background: radial-gradient(circle at center, #0a0a0a 0%, #050505 100%);
}

.link-novai {
    display: inline-block;
    margin-top: 2rem;
    color: var(--accent-blue);
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.novai-logo-large {
    width: 80px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px var(--accent-blue));
}

.active-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 1.5rem;
    border-radius: 10px;
}

.active-bar {
    height: 100%;
    background: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue);
    border-radius: 10px;
}

/* Enhancements */
.lead-text {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 3rem;
    color: #eee;
}

.section-label {
    letter-spacing: 5px;
    color: var(--accent-blue);
    font-weight: 800;
    opacity: 0.8;
}

.about-section {
    padding: 10rem 0;
}

/* Manifesto Elevations */
.manifesto-section {
    padding: 12rem 0;
}

.narrative-content {
    max-width: 900px;
    margin-top: 4rem;
}

.body-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 6rem;
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

.pillar h4 {
    color: var(--accent-blue);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.pillar p {
    font-size: 0.9rem;
    color: #888;
}

/* Evolution Roadmap */
.evolution-roadmap {
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.evolution-step {
    padding: 4rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.metal-badge {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    color: var(--accent-light);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
}

.evolution-step.active {
    border-color: var(--accent-blue);
    background: rgba(0, 242, 255, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.step-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.step-status {
    color: var(--accent-blue);
    font-weight: 700;
}

.evolution-step h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.step-desc {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 2rem;
    max-width: 700px;
}

.step-details {
    list-style: none;
    display: flex;
    gap: 2rem;
    color: #666;
    font-size: 0.85rem;
}

.step-details li::before {
    content: "•";
    color: var(--accent-blue);
    margin-right: 0.5rem;
}

/* Update Protocol */
.protocol-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}

.protocol-card {
    padding: 2.5rem;
    border-left: 2px solid var(--accent-blue);
}

.protocol-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.protocol-card p {
    font-size: 0.9rem;
    color: #888;
}

/* Ticker Refinement */
.projects-ticker-section {
    padding: 6rem 0;
    background: #000;
}

.ticker-container {
    overflow: hidden;
    margin-top: 3rem;
    white-space: nowrap;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
}

.ticker-scroll {
    display: inline-block;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    display: inline-block;
    margin-right: 5rem;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #444;
}

.ticker-item .active {
    color: var(--accent-blue);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

/* Phase Sections */
.phase-section {
    padding: 10rem 0;
}

.phase-lead {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.5;
    margin-top: 2rem;
    margin-bottom: 4rem;
    color: #fff;
    max-width: 800px;
}

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

.card-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.dark-bg {
    background: #030303;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.layout-text .section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.detail-text {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.small-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* Projects Ticker */
.projects-ticker {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ticker-content {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.ticker-item {
    font-family: monospace;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.status-active {
    color: var(--accent-blue);
    font-weight: 800;
}

/* Ultimate Form Styles */
.sub-h {
    font-size: 4rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.max-w-center {
    margin-left: auto;
    margin-right: auto;
}

.ultimate-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 6rem;
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

.footer-stat h4 {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.footer-stat p {
    font-size: 0.8rem;
    color: #888;
}

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

.center-logo {
    margin: 0 auto 2rem;
    display: block;
}

.m-date {
    font-size: 0.7rem;
    font-family: monospace;
    color: var(--accent-blue);
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.m-tag {
    margin-top: auto;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 2px;
    display: inline-block;
    width: fit-content;
    background: rgba(255, 255, 255, 0.1);
}

.m-tag.pulse {
    background: rgba(0, 240, 255, 0.2);
    color: var(--accent-blue);
    animation: statusPulse 2s infinite;
}

.m-tag.locked {
    opacity: 0.3;
}

@keyframes statusPulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-visual {
        margin-top: 4rem;
    }

    .about-grid,
    .milestone-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }
}

.kill-switch-container {
    text-align: center;
    padding-top: 2rem;
}

.btn-kill {
    width: 100%;
    background: #ff5f56;
    color: #fff;
    border: none;
    padding: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 95, 86, 0.2);
}

.btn-kill:hover {
    background: #ff3b30;
    box-shadow: 0 0 40px rgba(255, 95, 86, 0.4);
}

/* --- CELESTIAL BACKGROUND --- */
.celestial-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* --- GENESIS WAITLIST --- */
.waitlist-section {
    padding: 2rem 0;
    background: rgba(0, 242, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 4rem;
}

.waitlist-container {
    display: flex;
    justify-content: center;
}

.waitlist-content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.waitlist-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    /* letter-spacing: 1px; */
    /* Removed conflicting property */
    letter-spacing: -0.02em;
    /* Adjusted for better typography */
}

.waitlist-desc {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.waitlist-form .input-group {
    display: flex;
    gap: 10px;
}

.waitlist-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 4px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: 0.3s;
}

.waitlist-input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
}

.waitlist-btn {
    white-space: nowrap;
    padding: 12px 24px;
    font-size: 0.8rem;
}

.form-status {
    margin-top: 10px;
    font-size: 0.8rem;
    height: 20px;
    color: var(--accent-blue);
    font-weight: 600;
}

/* --- PLATFORM PREVIEW --- */
.preview-section {
    padding: 2rem 0 6rem 0;
}

.preview-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.preview-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.dashboard-preview-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.preview-frame:hover .dashboard-preview-img {
    transform: scale(1.02);
}

.preview-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--accent);
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.preview-caption {
    font-size: 0.95rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Celestial Background */
.celestial-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 70% 20%, #030a16 0%, #000000 70%);
    overflow: hidden;
}

.moon {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow:
        0 0 60px rgba(255, 255, 255, 0.4),
        0 0 100px rgba(0, 242, 255, 0.2);
    filter: blur(1px);
    opacity: 0.9;
}

.moon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, transparent 40%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 50%;
}

.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle var(--duration) ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
}

.star.large {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}