/* 
========================================================================
   NormalGravity Landing Page Core Styling System (Obsidian Dark Engine)
   Designed by Antigravity - Premium, High-Performance, Mobile-Responsive
========================================================================
*/

/* ---------------------------------------------------------------------
   1. Root Variables & Tokens
--------------------------------------------------------------------- */
:root {
    /* Color System */
    --bg-base: #070913;
    --bg-obsidian-deep: #0b0e1b;
    --bg-card: rgba(15, 20, 38, 0.65);
    --bg-card-solid: #0d1224;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow-color: rgba(139, 92, 246, 0.15);
    
    /* Brand Accent Colors */
    --color-primary: #8b5cf6;       /* Violet AI Spark */
    --color-secondary: #06b6d4;     /* Cyan Speed Core */
    --color-accent: #6366f1;        /* Indigo Link */
    --color-success: #10b981;       /* GPL Cyber Green */
    --color-danger: #ef4444;        /* Crimson Red */
    --color-warning: #f59e0b;       /* Amber Glow */
    
    /* Text Hierarchy */
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --text-dim: #4b5563;
    
    /* Shadow Utilities */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.8);
    --shadow-glow-purple: 0 0 30px rgba(139, 92, 246, 0.25);
    --shadow-glow-cyan: 0 0 30px rgba(6, 118, 212, 0.25);
    
    /* Layout Variables */
    --border-radius-lg: 16px;
    --border-radius-md: 10px;
    --border-radius-sm: 6px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ---------------------------------------------------------------------
   2. Reset & Typography Reset
--------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

/* ---------------------------------------------------------------------
   3. Global Layout Elements & Background Glow Orbs
--------------------------------------------------------------------- */
.obsidian-theme {
    position: relative;
    background: radial-gradient(circle at 50% 0%, #0c1024 0%, var(--bg-base) 70%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

.orb-primary {
    top: 5%;
    left: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 80%);
}

.orb-secondary {
    top: 25%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 80%);
}

.orb-tertiary {
    top: 60%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 80%);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ---------------------------------------------------------------------
   4. Glassmorphism Design System Components
--------------------------------------------------------------------- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-lg);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.glass-card.hover-glow:hover {
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(139, 92, 246, 0.1);
}

.mini-glass {
    background: rgba(15, 20, 38, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

/* ---------------------------------------------------------------------
   5. Headers & Navigation bar
--------------------------------------------------------------------- */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 9, 19, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gravity-icon {
    animation: rotateSlow 20s linear infinite;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.4));
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.brand-text .highlight {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Glowing Waitlist Button in Nav */
.btn-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--text-primary);
    padding: 10px 22px;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cta:hover {
    box-shadow: var(--shadow-glow-purple);
    transform: translateY(-1.5px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ---------------------------------------------------------------------
   6. Hero Section & Typography Core
--------------------------------------------------------------------- */
.hero-section {
    padding: 180px 0 100px 0;
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-container {
    margin-bottom: 24px;
}

.badge-pill {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #a78bfa;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.05);
}

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

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #a78bfa 0%, #6366f1 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow {
    text-shadow: 0 0 80px rgba(139, 92, 246, 0.25);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 780px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

/* Glowing Actions Row */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    z-index: 10;
}

.btn-primary-action {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--text-primary);
    padding: 16px 36px;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    transition: var(--transition-bounce);
}

.btn-primary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5), var(--shadow-glow-purple);
}

.btn-primary-action:hover .arrow-icon {
    transform: translateX(4px);
}

.arrow-icon {
    transition: transform var(--transition-fast);
}

.btn-secondary-action {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 16px 36px;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-bounce);
}

.btn-secondary-action:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.1);
    transform: translateY(-3px);
    color: #fca5a5;
}

.heart-icon {
    color: var(--color-danger);
    transition: transform var(--transition-fast);
}

.btn-secondary-action:hover .heart-icon {
    animation: heartPulse 0.8s infinite alternate;
}

/* Hero Trust Badges */
.hero-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 36px;
    width: 100%;
    max-width: 900px;
}

.meta-item {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-icon {
    color: var(--color-secondary);
}

/* ---------------------------------------------------------------------
   7. Interactive IDE Mockup & Simulator Widget
--------------------------------------------------------------------- */
.simulator-section {
    padding: 60px 0 120px 0;
}

.section-header {
    margin-bottom: 60px;
}

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

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* The Premium IDE Container */
.ide-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Window Titlebar */
.ide-titlebar {
    height: 44px;
    background: #090c17;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    user-select: none;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot-close { background-color: #ff5f56; }
.dot-minimize { background-color: #ffbd2e; }
.dot-expand { background-color: #27c93f; }

.ide-title-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.file-icon-sm {
    color: var(--color-primary);
}

.ide-status-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4px 10px;
    border-radius: 100px;
}

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

.pulse-green {
    background-color: var(--color-success);
    box-shadow: 0 0 6px var(--color-success);
    animation: pulseSmall 1.5s infinite;
}

/* IDE Core Layout Split */
.ide-workspace {
    display: grid;
    grid-template-columns: 200px 1fr 280px;
    height: 480px;
    background: #0b0d18;
}

/* Sidebar explorer tree */
.ide-sidebar {
    background: #080a13;
    border-right: 1px solid var(--border-color);
    padding: 16px;
    font-size: 0.825rem;
    overflow-y: auto;
}

.sidebar-header {
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.file-tree {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.file-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.file-item.active {
    background: rgba(139, 92, 246, 0.08);
    color: var(--text-primary);
    border-left: 2px solid var(--color-primary);
}

.indented { margin-left: 12px; }
.indented-2 { margin-left: 24px; }

.tree-icon {
    color: var(--text-muted);
}

.tree-icon.text-cyan {
    color: var(--color-secondary);
}

.go-logo-icon {
    font-size: 0.65rem;
    font-weight: 800;
    color: #00add8;
    background: rgba(0, 173, 216, 0.08);
    border: 1px solid rgba(0, 173, 216, 0.2);
    padding: 1px 3px;
    border-radius: 3px;
    line-height: 1;
}

/* Active Code Panel styling */
.ide-code-view {
    display: flex;
    flex-direction: column;
    background: #0a0c16;
    overflow: hidden;
}

.code-header {
    height: 36px;
    background: #080a13;
    border-bottom: 1px solid var(--border-color);
    display: flex;
}

.tab {
    padding: 0 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    border-right: 1px solid var(--border-color);
    cursor: pointer;
    background: #080a13;
}

.tab.active {
    color: var(--text-primary);
    background: #0a0c16;
    border-top: 2px solid var(--color-primary);
}

.go-circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00add8;
}

/* Monospace text styles */
.code-viewport {
    flex: 1;
    padding: 20px;
    font-family: 'Fira Code', 'Courier New', Courier, monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    overflow-y: auto;
    color: #e5e7eb;
}

.code-line {
    display: flex;
    white-space: pre;
}

.line-num {
    display: inline-block;
    width: 32px;
    color: var(--text-dim);
    text-align: right;
    margin-right: 18px;
    user-select: none;
}

/* Syntax Coloring System */
.code-keyword { color: #f472b6; font-weight: 600; } /* package, import, return, func */
.code-string { color: #a78bfa; }                    /* "fmt", "strings" */
.code-comment { color: var(--text-muted); }         /* // comments */
.code-def { color: #60a5fa; font-weight: 500; }     /* function names */
.code-type { color: #34d399; }                      /* string, bool, int */

/* Live Code Diff Highlights */
.diff-add {
    background: rgba(16, 185, 129, 0.12);
    border-left: 3px solid var(--color-success);
    width: 100%;
}

.diff-add .line-num {
    color: #059669;
}

.diff-del {
    background: rgba(239, 68, 68, 0.12);
    border-left: 3px solid var(--color-danger);
    text-decoration: line-through;
    color: #f87171;
    width: 100%;
}

.diff-del .line-num {
    color: #b91c1c;
}

/* Right Side Chat Console & Console HUD */
.ide-console {
    background: #080a13;
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.console-tab-header {
    height: 38px;
    background: #05060a;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 14px;
    flex-shrink: 0;
}

.console-tab {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-glow-spark {
    color: var(--color-primary);
    filter: drop-shadow(0 0 4px var(--color-primary));
}

.console-body {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.ai-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 10px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.pulse-purple {
    background-color: var(--color-primary);
    box-shadow: 0 0 6px var(--color-primary);
    animation: pulseSmall 1.5s infinite;
}

.chat-discussion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    overflow-y: auto;
    padding-bottom: 4px;
}

.chat-bubble {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 10px;
    font-size: 0.8rem;
}

.chat-bubble.user {
    border-color: rgba(99, 102, 241, 0.25);
    background: rgba(99, 102, 241, 0.04);
}

.chat-bubble.assistant {
    border-color: rgba(6, 182, 212, 0.25);
    background: rgba(6, 182, 212, 0.04);
}

.bubble-sender {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: var(--text-secondary);
}

.bubble-content {
    line-height: 1.45;
    color: var(--text-primary);
}

.ai-prompt-input-row {
    flex-shrink: 0;
    margin-top: auto;
}

.btn-run-ai {
    width: 100%;
    text-align: center;
    background: var(--color-primary);
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    transition: var(--transition-fast);
}

.btn-run-ai:hover {
    background: #7c3aed;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.5);
    transform: scale(1.01);
}

/* Control Heads-Up Display (Appears when Diff is generated) */
.ai-hud-controls {
    display: none; /* Injected dynamically */
    flex-direction: column;
    gap: 10px;
    width: 100%;
    animation: slideUpFade 0.4s ease forwards;
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 10px;
    border-radius: var(--border-radius-sm);
    margin-top: 10px;
}

.hud-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 0.775rem;
    color: var(--text-secondary);
}

.hud-subtext {
    font-size: 0.725rem;
    color: var(--text-muted);
}

.hud-highlight-badge {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #c084fc;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hud-buttons-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.btn-action-reject {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.btn-action-reject:hover {
    background: var(--color-danger);
    color: var(--text-primary);
    border-color: var(--color-danger);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-action-approve {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #34d399;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.btn-action-approve:hover {
    background: var(--color-success);
    color: var(--text-primary);
    border-color: var(--color-success);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* ---------------------------------------------------------------------
   8. Vision & Core Philosophy Section (GPL + Go focus)
--------------------------------------------------------------------- */
.philosophy-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
}

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

.text-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: inline-block;
    text-transform: uppercase;
}

.text-tag.purple { color: #c084fc; }
.text-tag.cyan { color: var(--color-secondary); }

.section-desc.text-left {
    text-align: left;
    margin: 0 0 32px 0;
}

/* Philosophy features lists */
.philosophy-bullets {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bullet-item {
    display: flex;
    gap: 16px;
}

.bullet-icon-wrapper {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-success);
}

.bullet-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.bullet-desc {
    font-size: 0.925rem;
    color: var(--text-secondary);
}

/* Decorative graphic pane inside section */
.decor-panel {
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.decor-header {
    background: rgba(5, 6, 12, 0.4);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.decor-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-cyan {
    color: var(--color-secondary);
}

.decor-pill {
    font-size: 0.675rem;
    font-weight: 700;
    color: var(--color-success);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 3px 8px;
    border-radius: 100px;
}

.decor-body {
    padding: 24px;
}

/* Diagram */
.network-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0 28px 0;
}

.network-node {
    width: 45%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 14px;
    border-radius: var(--border-radius-md);
    text-align: center;
}

.network-node.host {
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.05);
}

.network-node.ai-agent {
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.05);
}

.node-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.node-sub {
    font-size: 0.725rem;
    color: var(--text-muted);
}

.text-green { color: var(--color-success); }

.network-arrow {
    width: 10%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-success), var(--color-primary));
    position: relative;
}

.network-arrow::after {
    content: '';
    position: absolute;
    top: -3px;
    right: 0;
    width: 7px;
    height: 7px;
    border-top: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary);
    transform: rotate(45deg);
}

/* Chart Bars */
.comparison-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.comp-item {
    font-size: 0.8rem;
}

.comp-label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.comp-bar-container {
    width: 100%;
    height: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comp-bar {
    height: 100%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 3px;
}

.comp-bar.fill-80 {
    width: 80%;
    background: rgba(239, 68, 68, 0.15);
    border-right: 2px solid var(--color-danger);
    color: #f87171;
    justify-content: flex-end;
}

.comp-bar.fill-zero {
    width: 25%;
    background: rgba(16, 185, 129, 0.15);
    border-right: 2px solid var(--color-success);
    color: #34d399;
}

.decor-quote {
    font-size: 0.825rem;
    font-style: italic;
    color: var(--text-muted);
    border-left: 2px solid var(--color-secondary);
    padding-left: 12px;
    line-height: 1.5;
}

/* ---------------------------------------------------------------------
   9. Features Grid Section
--------------------------------------------------------------------- */
.features-section {
    padding: 100px 0;
    background: rgba(5, 6, 12, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.purple-glow {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
    color: var(--color-primary);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.cyan-glow {
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.2);
    color: var(--color-secondary);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.violet-glow {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
    color: var(--color-accent);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

.green-glow {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--color-success);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.red-glow {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
    color: var(--color-danger);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.15);
}

.custom-glow {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
    color: var(--color-warning);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.feat-icon {
    width: 20px;
    height: 20px;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card-desc {
    font-size: 0.925rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ---------------------------------------------------------------------
   10. Crowdfunding & Donations Dashboard
--------------------------------------------------------------------- */
.funding-section {
    padding: 100px 0;
}

.big-funding-card {
    padding: 60px;
    border-color: rgba(139, 92, 246, 0.12);
}

.gap-xl {
    gap: 60px;
}

.funding-copy {
    display: flex;
    flex-direction: column;
}

/* Progress trackers styling */
.funding-progress-area {
    margin-top: 36px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--border-radius-lg);
}

.funding-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.funding-labels .bold {
    font-weight: 700;
}

.progress-bar-track {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 100px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.funding-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-box {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box:last-child {
    border-right: none;
}

.stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.775rem;
    color: var(--text-muted);
}

/* Tier stack listing */
.donation-tiers-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tier-card {
    padding: 22px;
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
}

.tier-card.active-border {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.08);
}

.badge-best-value {
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--color-primary);
    color: var(--text-primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 12px;
    border-bottom-left-radius: var(--border-radius-sm);
    border-bottom-right-radius: var(--border-radius-sm);
}

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

.tier-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.tier-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tier-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.tier-price .mo {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.btn-tier-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-tier-cta:hover {
    background: var(--text-primary);
    color: var(--bg-base);
    border-color: var(--text-primary);
}

.tier-card.active-border .btn-tier-cta {
    background: var(--color-primary);
    color: var(--text-primary);
    border-color: var(--color-primary);
}

.tier-card.active-border .btn-tier-cta:hover {
    background: #7c3aed;
    border-color: #7c3aed;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
}

/* ---------------------------------------------------------------------
   10b. Contact & Collaboration Stack
--------------------------------------------------------------------- */
.contact-channels-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.channel-card {
    padding: 24px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.channel-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.channel-card.purple-theme:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
}

.channel-card.cyan-theme:hover {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1);
}

.channel-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.channel-card.purple-theme .channel-icon-wrapper {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #c084fc;
}

.channel-card.cyan-theme .channel-icon-wrapper {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    color: var(--color-secondary);
}

.channel-card.purple-theme:hover .channel-icon-wrapper {
    background: rgba(139, 92, 246, 0.2);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.channel-card.cyan-theme:hover .channel-icon-wrapper {
    background: rgba(6, 182, 212, 0.2);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.channel-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.channel-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.channel-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 2px 0 0 0;
}

.channel-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 18px;
}

.btn-channel-action {
    display: block;
    width: 100%;
    text-align: center;
    padding: 11px;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.channel-card.purple-theme .btn-channel-action {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #c084fc;
}

.channel-card.purple-theme .btn-channel-action:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.channel-card.cyan-theme .btn-channel-action {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    color: var(--color-secondary);
}

.channel-card.cyan-theme .btn-channel-action:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--bg-base);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

/* ---------------------------------------------------------------------
   11. Waitlist Sign-up Panel
--------------------------------------------------------------------- */
.waitlist-section {
    padding: 80px 0 140px 0;
    position: relative;
}

.waitlist-glow-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

.waitlist-box {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    border-color: rgba(6, 182, 212, 0.12);
}

.max-width-md { max-width: 580px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Input layout with neon ring focus */
.waitlist-form {
    margin-top: 32px;
}

.input-glow-group {
    display: flex;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: var(--border-radius-md);
    max-width: 500px;
    margin: 0 auto;
    transition: var(--transition-fast);
}

.input-glow-group:focus-within {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.input-glow-group input {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.input-glow-group input::placeholder {
    color: var(--text-dim);
}

.btn-waitlist-submit {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-waitlist-submit:hover {
    box-shadow: var(--shadow-glow-cyan);
    transform: translateY(-0.5px);
}

.btn-waitlist-submit:hover .arrow-icon-sm {
    transform: translateX(2px);
}

.arrow-icon-sm {
    transition: transform var(--transition-fast);
}

.waitlist-response {
    margin-top: 16px;
    font-size: 0.875rem;
    min-height: 24px;
    font-weight: 500;
}

.waitlist-success {
    color: var(--color-success);
}

.waitlist-error {
    color: var(--color-danger);
}

/* ---------------------------------------------------------------------
   12. Footer Section
--------------------------------------------------------------------- */
.footer {
    background: #04060c;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

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

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.license-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.footer-bottom-links a:hover {
    color: var(--text-secondary);
}

/* ---------------------------------------------------------------------
   13. Global Animations & Media Adaptability
--------------------------------------------------------------------- */

/* Custom Keyframes */
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(139, 92, 246, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

@keyframes pulseSmall {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

@keyframes heartPulse {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes textStreaming {
    from { border-right: 2px solid var(--color-primary); }
    to { border-right: 2px solid transparent; }
}

/* Sparkle Merge animation helper */
.sparkle-merge {
    animation: sparkleSuccess 0.6s ease-out;
}

@keyframes sparkleSuccess {
    0% { background-color: rgba(16, 185, 129, 0.4); box-shadow: 0 0 20px var(--color-success); }
    100% { background-color: transparent; box-shadow: none; }
}

/* ---------------------------------------------------------------------
   14. Responsiveness System (Mobile First Optimizations)
--------------------------------------------------------------------- */

/* Tablet Portrait & down (Max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }
    
    .grid-3-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-2-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-content {
        order: 1;
    }
    
    .decor-panel {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .big-funding-card {
        padding: 40px;
    }
}

/* Small Screens / Mobile Devices (Max-width: 768px) */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .nav-menu {
        display: none; /* Injected dynamically or toggled */
    }
    
    /* Toggle show class */
    .nav-menu.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #090c17;
        padding: 24px;
        border-bottom: 1px solid var(--border-color);
        gap: 20px;
        box-shadow: var(--shadow-lg);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        padding: 140px 0 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-primary-action, .btn-secondary-action {
        width: 100%;
        justify-content: center;
    }
    
    .hero-meta {
        gap: 16px;
    }
    
    /* Hide tree explorer on mobile device to keep UI focused */
    .ide-workspace {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .ide-sidebar {
        display: none;
    }

    .ide-console {
        border-left: none;
        border-top: 1px solid var(--border-color);
        height: auto;
    }
    
    .grid-3-cols {
        grid-template-columns: 1fr;
    }
    
    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 12px;
    }
    
    .stat-box:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .funding-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Hackable Codebase stand-alone section */
.hackable-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at 5% 30%, rgba(139, 92, 246, 0.04) 0%, transparent 60%), #04060c;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.hackable-code-frame {
    background: #080a13;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.hackable-code-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.12);
}

.hackable-code-frame .code-header {
    background: #05060a;
    border-bottom: 1px solid var(--border-color);
    padding: 0 16px;
    height: 38px;
    display: flex;
    align-items: center;
}

.hackable-code-frame .go-circle {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--color-cyan);
    border-radius: 50%;
    margin-right: 6px;
}

/* JARVIS Cognitive Multiplier Section */
.jarvis-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, rgba(139, 92, 246, 0.02) 40%, transparent 70%), #030408;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.jarvis-callout {
    position: relative;
    padding: 30px 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-left: 4px solid var(--color-cyan);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 
                0 0 30px rgba(0, 242, 254, 0.03),
                inset 1px 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    margin: 35px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.jarvis-callout::before {
    content: "“";
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 6rem;
    font-family: 'Outfit', sans-serif;
    color: rgba(0, 242, 254, 0.06);
    line-height: 1;
    pointer-events: none;
}

.jarvis-callout:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 
                0 0 45px rgba(0, 242, 254, 0.08),
                inset 1px 1px 0 rgba(255, 255, 255, 0.08);
}

.neon-decrypt {
    color: var(--color-cyan);
    font-family: 'Fira Code', monospace;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.7), 0 0 20px rgba(0, 242, 254, 0.4);
    position: relative;
    padding: 0 2px;
}

.jarvis-card {
    background: #080a13;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.jarvis-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(6, 182, 212, 0.1);
}

.stark-quote-bubble {
    background: rgba(139, 92, 246, 0.05);
    border-left: 3px solid var(--color-primary);
    padding: 18px 22px;
    border-radius: 0 12px 12px 0;
    margin-top: 24px;
    position: relative;
}

.stark-quote-text {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}

.stark-quote-author {
    font-family: 'Outfit', sans-serif;
    color: var(--color-cyan);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jarvis-error-oracle {
    background: rgba(3, 4, 7, 0.7);
    border: 1px dashed rgba(6, 182, 212, 0.2);
    border-radius: 8px;
    padding: 18px;
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    color: #e5e7eb;
    margin-bottom: 20px;
    line-height: 1.5;
}
