/* ----------------------------------------------------
   XENO EXECUTOR - MODERN CYBERPUNK DESIGN SYSTEM
   ---------------------------------------------------- */

:root {
    --bg-primary: #08080e;
    --bg-secondary: #0d0d16;
    --bg-card: rgba(20, 20, 32, 0.65);
    --bg-card-hover: rgba(28, 28, 44, 0.85);
    
    --text-primary: #f0f2f8;
    --text-secondary: #9499ad;
    --text-muted: #62677b;

    --accent-purple: #8b5cf6;
    --accent-purple-glow: rgba(139, 92, 246, 0.4);
    --accent-cyan: #06b6d4;
    --accent-cyan-glow: rgba(6, 182, 212, 0.4);
    --accent-green: #10b981;
    --accent-pink: #ec4899;
    --accent-orange: #f97316;

    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --gradient-glow: linear-gradient(135deg, rgba(139, 92, 246, 0.5) 0%, rgba(6, 182, 212, 0.5) 100%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);

    --border-light: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(139, 92, 246, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;

    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-code: 'JetBrains Mono', Consolas, Monaco, monospace;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Ambient Glowing Background Orbs */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: floatGlow 12s ease-in-out infinite alternate;
}

.glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
    top: 40%;
    right: -150px;
    animation: floatGlow 15s ease-in-out infinite alternate-reverse;
}

.glow-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, transparent 70%);
    bottom: 5%;
    left: 20%;
    animation: floatGlow 10s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 40px) scale(1.1); }
    100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 8, 14, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 0 20px var(--accent-purple-glow);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-cyan);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 25px var(--accent-purple-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 35px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

.btn-disabled {
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--text-muted) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.btn-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
}

.btn-large {
    padding: 1.05rem 2.2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-block {
    width: 100%;
}

/* Section Common Layout */
section {
    position: relative;
    z-index: 1;
    padding: 7rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    margin-bottom: 0.8rem;
    background: rgba(6, 182, 212, 0.1);
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #a0a5ba 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding-top: 9.5rem;
    padding-bottom: 5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 1.8rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

.hero h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.2rem;
    max-width: 540px;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 1.2rem 1.8rem;
    border-radius: var(--radius-lg);
    width: fit-content;
    backdrop-filter: blur(10px);
}

.stat-card {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    position: relative;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-plus, .stat-unit {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-purple);
}

.stat-label {
    width: 100%;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: var(--border-light);
}

/* Executor GUI Visual Window */
.hero-visual {
    display: flex;
    justify-content: center;
}

.executor-window {
    width: 100%;
    max-width: 480px;
    background: rgba(14, 14, 24, 0.9);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--accent-purple-glow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: rgba(8, 8, 14, 0.8);
    border-bottom: 1px solid var(--border-light);
}

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

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.editor-tabs {
    display: flex;
    gap: 4px;
}

.editor-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-code);
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.editor-tab.active, .editor-tab:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--text-primary);
}

.editor-status {
    font-size: 0.75rem;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-code);
}

.pulse-indicator {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

.window-body {
    padding: 1.2rem;
    height: 230px;
    overflow-y: auto;
    font-family: var(--font-code);
    font-size: 0.85rem;
    line-height: 1.6;
    background: #0a0a12;
}

/* Syntax Highlighting */
.code-line { white-space: pre; }
.syn-keyword { color: var(--accent-purple); font-weight: bold; }
.syn-function { color: var(--accent-cyan); }
.syn-string { color: var(--accent-green); }
.syn-comment { color: var(--text-muted); font-style: italic; }
.syn-var { color: var(--accent-pink); }

.window-footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    background: rgba(8, 8, 14, 0.8);
    border-top: 1px solid var(--border-light);
    position: relative;
}

.btn-editor {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-editor:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-execute {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
}

.btn-execute:hover {
    background: #7c3aed;
}

.execution-feedback {
    position: absolute;
    right: 1rem;
    font-size: 0.78rem;
    color: var(--accent-green);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.execution-feedback.show {
    opacity: 1;
}

/* Features Section */
.features-section {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.8rem;
    max-width: 1240px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 2.2rem 1.8rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.2);
}

.feature-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
}

.feature-icon-wrapper.purple { background: rgba(139, 92, 246, 0.15); color: var(--accent-purple); }
.feature-icon-wrapper.cyan { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }
.feature-icon-wrapper.green { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.feature-icon-wrapper.pink { background: rgba(236, 72, 153, 0.15); color: var(--accent-pink); }
.feature-icon-wrapper.orange { background: rgba(249, 115, 22, 0.15); color: var(--accent-orange); }
.feature-icon-wrapper.blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.feature-icon-wrapper.red { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Platforms Section */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1080px;
    margin: 0 auto;
}

.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 2.8rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.platform-card.featured {
    border-color: var(--accent-purple);
    box-shadow: 0 0 30px var(--accent-purple-glow);
}

.platform-card.disabled-platform {
    opacity: 0.7;
    border-color: rgba(255, 255, 255, 0.05);
}

.platform-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-badge-soon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-icon {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.platform-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}

.platform-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.platform-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Script Hub Section */
.scripts-section {
    background: var(--bg-secondary);
}

.scripts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
    max-width: 1140px;
    margin: 0 auto;
}

.script-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: 0.3s;
}

.script-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
}

.script-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.script-game {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.15);
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
}

.script-tag {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.script-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

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

.script-code-box {
    background: #08080f;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.8rem;
    overflow-x: auto;
    font-family: var(--font-code);
    font-size: 0.78rem;
    color: var(--accent-cyan);
}

.btn-copy {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: 0.2s;
}

.btn-copy:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--accent-purple);
}

/* Why Section */
.why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.why-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.why-bullet {
    width: 44px;
    height: 44px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.why-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.code-preview-window {
    background: #0a0a14;
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 35px var(--accent-purple-glow);
}

.window-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1rem;
    background: #06060c;
    border-bottom: 1px solid var(--border-light);
}

.window-title {
    margin-left: auto;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: var(--font-code);
}

.window-code {
    padding: 1.5rem;
    font-family: var(--font-code);
    font-size: 0.85rem;
    line-height: 1.6;
    overflow-x: auto;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-secondary);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    width: 100%;
    padding: 1.3rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--accent-purple);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.4rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Download Section */
.download-section {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 8rem;
}

.download-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.2);
}

.download-box h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.download-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.2rem;
}

.download-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.download-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: #040408;
    border-top: 1px solid var(--border-light);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.footer-links-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links-group a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.2s;
}

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

.footer-disclaimer {
    max-width: 700px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-copyright {
    font-size: 0.82rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
    width: 100%;
    padding-top: 1.5rem;
}

/* Download Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px var(--accent-purple-glow);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.modal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}

.progress-bar-container {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.1s linear;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent-purple);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 3000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        margin: 0 auto;
    }

    .why-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(8, 8, 14, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .download-box h2 {
        font-size: 2rem;
    }
}
